@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:  "Poppins", sans-serif;
    color:white;
    background-color:black;
}

.header {
    background-color: #05718a;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding:0;
        min-height: 100px;
        box-shadow: 0 2px 5px rgba(1, 1, 1, 0.499);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; 
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    justify-content: center;
   
}

.logo img{
    width: 20%;
    margin-left: 60px;
}

    .menu label{
        cursor: pointer;
        display: inline-block; 
        
    }

    .menu .nav-menu {
        width: 100%;
       position: absolute;
        top: 100%;
       
        background-color: #05718a;
        display: none;
        /* border-top: 3px solid #D4AF37;   */
         box-shadow:0 1px 8px rgba(230, 237, 228, 0.3);
         
    }

        .menu .nav-menu ul li {
            width:100%;
            transition: all 0.10s ease;
        }

    #menu:checked ~ .nav-menu{
        display: initial;
    }



.nav-menu ul li{
    position: relative;
    float: left;
    list-style-type: none;
}

.nav-menu ul li a{
    font-size: 14px;
    padding: 20px;
    color:#D4AF37;
    display: block;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0px;
    transition: transform 0.3s ease;
}

.nav-menu ul li a:hover{
    color: #e8ce7a;
    transform: scale(1.2);
}
#menu{
    display: none;
}
.menu-icono{
  
    width: 40px;
    margin-right: 10px;
    margin-top: 65px;
    margin-bottom: -5px;
    padding: 0px;
    transition: transform 0.3s ease;
} 
 
.menu-icono:hover{
    transform: scale(1.1);
}


.slider-section {
    
    background-color: white;
    
}

.slider-content {
    
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slider-slider {
  overflow: hidden;
  width: 100%;
  height: 250px;
  position: relative;

}

.slider {
    position: relative; 
    width: 100%;
    height: 100%;
    padding: 0px;
    --t: 3s;
    background-color:black;
}

.slider img {
   
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    animation: slidefade calc(var(--slides,5) * var(--t)) linear infinite;
    animation-delay: calc(var(--i,0) * var(--t) * -1);
    animation-fill-mode: both;
}

.slider img:first-child {
    opacity: 1;
}

/* Botones de navegación del slider */
.slider-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    opacity: 0.8;
    background:#d7dbdc;
    color:#05718a;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0;
    line-height: 1;
}

.slider-btn:hover {
    background: #575757;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

@keyframes slidefade {
 
    0%   { opacity: 1; }
    20%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}


.slider:hover img,
.slider:focus-within img {
    animation-play-state: paused;
}





.productos-section {
    padding: 40px 5%;
    background-color:white;
    margin-bottom: 30px;
}

.productos-section h2{
    color:#D4AF37;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.productos-section h2:hover{
    transform: scale(1.2);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-bottom: 50px;
}

    


.productos-card {
   box-shadow:0 6px 18px rgba(95, 125, 88, 0.499);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
    height: 250px;
}

.productos-card img {
    height: 150px; 
    width: 100%;
    object-fit: cover;
}

.productos-info {
    padding: 3px;
}
.productos-name{
    font-size: 11px;
    font-weight: 700;
    color:#D4AF37;
}

.productos-precio {
    color: black;
    font-weight:500;
    margin: 5px 0 10px;
    font-size: 10px;
    
}

.ver-btn {
    background-color:  #05718a;
    color: #D4AF37;
    border: none;
    padding: 4px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 50px;
    transition: transform 0.3s ease;
    font-weight: 500;
    
    
}

.ver-btn:hover{
    background-color:  #0287a5;
    transform: scale(1.05);
}


.destacados-section {
  background-color:white;
  padding: 30px 0px;
  text-align: center;
  overflow: hidden;
}

.destacados-section h2 {
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    color:#D4AF37;
    margin-bottom: 30px;
    transition:  0.3s ease;
}

.destacados-section h2:hover{
     transform: scale(1.2);
}

.destacados {
  overflow: visible;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
}

.destacados-btn {
    margin: -5px;
    position: relative;
      opacity: 0.8;
    background:#d7dbdc;
    color:#05718a;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 100;
    flex-shrink: 0;
}

.destacados-btn:hover {
    background:#575757;
    transform: scale(1.1);
}

.slider-destacados {

     display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
 
    padding:0;
    margin: 0;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
}

.slider-destacados::-webkit-scrollbar {
    height: 6px;
}

.slider-destacados::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.slider-destacados::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 3px;
}

