@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Nunito:wght@300;400;600;700&family=Raleway:wght@400;500;600;700&display=swap');

:root {
    --primary: #00354F; /* Pantone 541 C */
    --secondary: #F4B07B; /* Pantone 721 C */
    --accent: #25D366;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Avenir', 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Recoleta Alt', 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.sticky {
    padding: 0.8rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-whatsapp {
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Section New */
.hero-new {
    padding: 8rem 0;
    background: linear-gradient(rgba(13, 43, 69, 0.8), rgba(13, 43, 69, 0.8)), url('assets/family_hero.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hook-question {
    background: rgba(232, 135, 74, 0.2);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.hook-question p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
}

.btn-hero-cta {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary); /* Dark text on light gold looks better */
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(244, 176, 123, 0.4);
    transition: var(--transition);
}

.btn-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 176, 123, 0.5);
    background: #e5a370;
}

/* Hero Form */
.hero-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: var(--text-dark);
}

.hero-form-container h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-left: 0.8rem;
}

.phone-input span {
    font-weight: 700;
    color: var(--text-muted);
}

.phone-input input {
    border: none;
}

.checkbox-group {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-submit-hero {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-hero:hover {
    background: var(--secondary);
}

#form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #e5a370;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Emotional Narrative */
.emotional-narrative {
    background: #FDFDFD;
    text-align: center;
}

.small-container {
    max-width: 700px;
    margin: 0 auto;
}

.narrative-content p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.time-highlight {
    font-size: 2.2rem;
    margin: 3rem 0;
    color: var(--primary);
    font-style: italic;
}

.highlight-box {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(13, 43, 69, 0.2);
}

.highlight-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0;
}

/* About Lorena */
.about-section {
    background: var(--light-bg);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.video-placeholder {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 43, 69, 0.9);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.video-placeholder:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 1.5rem;
}

.about-content span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
}

/* Contact Form */
.contact {
    background: var(--primary);
    color: var(--white);
}

.contact .section-title h2 {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    padding-right: 2rem;
}

.cta-text-relocated h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cta-text-relocated .highlight-p {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text-relocated h3 {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-benefits {
    margin-bottom: 2rem;
}

.contact-benefits ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary);
}

/* Process Section */
.process-section {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 0;
}

.process-section .section-title h2 {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.process-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.process-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(244, 176, 123, 0.4);
}

.process-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.process-item h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.process-footer {
    text-align: center;
    margin-top: 4rem;
}

.process-footer p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-footer .btn-primary {
    margin-top: 2rem;
    display: inline-block;
}

/* Reasons Section */
.reasons-section {
    background: var(--white);
    padding: 8rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.reason-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.reason-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.reason-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.reason-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Partners Area */
.partners-area {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 5rem;
}

.partners-area h4 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-swiper, .partners-swiper-footer {
    width: 100%;
    padding: 1rem 0;
}

.partners-wrapper, .partners-swiper-footer .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partner-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo-img-small {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo-img-small:hover {
    opacity: 1;
}

/* Solutions */
.solutions-section {
    background: #F5F7FA;
    padding: 8rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 43, 69, 0.1);
    border-color: var(--secondary);
}

.solution-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.solution-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.solutions-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    padding: 8rem 0;
}

.title-gold {
    color: var(--secondary) !important;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.subtitle-navy {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: #F9FAFB;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 4px solid var(--secondary);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.family-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary);
}

.family-info span {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

/* Final CTA */
.final-cta {
    background: var(--primary);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.cta-note {
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: #081d2f;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.footer-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-info i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    font-size: 0.9rem;
}

.footer-partners h4 {
    margin-bottom: 2rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partners-grid-compact span {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #cbd5e0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.legal-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    z-index: 1000;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-new {
        padding: 4rem 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-form-container {
        padding: 2rem 1.5rem;
    }

    .whatsapp-mobile-bar {
        display: block;
    }

    .whatsapp-float {
        bottom: 70px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero .container, .about, .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .btn-whatsapp {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-item {
        padding: 1.5rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partners-grid {
        gap: 2rem;
    }

    .partner-logo {
        font-size: 1.2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .partners-grid-compact {
        justify-content: center;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta h3 {
        font-size: 1.4rem;
    }
}
