/* ===== CSS Variables ===== */
:root {
    /* Colors from Logo */
    --primary-green: #2d5016;
    --accent-green: #4a7c2a;
    --bright-green: #7cb342;
    --lime-green: #aed581;
    --gold: #d4af37;
    --bg-color: #f5f7f0;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--lime-green) 0%, var(--bright-green) 50%, var(--accent-green) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(45, 80, 22, 0.8) 0%, rgba(45, 80, 22, 0.4) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto; /* Normal cursor visible */
}

/* Splash Cursor Container */
#splash-cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

#fluid-cursor {
    width: 100vw;
    height: 100vh;
    display: block;
}

/* Splash Screen */
body.splash-active {
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 50%, var(--bright-green) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    color: var(--white);
}

.splash-logo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.3) rotate(-180deg);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    animation: logo-reveal 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes logo-reveal {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
        filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    }
    50% {
        opacity: 0.9;
        transform: scale(1.15) rotate(10deg);
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

/* Logo Animation Elements */
.logo-eye {
    position: absolute;
    width: 120px;
    height: 80px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: eye-appear 1s ease-out 1s forwards;
}

.logo-eye-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-green);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: draw-outline 0.8s ease-out 1.2s forwards;
}

.logo-eye-iris {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--lime-green) 0%, var(--bright-green) 50%, var(--accent-green) 100%);
    border-radius: 50%;
    opacity: 0;
    animation: iris-fill 1s ease-out 2s forwards;
}

.logo-eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 40px;
    background: var(--primary-green);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0;
    animation: pupil-appear 0.5s ease-out 2.8s forwards;
}

.logo-eye-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: ring-expand 0.6s ease-out 2.2s forwards;
}

.logo-book {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 60px;
    background: linear-gradient(180deg, var(--lime-green) 0%, var(--accent-green) 100%);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    animation: book-open 1s ease-out 1.5s forwards;
}

.logo-leaves {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.logo-leaf {
    position: absolute;
    width: 30px;
    height: 40px;
    background: var(--bright-green);
    clip-path: ellipse(50% 50% at 50% 50%);
    opacity: 0;
}

.logo-leaf--1 {
    top: -10px;
    left: 20px;
    transform: rotate(-30deg);
    animation: leaf-grow 0.6s ease-out 2.5s forwards;
}

.logo-leaf--2 {
    top: 10px;
    right: 20px;
    transform: rotate(30deg);
    animation: leaf-grow 0.6s ease-out 2.7s forwards;
}

.logo-leaf--3 {
    top: 30px;
    left: 10px;
    transform: rotate(-45deg);
    animation: leaf-grow 0.6s ease-out 2.9s forwards;
}

@keyframes eye-appear {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes draw-outline {
    0% {
        opacity: 0;
        stroke-dasharray: 0 1000;
    }
    100% {
        opacity: 1;
        stroke-dasharray: 1000 0;
    }
}

@keyframes iris-fill {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes ring-expand {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pupil-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes book-open {
    0% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1);
    }
}

@keyframes leaf-grow {
    0% {
        opacity: 0;
        transform: scale(0) rotate(var(--rotation, 0deg));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(var(--rotation, 0deg));
    }
}

.splash-text {
    margin-top: 2rem;
    opacity: 0;
    animation: text-fade-in 1s ease-out 3s forwards;
}

.splash-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 3rem auto 0;
    overflow: hidden;
    opacity: 0;
    animation: loader-appear 0.5s ease-out 3.5s forwards;
}

.loader-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 0%;
    animation: loader-fill 2s ease-out 4s forwards;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@keyframes loader-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loader-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

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

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

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

.section__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section__subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.section__intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav.container {
    padding-left: 0;
    padding-right: 1rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-left: -15px;
    margin-right: auto;
    flex-shrink: 0;
    padding-left: 0;
    order: -1;
    white-space: nowrap;
}

.nav__logo .logo-img {
    height: 50px;
    width: auto;
}

.nav__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(90deg, 
        var(--lime-green) 0%, 
        var(--bright-green) 25%, 
        var(--accent-green) 50%, 
        var(--gold) 75%, 
        var(--bright-green) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav__menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-left: 3rem;
}

.nav__item {
    white-space: nowrap;
    flex-shrink: 0;
}

.nav__link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    line-height: 1.2;
    display: inline-block;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    white-space: nowrap;
    line-height: 1.2;
}