.slider-destacados img {
   
      flex: 0 0 100%;
    max-width: 100%;
    height: 250px;
    scroll-snap-align: center;
    border-radius: 10px;
    object-fit: cover;
    margin: 8px;
}

.slider-destacados img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.servicios-section {
    padding: 40px 5%;
    margin-bottom: 40px;
    background-color:white;
}
.servicios-section h2{
    color:#D4AF37;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
} 
.servicios-section h2:hover{
    transform: scale(1.2);
}
    .servicios-grid{
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 0 12px;
        margin: 0 auto;
    }
    .servicio-card{
        background-color:rgba(5, 113, 138, 0.1);
        border-radius: 10px;
        padding: 14px;
        box-shadow: 0 6px 18px rgba(95,125,88,0.1);
        text-align: center;
    }
    .servicio-icon{
        font-size: 28px;
        color: #05718a;
        margin-bottom: 8px;
    }
    .servicio-card h3{
        color: #D4AF37;
        font-size: 16px;
        margin-bottom: 6px;
    }
    .servicio-card p{
        font-size: 14px;
        color: #555;
        line-height: 1.4;
    }

footer {
    
    position: relative; 
    width: 100%;
    background-color: #05718a;
    color:white;
    box-shadow: 0 -2px 10px rgba(255, 254, 254, 0.12);
}

.footer .content{
    max-width: 1000px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 5%;
    flex-direction: column;
    align-items: center; 
   
}

.footer-item{
    flex: 1 1 180px;
    text-align: center; 
}

.footer-item h4{
    color:#D4AF37;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-item.contact ul{
    list-style: none;
    padding: 0;
    margin: 0;
    color:white;
    
}
.footer-item.contact ul{
    list-style: none;
    padding: 0;
    margin: 0;
    color:white;
    text-align: center;
}


.footer-item a {
    color:white;        
    text-decoration: none; 
}
.footer-item a:visited {
    color: white;
}
.footer-item a:hover,
.footer-item a:focus {
    text-decoration: underline; 
    outline: none;
}


.social-links{
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.social-link{
    color:white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}
.social-link i{font-size:18px}
.social-link:hover{opacity:0.85}
.social-link span{display:none} 

.footer-bottom{
    text-align: center;
    padding: 10px 5%;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 8px;
    color:white;
}

.footer-item ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item ul li{
    font-size: 16px;
    color:white;
    margin-bottom: 6px;
}

/* BOTÓN WHATSAPP - Removido (ver versión mejorada abajo en CTAs) */

@media (min-width: 900px) {
    
    .header{
        width: 100%;
        height: 100px;
    }

    .logo{
        margin-top: -70px;
    }
    .logo img{
        
        width: 5%;
        position: absolute;
       
    }
  
    .menu-icono{ 
        display: none; 
    }
    .menu{ 
        margin-top: 50px;
      
     }
    .menu .nav-menu{
        position: static ;
        display: flex ;
        background: transparent ;
        box-shadow: none ;
        border-radius: 0 ;
        margin-right: 30px;
        
        z-index: 1100;
    
    }
    .menu{ justify-content: space-between; }
    .nav-menu{ align-items: center; justify-content: flex-end;}
    .nav-menu ul{
            
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content:right;
        margin: 0;
        padding: 0;
    }
    .nav-menu ul li{
         float: none;
          width: auto; 
          list-style: none; 
        }
   
    .nav-menu ul li a{ 
        font-size: 16px; 
        font-weight: 700; 
        position: static; 
        padding: 5px;
        margin-bottom:-50px;
    }
    .subscribe-btn{
         font-size: 16px;
          width: auto;
           padding: 8px 15px;
        margin-top: 45px; }

   
    .slider-content{ 
        padding-top: 100px;
         max-width: none;
          width: 100%; margin: 0; }
    .slider-slider{ 
        height: 600px;
         width: 100vw;
          margin-left: calc(50% - 50vw);
         }
    .slider{ 
        height: 600px; 
        width: 100%;
         margin-left: calc(50% - 50vw);
         }
    .slider img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
        
    }

    
  

   
     .servicios-section h2{
        font-size: 35px;
     }

    .servicios-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
        align-items:center;
        justify-content: center;
        
    }
    .servicio-card{
     padding: 50px;
    width: 450px;
    height: 300px;
    justify-content: space-between;
    padding-right: 30px;   

     }
    .servicio-icon{ 
        font-size: 50px; 
    }
    .servicio-card h3{ 
        font-size: 20px;
     }
    .servicio-card p{
         font-size: 16px;
          color: #444;
         }

    .productos-section{
        padding:0;
        margin-bottom: 40px;
    }

