:root {
    --gv-primary: #1b7340;
    --gv-bg: #60a977;
    --gv-mint: #b3d9b5;
    --gv-accent: #3cb09c;
    --gv-lime: #88cf91;
    --gv-dark: #0f3d24;
    --bs-primary: #1b7340;
    --bs-success: #3cb09c;
    --bs-body-font-family: "DM Sans", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--gv-dark);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--gv-accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.navbar-gv {
    background: var(--gv-primary) !important;
}

.navbar-gv .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-gv .nav-link:hover,
.navbar-gv .nav-link:focus {
    color: #fff !important;
}

.btn-accent {
    background: linear-gradient(135deg, var(--gv-accent), var(--gv-lime));
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
    background: linear-gradient(135deg, #35a08d, #7bc486);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #1ebe57;
    color: #fff;
}

.hero-section {
    background: linear-gradient(160deg, var(--gv-bg) 0%, var(--gv-mint) 45%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -20%;
    width: 70%;
    height: 80%;
    background: var(--gv-primary);
    opacity: 0.12;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.section-mint {
    background: var(--gv-mint);
}

.section-white {
    background: #fff;
}

.benefit-card {
    border: none;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0.25rem 1rem rgba(27, 115, 64, 0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(27, 115, 64, 0.12);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gv-accent), var(--gv-lime));
    color: #fff;
    font-size: 1.35rem;
}

.plan-card {
    border: 2px solid var(--gv-primary);
    border-radius: 1.25rem;
    overflow: hidden;
}

.plan-card-header {
    background: var(--gv-primary);
    color: #fff;
}

.plan-price {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gv-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-section {
    background: linear-gradient(180deg, #fff 0%, var(--gv-mint) 100%);
}

.footer-gv {
    background: var(--gv-primary);
    color: rgba(255, 255, 255, 0.9);
}

.footer-gv a {
    color: #fff;
}

.whatsapp-float {
    z-index: 1040;
    bottom: 1rem;
    right: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.form-control:focus,
.form-check-input:focus {
    border-color: var(--gv-accent);
    box-shadow: 0 0 0 0.2rem rgba(60, 176, 156, 0.25);
}

.logo-hero {
    max-width: 140px;
    height: auto;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .logo-hero {
        max-width: 180px;
    }
}