.nav__cta::after {
    display: none;
}

.nav__test {
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--bright-green) 100%);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.2;
    display: inline-block;
    opacity: 0.5;
    border: none;
    cursor: pointer;
}

.nav__test:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
    opacity: 0.75;
}

.nav__test.active {
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(124, 179, 66, 0.3);
    opacity: 0.65;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero__wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__content {
    color: var(--white);
    text-align: left;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Images Orbital Animation */
.hero__images {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__orbital {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.hero__orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    z-index: 2;
}

.hero__orbital-item {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--white);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.hero__orbital-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero__orbital-item:hover img {
    transform: scale(1.1);
}

.hero__orbital-item--1 {
    animation: orbital-rotate-1 20s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
}

.hero__orbital-item--2 {
    animation: orbital-rotate-2 20s linear infinite;
    transform: translate(-50%, -50%) rotate(120deg) translateX(150px) rotate(-120deg);
}

.hero__orbital-item--3 {
    animation: orbital-rotate-3 20s linear infinite;
    transform: translate(-50%, -50%) rotate(240deg) translateX(150px) rotate(-240deg);
}

@keyframes orbital-rotate-1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

@keyframes orbital-rotate-2 {
    0% {
        transform: translate(-50%, -50%) rotate(120deg) translateX(150px) rotate(-120deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(480deg) translateX(150px) rotate(-480deg);
    }
}

@keyframes orbital-rotate-3 {
    0% {
        transform: translate(-50%, -50%) rotate(240deg) translateX(150px) rotate(-240deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(600deg) translateX(150px) rotate(-600deg);
    }
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

/* ===== Why Me Section ===== */
.why-me {
    background: var(--bg-color);
}

.why-me__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.why-me__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
}

.why-me__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.why-me__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-green);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.why-me__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-card__icon svg {
    width: 40px;
    height: 40px;
}

.feature-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-card__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--bg-color);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--bright-green);
}

.feature-card__highlight {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    border-left: 4px solid var(--gold);
    border-radius: 5px;
}

.feature-card__highlight strong {
    color: var(--primary-green);
}

/* ===== Packages Section ===== */
.packages {
    background: var(--bg-color);
    padding: var(--section-padding);
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bright-green);
}

.package-card--popular {
    border: 3px solid var(--gold);
    transform: scale(1.05);
    z-index: 1;
}

.package-card--popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-card__popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-green);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.package-card__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-color);
}

.package-card__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.package-card__badge--green {
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--bright-green) 100%);
    color: var(--white);
}

.package-card__badge--blue {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: var(--white);
}

.package-card__badge--red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
}

.package-card__target {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.package-card__body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.package-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-card__feature {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--bg-color);
}

.package-card__feature:last-child {
    border-bottom: none;
}

.package-card__pricing {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
}

.package-card__price-old {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.package-card__price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.package-card__price-per {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-card__discount {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.5rem;
}

.package-card__note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

.package-card__footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.package-card__footer .btn {
    width: 100%;
    text-align: center;
}

/* ===== Services Section ===== */
.services {
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.service-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card__content {
    padding: 2rem;
}

.service-card__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-card__text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card__list {
    list-style: none;
}

.service-card__list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-green);
    font-weight: bold;
}

.service-card__level {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* ===== Process Section ===== */
.process {
    background: var(--bg-color);
    position: relative;
}

.process__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.process__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.process__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.process__timeline {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.process__step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    position: relative;
}

.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--gradient-primary);
    opacity: 0.3;
}