.productos-section h2{
    margin-top: 30px;
font-size: 35px;

}
.productos-name{
    font-size: 18px;
}
.productos-precio{
    font-size: 16px;
}
.ver-btn{
    font-size: 16px;
    margin-bottom: 0;
}

.productos-grid{
    padding-left: 20px;
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        margin: 0 auto;
        justify-items:flex-start;
        gap: 20px;
        width: calc(100% - 80px);
        height: auto;
    }

    .productos-card{
         width: 90%;
          height: auto;
         }
    .productos-card img{
         height: 180px;
          object-fit: cover;
         }
    .destacados-section{
        padding: 30px 20px;
        margin-top: 0;
    }
    .destacados-section h2{
        font-size: 35px;
    }
    
    .destacados {
        gap: 8px;
        padding: 0 5px;
    }
    
    .destacados-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
        flex-shrink: 0;
        
    }
    
    .slider-destacados {
        padding: 10px 0;
        gap: 5px;
    }
    
    .slider-destacados img{
        flex: 0 0 280px;
        width: 100%;
        height: 210px;
        margin: 0 3px;
        border-radius: 8px;
    }

  
    .slider-clientes img{ 
        flex: 0 0 200px;
         height: 220px; 
        }

     .footer-item redes{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin-top: 0;
     }
    .footer .content{
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        padding:40px ;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
 
    .footer-item{
         text-align:center;
         }
    .social-link span{ 
        display:flex; 
    }
    .footer-item{
        text-align:center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .footer-item.contact{
        flex-direction: column;
        justify-content: center;
       
        align-items: center;
       
    }
   
    .footer-bottom{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-top: 12px;
    }
}

/* ESTILOS PARA EL MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #e7e4e4;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 1px 8px rgba(1, 109, 121, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color:#D4AF37;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #9c988b;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-galeria {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#modal-imagen-principal {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 1px 8px rgba(5, 113, 138, 0.3);
    /* border-radius: 10px; */
    /* border: 2px solid #05718a; */
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.modal-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    /* border-radius: 8px; */
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.modal-thumb:hover{

    transform: scale(1.05);
}
.modal-thumb.active {
    border-color: #D4AF37;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#modal-nombre {
    font-size: 28px;
    color: #D4AF37;
    margin: 0;
}

.modal-precio {
    font-size: 24px;
    color: #05718a;
    font-weight: 600;
    margin: 0;
}

.modal-descripcion {
    color: #7c7979;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.modal-caracteristicas {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #05718a;
}

.modal-caracteristicas h3 {
    color: #D4AF37;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.modal-caracteristicas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-caracteristicas li {
    color:#7c7979;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.modal-caracteristicas li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #05718a;
    font-weight: bold;
}

.modal-contacto-btn {
    background-color:#25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 10px;
}

.modal-contacto-btn:hover {
    
    background-color:#75f0a2;
    transform: scale(1.05);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .modal-close{
        margin-right: 10px;
    }

    #modal-imagen-principal {
        max-height: 300px;
    }

    #modal-nombre {
        font-size: 22px;
    }

    .modal-precio {
        font-size: 18px;
    }
}

