@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;700;800&display=swap');
html{
    scroll-behavior: smooth;
}
  
body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(to bottom right, #eaf7ff, #d0f0ff);
    color: #111;
    overflow-x: hidden;
}
  
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    animation: fadeDown 1.5s ease-out forwards;
}

  
.pack{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;

}

.compania{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.logo{
    /* background-color: blueviolet; */
    display: flex;
    
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    /* background-color: #384c5a; */
    /* background-color: #d3d3d3; */
    background-color: #333A48;
    /* background-color: #ffffffd3; */
    margin-right: 5px;
    padding: 12px;
    border: none;
    border-radius: 20px;
    /* color: #f7c738; */
    color: #fff;

}


.nombre-producto{
    font-family: 'Montserrat', sans-serif;
    color: #333A48;

    font-weight: 500;
}

nav {

    display: flex;
    align-items: center;
    gap: 30px;
}
  
nav a {
    text-decoration: none;
    color: #333A48;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #9b9b9b;
}

.cta-button {
    background-color: #111;
    color: white;
    /* padding: 1% 5%; */
    border: none;
    /* border-radius: 12px; */
    /* font-size: 16px; */
    cursor: pointer;
    /* transition: background 0.3s; */
    /* text-decoration: none; */

    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}
.title-text-content{
    font-family: 'Montserrat', sans-serif;
}
/* MAIN INTRO CARACTERISTICAS */

.intro-caracteristicas {
    text-align: center;
    padding: 120px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-caracteristicas h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333A48;
    margin-bottom: 20px;
}

/* .intro-caracteristicas h1 span {
    color: #0080ff;
} */

.intro-caracteristicas p {
    font-size: 1.1rem;
    color: #555;
}

.lista-caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 10%;
    margin-bottom: 60px;
}

.caracteristica {
    background-color: #ffffffd8;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.caracteristica:hover {
    transform: translateY(-10px);
}

.caracteristica svg {
    /* width: 80px; */
    color: #333A48;
    margin-bottom: 10px;
}

.caracteristica h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333A48;
    margin-bottom: 10px;
}

.caracteristica p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* DETALLES DE CARACTERISTICAS */

.detalle-caracteristica {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 60px;
    flex-wrap: wrap;
}

.detalle-caracteristica.reverse {
    flex-direction: row-reverse;
}

.detalle-caracteristica .contenido {
    flex: 1;
    min-width: 300px;
}

.detalle-caracteristica .contenido h2 {
    font-size: 2rem;
    color: #333A48;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.detalle-caracteristica .contenido p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.detalle-caracteristica .imagen {
    flex: 1;
    text-align: center;
}

.detalle-caracteristica .imagen img {
    max-width: 100%;
    width: 400px;
}


/* FOOTER */
/* FOOTER */

.footer {
    background-color: #0f0f0f;
    color: #f2f2f2;
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
}
  
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
  
.footer-brand {
    flex: 1 1 300px;
}
  
.footer-brand h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
  
.footer-brand p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.5;
}
  
.footer-links {
    display: flex;
    flex: 2 1 600px;
    gap: 40px;
    flex-wrap: wrap;
}
  
.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}
  
.footer-column ul {
    list-style: none;
    padding: 0;
}
  
.footer-column li {
    margin-bottom: 8px;
}
  
.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
  
.footer-column a:hover {
    color: #fff;
}
  
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}
  
  
/* Animaciones base */
.animar {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
  
.animado {
    opacity: 1;
    transform: translateY(0);
}
  
/* Keyframes alternativo (opcional) */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 1s ease forwards;
}

/* Animaciones */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  /* @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(5px); }
    to { opacity: 1; transform: translateX(0); }
  } */
  
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateY(80px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  @keyframes revealBox {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0.96);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
  }
  
  .whatsapp-img.animate-img {
    animation: revealBox 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
  }
  