:root {
    --color-principal: #F48FB1;
    --color-sec: #F8BCD0;
    --color-back: #FDE9EF; 
    --color-wa: #25d366;
    --color-card: #ebebeb;
    --color-txt: #636262;
    --color-complement: #5ba184;
  }
  html{
    display: block;
    max-width: 100%;
  }
body{
    margin: 0;
    padding: -50px;
}

nav{
    background-color: var(--color-sec);
    padding: 0;
    margin: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

nav p{
    padding: 0;
    margin: 0;
    text-align: center;
}
.hero-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.hero_inner{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
}


.hero_img{
    position: relative;
    width: 30%;
    min-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  /* fondo animado */
  .hero_img::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/circulos.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: girarFondo 20s linear infinite;
    z-index: 0;
  }
  
  .hero_img img{
    position: relative;
    z-index: 1;
    max-width: 500px;
  }
  
  @keyframes girarFondo {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
    
  .hero_img img{
    max-width: 500px;
    display: block;
    margin: 0 auto;
    animation: pulseLuxury 2s ease-in-out infinite;
    will-change: transform;
  }
  
  @keyframes pulseLuxury {
    0%, 75% { transform: scale(1); }
    85%     { transform: scale(1.04); }
    95%     { transform: scale(0.99); }
    100%    { transform: scale(1); }
  }
  

h1{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: var(--color-principal);
}

h2{
    color: var(--color-txt);
    font-family: "Happy Monkey", system-ui;
    font-weight: 400;
}

p{
    color: var(--color-txt);
    font-family: "Lato", sans-serif;
    font-weight: 300;
    text-align: justify;
}

.wave img{
    max-width: 100%;
    min-width: 100%;
    margin-bottom: -5px;
}

.rotate{
rotate: 180deg;
}

.div{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin-top: 0;
}

a{
    color: #ffffff;
    background-color: var(--color-principal);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 3px;
    width: 50%;
    margin-top: 10px;
}
.div img{
    max-width: 500px;
    }
.div .div_inner{
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    max-width: 500px;
}

.div.bg{
    background-color: var(--color-back);
    border-bottom: none;
    overflow: hidden;
}
.list{
    border-radius: 5px;
    padding: 0px 25px;
    margin-bottom: 20px;
    box-shadow: -1px 5px 4px 3px rgba(217,217,217,0.74);
    -webkit-box-shadow: -1px 5px 4px 3px rgba(217,217,217,0.74);
    -moz-box-shadow: -1px 5px 4px 3px rgba(217,217,217,0.74);
}
ul{
    padding: 20px;
}

.list.pink{
background-color: var(--color-back);
color: var(--color-principal);
}
li{
    color: var(--color-txt);
}

li::marker {
    color:var(--color-sec); /* Cambia solo el color de la viñeta */
    font-size: 1.2em; /* También puedes ajustar su tamaño */
  }

.container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.div.gray{
    padding-bottom: 20px;
    border-radius: 25px;
    background-color: var(--color-card);
    max-width: 80%;
    
}

.iconos_compra{
    display: flex;
}

.iconos_compra img{
max-width: 250px;
}

.iconos_compra h2{
    color: var(--color-complement);
    max-width: 250px;
    text-align: center;
    padding: 0;
    margin: 0;
    }

    a{
        max-width: 500px;
        display: block;
        margin: 0 auto;
        animation: pulseBttn 3s ease-in-out infinite;
        will-change: transform;
      }
      
      @keyframes pulseBttn {
        0%, 75% { transform: scale(1); }
        85%     { transform: scale(1.04); }
        95%     { transform: scale(0.99); }
        100%    { transform: scale(1); }
      }


        @media screen and (max-width: 768px) {
            h1 { font-size: 2rem; line-height: 1.1; padding: 10px 20px; margin: 0}
            h2 { font-size: 1.25rem; line-height: 1.2; padding: 10px 20px; margin: 0}
            p  { font-size: 1rem; line-height: 1.5; text-align: justify;   padding: 10px 20px; margin: 0;}
            .hero-banner{
              margin-top: 50px;     
              display: flex;
              flex-direction: column-reverse;   
              align-items: center;
              justify-content: center;
              width: 100%;
              min-width: 0;     
              gap: 16px;
              padding: 0;
            }
          
            .hero_inner{
              width: 100%;
              height: auto;       
              padding: 0;
              display: flex;
              justify-content: center;
            }
          
            .hero_inner_txt{
              max-width: 560px;
              width: 100%;
            }
          
            .hero_img{
              width: 100%;
              min-width: 0;          
              display: flex;
              justify-content: center;
              align-items: center;
              background-repeat: no-repeat;
              background-position: center;
              background-size: contain;
              aspect-ratio: 1 / 1;
              max-width: 420px;
              margin: 0 auto;
            }
          
            .hero_img img{
              width: 70%;
              max-width: 320px;
              height: auto;
              display: block;
            }
          
            .wave img{
                margin-top: 35px;
            }
            .wave.rotate img{
                margin-top: 0;
                margin-bottom: 35px;
            }
            /* ============ SECCIONES GENERALES ============ */
            /* Todas las secciones .div (incluye .div.bg, .div.gray, etc.) vertical */
            .div{
              flex-direction: column;        /* vertical */
              align-items: center;
              justify-content: center;
              width: 100%;
              max-width: 100%;
              padding:0;
              gap: 16px;
            }
          
            /* En la sección rosa quieres imagen abajo y texto arriba */
            .div.bg{
              flex-direction: column;
            }
            .div .div_inner{
              width: 100% !important;
              max-width: 560px;
              margin: 0;
              height: auto !important;
              min-height: 0 !important;
              align-items: center;
              text-align: center;
            }
          
            /* Imagen container (si existe) */
            .div .div_img{
              width: 100%;
              display: flex;
              justify-content: center;
            }
          .div.left{
            margin-top: 30px;
            flex-direction: column-reverse;
          }
            /* Cualquier imagen dentro de .div */
            .div img{
              width: min(85%, 360px);
              max-width: 360px;
              height: auto;
              display: block;
            }
          
            /* Botones solo en mobile (mejor scoped, no global) */
            .div .div_inner a{
              display: block;
              width: 100%;
              max-width: 320px;
              margin-top: 12px;
            }
          
            /* ============ LISTAS / CARDS ============ */
            .list{
              width: 75%;
              padding: 0px 20px;
            }
          
            ul{
            max-width: 90%;
              padding: 12px 18px;
            }
          
            li{
                text-align: left;
            }
            /* ============ ICONOS COMPRA ============ */
            .iconos_compra{
              flex-direction: column;
              align-items: center;
              gap: 16px;
              width: 100%;
            }
          
            .gray .div_inner a{
                max-width: 80%;
            }

           

            .iconos_compra img{
              max-width: 180px;
              width: 100%;
              height: auto;
            }
          
            .iconos_compra h2{
              max-width: 100%;
            }
          
            /* ============ SECCIÓN GRAY (container) ============ */
            .container{
              width: 100%;
              padding: 0;
              margin-top: 45px;
            }
          
            .div.gray{
              max-width: 80%;
              padding: 24px 16px;
            }
          }