/* ===== SECCIÓN SOBRE NOSOTROS ===== */
.nosotros-section {
    background-color: hsl(0, 0%, 100%);
    /* padding: 80px 20px; */
    margin-top: 50px;
}

.nosotros-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.nosotros-texto h2 {
    font-size: 36px;
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.nosotros-texto p {
    color: #4a4848;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.nosotros-texto h3 {
    color: #05718a;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.nosotros-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.nosotros-list li {
    color:#4a4848;
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.nosotros-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 18px;
}

.nosotros-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nosotros-imagen img {
    width: 100%;
    max-width: 400px;
    border-radius: 200px;
    box-shadow: 0 0 30px rgba(5, 113, 138, 0.5);
    transition: transform 0.3s ease;
}

.nosotros-imagen img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .nosotros-section {
        padding: 0px 20px;
        margin-top: 3px;
    }

    .nosotros-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nosotros-texto h2 {
        font-size: 25px;
    }

    .nosotros-texto p {
        font-size: 14px;
    }

    .nosotros-texto h3 {
        font-size: 18px;
    }

    .nosotros-list li {
        font-size: 14px;
    }
}

/* ===== BOTONES CTA (CALL TO ACTION) ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.btn-primary {
    background-color:#25D366;
    color: white;
}

.btn-primary:hover {
    background-color:#75f0a2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 113, 138, 0.4);
}

.btn-secondary {
    background-color: #05718a;
    color: #D4AF37;
}

.btn-secondary:hover {
    background-color: rgba(5, 113, 138, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    flex: 1;
    min-width: 200px;
}

/* SECCIÓN CTA GRANDE */
.cta-section {
    background-color:rgba(5, 113, 138, 0.1);
    /* background: linear-gradient(135deg, #05718a 0%, #D4AF37 100%); */
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: #05718a;
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-section p {
    color:#8b8a8a;
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons-large {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons-large .btn {
    flex: 1;
    min-width: 200px;
}

.cta-buttons-large .btn-primary {
    background-color:#25D366;
    color: #ffffff;
}

.cta-buttons-large .btn-primary:hover {
    background-color:#75f0a2;
}

.cta-buttons-large .btn-secondary {
    background-color: #05718a;
    color: #D4AF37;
}

.cta-buttons-large .btn-secondary:hover {
    background-color: #1a1a1a;
}

/* CTA EN PRODUCTOS */
.productos-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(5, 113, 138, 0.1);
    border-radius: 10px;
    margin-top: 40px;
}

.productos-cta p {
    color: #8b8a8a;
    font-size: 16px;
    margin-bottom: 20px;
}

/* BOTÓN WHATSAPP MEJORADO */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn img {
    width: 60%;
    height: 60%;
}

.whatsapp-tooltip {
    position: absolute;
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-buttons-large,
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons-large .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        right: 75px;
        font-size: 12px;
    }
}

/* MEDIA QUERY MÓVIL - PRODUCTOS */
@media (max-width: 600px) {
    .productos-section {
        padding: 30px 15px;
        margin-bottom: 20px;
    }

    .productos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 25px;
    }

    .productos-card {
        width: 100% !important;
    }

    .productos-cta {
        padding: 25px 15px;
        margin-top: 25px;
    }

    .productos-cta p {
        font-size: 14px;
    }

    .productos-cta .btn {
        width: 100%;
    }
}

/* ===== SECCIÓN CONTACTO ===== */
.contacto-section {
    background-color:rgba(5, 113, 138, 0.1);
    padding: 80px 20px;
}

