/* Custom Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #fdf5ef; /* Soft beige/cream */
    --text-color: #3e2b26; /* Dark brown/charcoal */
    --accent-color: #df8375; /* Dusty rose */
    --accent-hover: #c19c5b; /* Gold/Brass */
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(62, 43, 38, 0.08);
    --shadow-hover: 0 8px 30px rgba(62, 43, 38, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; position: relative; }
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}
h3 { font-size: 1.5rem; color: var(--accent-hover); }
p { margin-bottom: 1rem; font-size: 1.1rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}
.btn:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.btn.gold {
    background-color: var(--accent-hover);
}
.btn.gold:hover {
    background-color: transparent;
    border-color: var(--accent-hover);
    color: var(--accent-hover);
}

/* Header */
header {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 15px 5%;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-hover); /* Gold */
    letter-spacing: 3px;
    line-height: 1.2;
    text-transform: uppercase;
}
.promo-phrase {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bg-color);
    opacity: 0.9;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alineado a la izquierda */
    padding: 6rem 5%;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background-image: url('../img/hero_wide.jpg');
    background-size: cover;
    background-position: right top; /* Focaliza en la derecha y arriba para no cortar la cabeza */
    background-repeat: no-repeat;
    text-align: left;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado: más sólido a la izquierda para el texto, transparente a la derecha para ver la foto */
    background: linear-gradient(to right, rgba(253, 245, 239, 0.95) 0%, rgba(253, 245, 239, 0.7) 40%, rgba(253, 245, 239, 0.1) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
}
.hero-content h1 {
    color: var(--text-color);
}
.hero-content p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-color);
}
.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.urgency-text {
    font-size: 0.95rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: 10px;
}
.urgency-text span {
    color: var(--text-color);
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid rgba(62, 43, 38, 0.1);
    flex-wrap: wrap;
}
.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}
.badge-icon {
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 5%;
    background-color: var(--white);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.card {
    background: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    text-align: left;
}
.about-text h2::after {
    margin: 15px 0 0;
}
.about-image {
    flex: 1;
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-hover);
    border-radius: 20px;
    z-index: -1;
}

/* CTA Section */
.cta {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--text-color);
    color: var(--bg-color);
}
.cta h2 {
    color: var(--bg-color);
}
.cta h2::after {
    background: var(--accent-color);
}
.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #2a1c18;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
}
footer a {
    color: var(--accent-hover);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: var(--bg-color);
}
.testimonials h2 {
    text-align: center;
}
.testimonials h2::after {
    margin: 15px auto 0;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}
.author {
    font-weight: 700;
    color: var(--accent-hover);
    font-size: 0.95rem;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none; /* Oculto en escritorio */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}
.btn-sticky {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
.btn-sticky span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}
.btn-sticky.gold {
    background-color: var(--accent-hover);
}

/* Responsive */
@media (max-width: 992px) {
    .about {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        margin-top: 3rem;
    }
    .about-text h2 {
        text-align: center;
    }
    .about-text h2::after {
        margin: 15px auto 0;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    header { padding: 12px 5%; }
    .brand-name { font-size: 1.6rem; letter-spacing: 2px; }
    .promo-phrase { font-size: 0.8rem; line-height: 1.4; }
    
    .hero { 
        min-height: 60vh; 
        padding: 4rem 5%; 
        background-position: 85% top; /* Desplaza el foco más a la derecha para que la mujer entre en la pantalla del móvil */
        justify-content: center;
        text-align: center;
    }
    .hero-overlay {
        /* En móvil, usamos un overlay más uniforme pero un poco más transparente para que se vea la foto sin perder legibilidad */
        background: rgba(253, 245, 239, 0.8);
    }
    .hero-content p { font-size: 1.1rem; }
    .cta-buttons { 
        flex-direction: column; 
        gap: 15px; 
        width: 100%; 
        justify-content: center;
    }
    .btn { 
        padding: 15px 20px; 
        font-size: 1.1rem; 
        width: 100%; 
        display: block; 
    }
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .about { padding: 3rem 5%; }
    .benefits { padding: 3rem 5%; }
    .testimonials { padding: 3rem 5%; }
    .cta { padding: 4rem 5% 7rem 5%; } /* Padding bottom extra para que no lo tape la barra sticky */
    
    .sticky-mobile-cta {
        display: flex;
    }
}
