*{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    /* Ajustamos el padding-top para que el contenido empiece después del header */
    /* Usamos 130px considerando que el logo mide 115px + un pequeño margen */
    padding-top: 70px; 
    display: flex;
    flex-direction: column; /* Cambiado a column para que el flujo sea vertical */
    align-items: center;
    background-color: aliceblue;
    /* Quitamos overflow: hidden para que el usuario pueda hacer scroll si el contenido es largo */
    overflow-y: auto; 
}
.main-header {
  position: fixed; /* O 'absolute' si no quieres que te siga al bajar */
  top: 0;          /* Pega la barra al techo */
  left: 0;         /* Pega la barra a la izquierda */
  width: 100%;     /* Asegura que cubra todo el ancho */
  z-index: 1000;   /* Asegura que esté por encima de todo lo demás */
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between; /* Esquina a esquina */
    align-items: center;
    height: 70px; /* Define una altura clara */
    padding: 0 40px; /* Margen interno para que no toque los bordes del monitor */
}

.logo-container img {
    height: 115px;
    display: block;
}

.action-btn {
        background-color: black;
        color: rgb(255, 246, 246);
        padding: 12px 25px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: bold;
        transition: transform 0.3s ease, background 0.3s ease;
        text-decoration: none;
    }
.action-btn:hover{
    background-color: rgb(139, 139, 139);
    color: antiquewhite;
    transform: scale(1.05);
}
.hero{
    padding-top: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-inline: 10%;
    background: linear-gradient(135deg, #fff 50%, #e8f5e9 50%);
}
.hero-content{
    flex: 1;
    padding-right: 50px;
}
.hero-content h1{
    font-size: 3.5rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content p{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #665;
}
.hero-img{
    flex: 1;
    text-align: center;
}
.hero-img img{
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}
@keyframes float{
    0%, 100% {
        transform: translateY(0);
    }
    50%{
        transform: translateY(-20px);
    }
}


.nav-button{
        font-family: Arial, Helvetica, sans-serif;
        font-size: medium;
        background-color: black;
        color: rgb(255, 246, 246);
        padding: 14px 25px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: bold;
        transition: transform 0.3s ease, background 0.3s ease;
        text-decoration: none;
    
}
.nav-button:hover{
    background-color: rgb(118, 174, 138);
    color: rgb(92, 68, 37);
    transform: scale(1.05);
}
.container{
    max-width: 5500PX;
    margin: 0;
    padding: 20px;
}
.agitation{
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}
.agitation h2{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
}
.benefits {
            padding: 80px 0;
            background: #f1f5f9;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

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

        .benefit-card h3 {
            color:rgb(118, 174, 138);
            margin-bottom: 15px;
        }
        .social-proof {
            padding: 80px 0;
            background: #ffffff;
            max-width: 1250%;
        }

        .includes-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }

        .includes-item {
            display: flex;
            align-items: center;
            background: rgb(199, 199, 199);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
        }

        .testimonial {
            font-style: italic;
            background: #ededed;
            border-left: 4px solid rgb(118, 174, 138);
            padding: 20px;
            margin: 20px auto;
            max-width: 600px;
        }
        .trust-section{
            padding: 60px;
            background-color: #000000;
            color: white;
            text-align: center;
        }
        .trust-icons{
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .faq {
            padding: 80px 0;
        }

        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #36393d;
            padding-bottom: 15px;
        }

        .faq-question {
            font-weight: 700;
            cursor: pointer;
            display: block;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }
        .sticky-cta {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .btn-order {
            background: rgb(118, 174, 138);
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }
        .btn-order:hover{
            background-color: rgb(139, 139, 139);
            color: antiquewhite;
            transform: scale(1.05);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        @media (max-width: 968px) {
    .hero {
        flex-direction: column-reverse; /* Imagen arriba, texto abajo en móviles */
        text-align: center;
        background: linear-gradient(180deg, #fff 60%, #e8f5e9 60%); /* Ajuste del gradiente */
        padding-top: 40px;
    }
    
    .hero-content {
        padding-right: 0;
    }

    .hero-img img {
        max-width: 80%; /* Imagen un poco más pequeña */
    }
}

/* Celulares */
@media (max-width: 600px) {
    .navbar {
        padding: 0 15px;
    }
    
    .logo-container img {
        height: 50px;
    }

    .action-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem; /* Tamaño fijo seguro para móvil */
    }

    .trust-icons {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .sticky-cta span {
        font-size: 0.9rem;
    }
    
    .btn-order {
        width: 100%;
        text-align: center;
    }
}

        /* Estrategia Extra: Banner Escasez */
    


/*.container{
    height: 400px;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    perspective: 500px;
}

 .logo{
    width: 300px;
    height: 230px;
    background: url(Imgs/m1.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 10px;
    filter: drop-shadow(0px 7px 21px #1a1a1a);
    animation: rotate 4s linear infinite;

}

.logo:hover{
    cursor: pointer;
}

@keyframes rotate{
    from{
        transform: rotateY(180deg);
    }
    to{
        transform: rotateY(360deg);
    }
}  
*/