.contacto-section h2 {
    font-size: 36px;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 15px;
}

.contacto-subtitle {
    text-align: center;
    color: #8b8a8a;
    font-size: 16px;
    margin-bottom: 60px;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contacto-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    background-color: #ffffff;
    border-left: 4px solid #05718a;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: rgba(5, 113, 138, 0.05);
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
     display: flex;
    align-items: center;
    justify-content: center;

    background: #05718a;
    border-radius: 50%;

    margin-bottom: 12px;
   
  
}
.info-icon .icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.info-item:hover .info-icon {
    background: #D4AF37;
    transform: scale(1.1);
    transition: all 0.3s ease;
}


.info-item h3 {
    color: #D4AF37;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-item p {
    color: #8b8a8a;
    font-size: 14px;
    margin: 5px 0;
}

.info-item a {
    color: #05718a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #D4AF37;
}

.info-desc {
    color:#8b8a8a;
    font-size: 13px !important;
}

.contacto-form {
    background-color: #ffffff;
    box-shadow: 0 1px 8px rgba(5, 113, 138, 0.3);
    /* border: 2px solid #05718a; */
    border-radius: 12px;
    padding: 40px;
}

.contacto-form h3 {
    text-align: center;
    color: #D4AF37;
    font-size: 22px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
     box-shadow: 0 1px 8px rgba(5, 113, 138, 0.3);
    border:none;
    /* border-radius: 6px; */
    color:#000000;
     
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color:#8b8a8a;
    
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contacto-form .btn {
    width: 100%;
    margin-bottom: 15px;
}

.form-desc {
    text-align: center;
    color:#8b8a8a;
    font-size: 13px;
    margin: 0;
}

.form-desc a {
    color: #05718a;
    text-decoration: none;
    font-weight: 600;
}

.form-desc a:hover {
    text-decoration: underline;
}

/* REDES SOCIALES */
.contacto-redes {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #05718a;
}

.contacto-redes h3 {
    color: #D4AF37;
    font-size: 22px;
    margin-bottom: 20px;
}

.redes-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.red-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    
}

.red-icon.instagram {
     background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.red-icon.facebook {
    background-color: #1877F2;
    color: white;
}

.red-icon.whatsapp {
       background-color: #25D366;
    color: white;
}

.red-icon:hover {
    transform: translateY(-5px);
    
   
}

/* FOOTER MEJORADO */
.footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #05718a;
}

.footer-content {
    color: #999;
    font-size: 13px;
}

/* RESPONSIVE CONTACTO */
@media (max-width: 768px) {
    .contacto-section {
        padding: 50px 20px;
    }

    .contacto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacto-info {
        grid-template-columns: 1fr;
    }

    .contacto-form {
        padding: 30px 20px;
    }

    .redes-icons {
        gap: 15px;
    }

    .red-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 10px;
        margin-top: 25px;
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .contacto-section {
        padding: 40px 15px;
    }

    .contacto-section h2 {
        font-size: 26px;
    }

    .contacto-content {
        gap: 30px;
    }

    .contacto-form {
        padding: 20px 15px;
    }

    .info-item {
        padding: 20px;
    }

    .red-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ===== FOOTER PROFESIONAL ===== */

.footer {
    background: linear-gradient(135deg, #05718a 0%, #003d52 100%);
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 3px solid #D4AF37;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
    text-align: center;
}

/* Columna 1: Descripción */
.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.footer-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 10px;
}

/* Links útiles */
.footer-links {
    list-style: none;
    margin-right: 20px;
}

.footer-links li {
    margin-bottom: 12px;
    
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #D4AF37;
    margin-left: 8px;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contacto */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-icon {
    width: 25px;
    height: 25px;
    background-color:#D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content:center;    

}
.contact-icon .icon {
     width: 15px;
    height: 15px;
    fill: #ffffff;
}
   

.footer-contact a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4AF37;
}

.footer-contact span {
    color: #d0d0d0;
}

/* Redes sociales footer */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    border: 2px solid transparent;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(240, 148, 51, 0.3);
}

