:root {
    /* Color Palette */
    --primary: #2d5a47;
    /* Deep Forest Green */
    --primary-light: #447a61;
    --secondary: #d4a373;
    /* Warm Sand */
    --accent: #e9edc9;
    --bg-main: #fcfcf9;
    --bg-soft: #f4f5f0;
    --text-main: #1a1a1a;
    --text-muted: #5c5c5c;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Instrument Serif', serif;

    /* Spacing & Misc */
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 600;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* .container-sm {
    max-width: 800px;
} */

/* Utilities */
.tag {
    display: inline-block;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 90, 71, 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #c39263;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}


/* Animations */
.reveal,
.fade-in,
.philo-card,
.price-card,
.step-item,
.compare-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition);
}

.reveal.active,
.fade-in.active,
.philo-card.active,
.price-card.active,
.step-item.active,
.compare-card.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s var(--transition);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Staggered Resource Cards Animation */
.resource-card {
    opacity: 0;
    translate: 0 30px;
    transition: translate 0.6s var(--transition), opacity 0.6s var(--transition), transform 0.3s var(--transition), box-shadow 0.3s var(--transition), border-color 0.3s var(--transition);
}

.resource-card.active {
    opacity: 1;
    translate: 0 0;
}

/* Staggered Delay for Resource Cards - Only for reveal properties */
.resource-card:nth-child(1) {
    transition-delay: 0.1s, 0.1s, 0s, 0s, 0s;
}

.resource-card:nth-child(2) {
    transition-delay: 0.2s, 0.2s, 0s, 0s, 0s;
}

.resource-card:nth-child(3) {
    transition-delay: 0.3s, 0.3s, 0s, 0s, 0s;
}

.resource-card:nth-child(4) {
    transition-delay: 0.4s, 0.4s, 0s, 0s, 0s;
}

.resource-card:nth-child(5) {
    transition-delay: 0.1s, 0.1s, 0s, 0s, 0s;
}

.resource-card:nth-child(6) {
    transition-delay: 0.2s, 0.2s, 0s, 0s, 0s;
}

.resource-card:nth-child(7) {
    transition-delay: 0.3s, 0.3s, 0s, 0s, 0s;
}

.resource-card:nth-child(8) {
    transition-delay: 0.4s, 0.4s, 0s, 0s, 0s;
}

.resource-card:nth-child(9) {
    transition-delay: 0.1s, 0.1s, 0s, 0s, 0s;
}

.resource-card:nth-child(10) {
    transition-delay: 0.2s, 0.2s, 0s, 0s, 0s;
}

.resource-card:nth-child(11) {
    transition-delay: 0.3s, 0.3s, 0s, 0s, 0s;
}

.resource-card:nth-child(12) {
    transition-delay: 0.4s, 0.4s, 0s, 0s, 0s;
}

/* Navigation */
/* Navigation Overrides for Topbar Component */
.tp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: all 0.4s var(--transition);
    font-family: var(--font-body);
}

.tp-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.tp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: all 0.4s var(--transition);
}

.tp-header.scrolled .tp-container {
    height: 70px;
}

.tp-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.tp-logo .logo-dot {
    color: var(--secondary);
}

.tp-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.tp-nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    text-decoration: none;
    transition: all 0.3s var(--transition);
}

.tp-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s var(--transition);
}

.tp-nav-link:hover {
    color: var(--primary);
}

.tp-nav-link:hover::after {
    width: 100%;
}

.tp-nav-btn {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    z-index: 1;
}

/* .hero-content {
    max-width: 800px;
} */

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
}

.hero h1 span {
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-trust i {
    color: var(--primary);
    font-size: 0.9rem;
}

.hero-image-wrapper {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 45%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-floating-card {
    position: absolute;
    bottom: 10%;
    left: -10%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floating 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 1.5rem;
    color: #e76f51;
}

.hero-floating-card strong {
    display: block;
    font-size: 1.1rem;
}

.hero-floating-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    background: var(--bg-soft);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-text .lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.quote-box {
    margin-top: 3rem;
    padding-left: 2rem;
    border-left: 4px solid var(--secondary);
}

.quote-box blockquote {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
}

.philosophy-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.philo-card {
    padding: 2.5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.compare-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.compare-card.jealous {
    background: #f8f8f8;
    color: #666;
}

.compare-card.superior {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(45, 90, 71, 0.15);
}

.card-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    display: block;
    opacity: 0.7;
}

.compare-list {
    list-style: none;
}

.compare-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.compare-list i {
    margin-top: 0.3rem;
}

.jealous i {
    color: #d62828;
}

.superior i {
    color: var(--accent);
}

/* Method Section */
.method {
    padding: 120px 0;
}

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

.step-item {
    position: relative;
    padding: 2.5rem;
}

.step-number {
    font-family: var(--font-accent);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.5;
    position: absolute;
    top: -2rem;
    left: 1rem;
    z-index: -1;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-item p {
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--bg-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
}

.price-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--transition);
}

.price-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    position: relative;
    border-color: var(--primary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-header h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.price span {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.6;
}

.price-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.price-features i {
    color: var(--primary-light);
    margin-top: 0.3rem;
}

/* Audience Section */
.audience {
    padding: 120px 0;
    position: relative;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 245, 240, 0.85) 100%),
        url('assets/audience-bg-consultorio.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.audience-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s var(--transition);
}

.audience-item:hover {
    transform: translateX(10px);
    background: var(--accent);
}

.audience-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.audience-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.audience-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.audience-footer strong {
    color: var(--primary);
}

/* Resources Grid Section */
.resources {
    background: var(--white);
    padding: 120px 0;
}

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

.resource-card {
    background: var(--bg-soft);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.resource-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-disclaimer {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA Simplified & Professional */
.final-cta {
    padding: 120px 0;
    position: relative;
    background-image:
        linear-gradient(135deg, rgba(45, 90, 71, 0.95), rgba(68, 122, 97, 0.85)),
        url('assets/cta-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-simple-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-simple-box p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: #1a1a1a;
    color: var(--white);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-info p {
    max-width: 300px;
    opacity: 0.6;
}

.footer-info-small {
    font-size: 0.85rem;
    opacity: 0.4;
    margin-top: 0.3rem;
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-contact a {
    color: var(--secondary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    text-align: right;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.4;
}

/* Widgets */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Mobile Toggle Style */
/* Mobile Toggle Style for Topbar Component */
.tp-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.tp-hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    margin: 0;
    /* Override component margin */
    transition: all 0.3s var(--transition);
}

.tp-mobile-toggle.is-active .tp-hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.tp-mobile-toggle.is-active .tp-hamburger-line:nth-child(2) {
    opacity: 0;
}

.tp-mobile-toggle.is-active .tp-hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image-wrapper {
        /* display: none; */
        width: 100%;
        right: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 960px) {
    .price-header h3 {
        text-align: center;
    }

    .price {
        font-size: 2.7rem;
        text-align: center;
    }

    .tp-mobile-toggle {
        display: flex;
    }

    .tp-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        padding: 4rem 2rem !important;
        transition: all 0.5s var(--transition);
        z-index: 1000;
        display: flex;
        overflow: hidden;
        box-shadow: none;
    }

    .tp-nav.is-active {
        left: 0;
        height: 100vh;
    }

    .tp-nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--primary);
        border-bottom: none;
        padding: 0;
        width: auto;
    }

    .tp-nav-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-actions .btn {
        display: none;
    }

    .nav-actions {
        gap: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-info p {
        max-width: 100%;
    }

    .footer-links {
        text-align: left;
    }
}