:root {
    /* Color Palette */
    --primary-color: #4F7942;
    /* Sage Green */
    --secondary-color: #D1E2C4;
    /* Soft Sage */
    --accent-color: #C19A6B;
    /* Earthy Gold */
    --bg-color: #FDFDFD;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --section-padding: 100px 5%;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3e5f34;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 121, 66, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 10px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 5px 0;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Animated Background */
.bg-animated {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 600px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    animation: float-pulse 15s infinite ease-in-out;
}

.bg-animated img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes float-pulse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.1;
    }

    25% {
        transform: translate(-48%, -52%) rotate(2deg) scale(1.05);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -48%) rotate(0deg) scale(1.1);
        opacity: 0.1;
    }

    75% {
        transform: translate(-52%, -50%) rotate(-2deg) scale(1.05);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.1;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f7ee 0%, #ffffff 100%);
    padding-top: 230px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-about {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 70%;
    background-position: 0 92%;
    padding: 0 4px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.img-placeholder {
    width: 100%;
    height: 500px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: 'Hero Image Placeholder';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Services */
.bg-alt {
    background-color: #f9faf8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
}

/* Planes / Pricing Cards */
.plan-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 40px 30px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.2);
    background: var(--white);
}

.plan-card h3 {
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.plan-card h3 small {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    color: var(--text-light);
    font-family: var(--font-body);
}

.plan-price {
    text-align: center;
    margin: 20px 0 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-type {
    font-size: 0.9rem;
    color: var(--text-light);
}

.plan-includes {
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-list {
    margin: 0 0 30px;
}

.plan-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-left: 25px;
    font-weight: 400;
}

.plan-card .plan-btn {
    margin-top: auto;
    width: 100%;
}

/* Who its for section */
.who-its-for {
    background-color: var(--white);
    padding: var(--section-padding);
}

.who-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #f4f6eb;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(79, 121, 66, 0.05);
}

.who-text h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.need-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: default;
}

.need-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--accent-color);
}

.need-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--secondary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.need-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 500;
}

.mission-text {
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-color);
    font-weight: 500;
}

/* About */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
}

/* Footer */
footer {
    background: #e2ecd9;
    color: var(--text-color);
    padding: 40px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid #c8dcb3;
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.signature {
    margin-top: 8px;
    font-size: 0.75rem;
    opacity: 0.6;
    font-style: italic;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn .wa-icon {
    width: 22px;
    height: 22px;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2s infinite;
}

.floating-wa svg {
    width: 35px;
    height: 35px;
}

.floating-wa:hover {
    transform: scale(1.15);
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
    animation: none;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Navigation Improvement */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Image Decorative Elements */
.image-wrapper,
.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.social-links a:hover {
    background: var(--accent-color);
}

.social-links a svg {
    height: 18px;
    width: 18px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .hero-content,
    .about-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
    }

    .nav-logo,
    .footer-logo-img {
        height: 70px;
    }

    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }

    .nav-logo,
    .footer-logo-img {
        height: 55px;
    }

    .hero {
        padding-top: 100px;
    }

    .about-img {
        min-height: 300px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .about-wrapper {
        gap: 30px;
    }

    .footer-content {
        gap: 40px;
    }

    .faq-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card {
        padding: 30px 20px;
    }

    .who-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 5%;
    }

    .nav-logo,
    .footer-logo-img {
        height: 45px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .about-img {
        min-height: 250px;
    }

    .btn {
        padding: 12px 25px;
    }

    .whatsapp-btn span {
        font-size: 0.9rem;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-wa svg {
        width: 28px;
        height: 28px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}