.social-btn.facebook {
    background-color: #1877F2;
    color: white;
}

.social-btn.facebook:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-btn.whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Divisor */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 40px 0;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom-content small {
    color: #a0a0a0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-link {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.legal-link:hover {
    color: #f0c56f;
    text-decoration: underline;
}

.separator {
    color: #666;
}

/* Responsivo - Tablet */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-divider {
        margin: 30px 0;
    }

    .footer-bottom-content {
        gap: 15px;
    }
}

/* Responsivo - Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 20px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        font-size: 13px;
        gap: 10px;
    }

    .contact-icon {
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-content small {
        font-size: 12px;
    }

    .legal-link {
        font-size: 12px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {

    /* HEADER */
    .header {
        min-height: 70px;
        padding: 0;
    }

    /* LOGO */
    .logo img {
        width: 40px;
        height: 40px;
        margin-left: 10px;
        margin-top: 10px;
    }

    /* MENU ICONO */
    .menu-icono {
        width: 35px;
        margin-top: 20px;
    }

    /* SLIDER PRINCIPAL */
    .slider-slider {
        max-width: 100%;
        height: 200px;
    }

    /* SLIDER DESTACADOS */
    .slider-destacados img {
        margin: 10px;
        max-width: 40%;
        height: 200px;
    }

    /* BOTONES DEL SLIDER */
 
    .destacados-btn {
        margin: 0px;
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .slider-btn {
       
        width: 30px;
        height: 30px;
        font-size: 12px;
      
        margin-left: -15px;
        margin-right: -15px;
    }
    .slider-content{
        padding-top: 70px;
        height: 400px;
        
  
    }
    .slider-slider{
        height: 400px;
    }
    .slider{
        height: 500px;
        background-color: rgb(255, 255, 255);
    }

  
    .slider img{
        margin-top: -100px;
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    /* TITULOS */
    h2 {
        font-size: 50px;
    }
}




/* BSCADOR */
.header-buscador {
  max-width:35%;
 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-top: 70px;
    padding: 0;

}

.header-buscador input {

    width: 100%;
    padding: 10px 36px 10px 5px;
    height: 15px;
    font-size: 11px;
    border: none;
    color: #333; 
    background-color: #ffffff;
    transition: 0.3s ease;

}
.header-buscador input:focus {
    outline: none;
   
    box-shadow: 0 0 8px rgba(5, 113, 138, 0.8);
}




.header-buscador input::placeholder {
    color:#D4AF37;
    font-size: 10px;
    padding: 5px;
}

.icono-buscar {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    opacity: 0.6;
}



@media (min-width: 768px) {
    .header-buscador {
        justify-content: center;
        align-items: center;
        max-width: 400px;
        margin-left: 530px;
        margin-top:8px;
        
    }
    .header-buscador input::placeholder {
        font-size: 12px;
    }

    .header-buscador input {
        font-size: 12px;
        
    }
}



@media (max-width: 768px) and (orientation: landscape) {
    .header-buscador {
        max-width: 220px;
        margin: 6px auto;
    }

    .header-buscador input {
        padding: 8px 34px 8px 12px;
        font-size: 13px;
    }
}


/* MENSAJE DE BUSQUEDA */
.sin-resultados {
    display: none;
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    color: #777;
}


/* LIMPIAR */
.btn-limpiar {
    position: relative;
    right: 18px;
    margin-top: 20px;
    transform: translateY(-50%);
    font-size: 14px;
    cursor: pointer;
    display: none;
    color: #D4AF37;
}

.btn-limpiar:hover {
    color: #05718a;
}

/* RESULTADO DE BUSQUEDA */
.texto-resultados {
    margin: 15px 0;
    font-size: 14px;
    color: #555;
    display: none;
}

.texto-resultados span {
    font-weight: 600;
    color: #05718a;
}

