/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Acolher Brand Colors */
    --tree-green: hsl(165, 34%, 27%);
    --tree-green-dark: hsl(165, 40%, 20%);
    --light-beige: hsl(36, 25%, 96%);
    --soft-gray-green: hsl(150, 6%, 77%);
    --pure-white: hsl(0, 0%, 100%);
    --charcoal: hsl(0, 0%, 20%);
    
    /* Semantic Tokens */
    --background: var(--light-beige);
    --foreground: var(--charcoal);
    --card: var(--pure-white);
    --card-foreground: var(--charcoal);
    --primary: var(--tree-green);
    --primary-foreground: var(--pure-white);
    --secondary: var(--soft-gray-green);
    --secondary-foreground: var(--charcoal);
    --border: var(--soft-gray-green);
    
    /* Custom gradients */
    --gradient-nature: linear-gradient(135deg, var(--tree-green) 0%, var(--tree-green-dark) 100%);
    --gradient-soft: linear-gradient(180deg, var(--pure-white) 0%, var(--light-beige) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.8) 30%, rgba(76, 123, 100, 0.1) 70%, rgba(255, 255, 255, 0.9) 100%);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --card-padding: 2rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Nunito', 'Inter', -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--foreground);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--tree-green-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(76, 123, 100, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled .nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    width: 130px;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .logo-img {
        width: 180px;
    }
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--foreground);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background-color: rgba(76, 123, 100, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section - New Design */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

/* Left Content */
.hero-content-left {
    animation: fadeInUp 0.8s ease-out;
    margin-top: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(76, 123, 100, 0.1) 0%, rgba(76, 123, 100, 0.05) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(76, 123, 100, 0.2);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.badge-icon {
    font-size: 1.125rem;
}

.hero-title-new {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-title-new {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-new {
        font-size: 4.5rem;
    }
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--tree-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(51, 51, 51, 0.7);
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--tree-green-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(76, 123, 100, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 123, 100, 0.4);
}

.btn-hero-primary svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 3rem;
    border: 2px solid var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-hero-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
}


/* Right Content */
.hero-content-right {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image-container {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

@media (min-width: 1024px) {
    .hero-image-container {
        min-height: 500px;
    }
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
    min-width: 200px;
}

.card-1 {
    top: 8%;
    right: -8%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -12%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -3%;
    animation-delay: 2s;
}

@media (max-width: 1023px) {
    .floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
    }
}

.card-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 123, 100, 0.1);
    border-radius: 0.75rem;
}

.card-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.8rem;
    color: rgba(51, 51, 51, 0.6);
}


/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 123, 100, 0.1) 0%, rgba(76, 123, 100, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(76, 123, 100, 0.05) 100%);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .hero-new {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/hero-family.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
}

@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.8) 30%,
        rgba(76, 123, 100, 0.1) 70%,
        rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 6rem 1rem 4rem;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 8rem 2rem 6rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 10rem 0 8rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-balance: balance;
    line-height: 1.1;
    font-weight: 400;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: rgba(51, 51, 51, 0.85);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-balance: balance;
    line-height: 1.7;
}

@media (min-width: 480px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
    }
}

.hero-highlight {
    font-weight: 600;
    color: var(--primary);
}

.hero-cta {
    padding-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}
.section-title2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.7);
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(51, 51, 51, 0.8);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(76, 123, 100, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(76, 123, 100, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.7);
    font-weight: 500;
}

/* About Images */
.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    z-index: 2;
}

.about-img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(76, 123, 100, 0.15);
}

.about-image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 40%;
    z-index: 3;
}

.about-img-small {
    width: 100%;
    border-radius: 1rem;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .about-image-secondary {
        position: static;
        width: 60%;
        margin: 1rem auto 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--card);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(145deg, var(--background) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(76, 123, 100, 0.08);
    transition: var(--transition-smooth);
    animation: slideUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--tree-green-dark) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: 0 20px 40px -10px rgba(76, 123, 100, 0.15);
    transform: translateY(-8px);
    border-color: rgba(76, 123, 100, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(76, 123, 100, 0.1) 0%, rgba(76, 123, 100, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--tree-green-dark));
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover .service-icon::before {
    opacity: 0.1;
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    color: var(--tree-green-dark);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(51, 51, 51, 0.7);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: var(--section-padding);
    background: var(--gradient-soft);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    animation: slideUp 0.6s ease-out;
}

.benefit-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(76, 123, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.benefit-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

.why-choose-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--card);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, var(--background) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(76, 123, 100, 0.1);
    transition: var(--transition-smooth);
    animation: slideUp 0.6s ease-out;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 123, 100, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(51, 51, 51, 0.8);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(76, 123, 100, 0.1);
}

.testimonial-name {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
}

/* Plans Section */
.plans {
    padding: var(--section-padding);
    background-color: var(--card);
}

.plan-card {
    max-width: 36rem;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(76, 123, 100, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    border: 2px solid rgba(76, 123, 100, 0.1);
    animation: slideUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 123, 100, 0.1);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--tree-green-dark) 50%, var(--primary) 100%);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .price-value {
        font-size: 4rem;
    }
}

.price-period {
    font-size: 1.5rem;
    color: rgba(51, 51, 51, 0.7);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-features {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-text {
    color: rgba(51, 51, 51, 0.8);
}

.feature-highlight {
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--gradient-soft);
}

.contact-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    animation: slideUp 0.6s ease-out;
}

.contact-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(76, 123, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: rgba(51, 51, 51, 0.7);
    word-break: break-all;
}

.contact-link:hover {
    color: var(--primary);
}

.whatsapp-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--pure-white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Utility Classes */
.text-balance {
    text-wrap: balance;
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(76, 123, 100, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(76, 123, 100, 0.1);
        transition: var(--transition-smooth);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        padding-left: 1rem;
        background-color: rgba(76, 123, 100, 0.05);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.contact-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