.process__number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.process__content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.process__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.process__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.process__details {
    list-style: none;
    margin-top: 1rem;
}

.process__details li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.process__details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: var(--bright-green);
    border-radius: 50%;
}

/* ===== Target Audience Section ===== */
.target-audience {
    background: var(--white);
    position: relative;
}

.target-audience__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.target-audience__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
}

.target-audience__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
}

.target-audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.audience-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: var(--bright-green);
    box-shadow: var(--shadow-lg);
}

.audience-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.audience-card__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.audience-card__list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.audience-card__list li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.audience-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-green);
    font-weight: bold;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--bg-color);
    position: relative;
}

.testimonials__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.testimonials__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
}

.testimonials__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.testimonials__slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial__stars {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.testimonial__text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial__name {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.testimonial__location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial__prev,
.testimonial__next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--bright-green);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__prev:hover,
.testimonial__next:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.testimonials__dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bright-green);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials__dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== About Section ===== */
.about {
    background: var(--white);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__image {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: fit-content;
    align-self: start;
}

.about__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    height: auto;
    min-height: 400px;
}

.about__image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform-origin: center;
    will-change: transform, opacity;
    filter: brightness(1);
}

.about__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 50%, 
        rgba(245, 247, 240, 0.05) 70%, 
        rgba(245, 247, 240, 0.15) 80%, 
        rgba(245, 247, 240, 0.4) 90%, 
        rgba(245, 247, 240, 0.7) 95%, 
        var(--bg-color) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
    opacity: 0.8;
}

@keyframes imageReveal {
    0% {
        opacity: 0;
        transform: scale(1.05) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.about__text {
    padding: 2rem 0;
}

.about__description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about__certificates {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.certificate-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.certificate-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.certificate-badge__icon {
    font-size: 1.5rem;
}

.certificate-badge__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.certificate-badge__text {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
}

.certificate-badge__subtext {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.about__philosophy {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.about__philosophy-title {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.about__philosophy-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.about__philosophy-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--gold);
    font-family: serif;
    opacity: 0.3;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-color);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq__item.active {
    box-shadow: var(--shadow-md);
}

.faq__question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--bg-color);
}

.faq__question h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin: 0;
}

.faq__icon {
    font-size: 1.5rem;
    color: var(--bright-green);
    font-weight: 300;
    transition: var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 50%, var(--gold) 100%);
    opacity: 0.1;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta__text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

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

.contact__cubes {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cubes-animation {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact__item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.contact__icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.contact__details a,
.contact__details p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact__details a:hover {
    color: var(--bright-green);
}

/* ===== Cubes Animation ===== */
.cubes-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-width: 500px;
    margin: 0 auto;
    background: transparent;
    overflow: visible;
}

.cubes-scene {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 500px;
    column-gap: 5%;
    row-gap: 5%;
    perspective: 99999999px;
    grid-auto-rows: 1fr;
    position: relative;
}

.cubes-scene {
    display: grid;
    width: 100%;
    height: 100%;
    column-gap: 5%;
    row-gap: 5%;
    perspective: 99999999px;
    grid-auto-rows: 1fr;
}

.cube {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    transform-style: preserve-3d;
    min-width: 20px;
    min-height: 20px;
}

.cube::before {
    content: '';
    position: absolute;
    top: -36px;
    right: -36px;
    bottom: -36px;
    left: -36px;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cube-face-bg, #f5f7f0);
    border: var(--cube-face-border, 2px dashed #7cb342);
    opacity: 1;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
}

.cube-face--top {
    transform: translateY(-50%) rotateX(90deg);
}

.cube-face--bottom {
    transform: translateY(50%) rotateX(-90deg);
}

.cube-face--left {
    transform: translateX(-50%) rotateY(-90deg);
}

.cube-face--right {
    transform: translateX(50%) rotateY(90deg);
}

.cube-face--back,
.cube-face--front {
    transform: rotateY(-90deg) translateX(50%) rotateY(90deg);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer__logo .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer__text {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
