/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 4rem;

    /*========== Colors ==========*/
    --primary-color: #12bc00;
    --primary-color-dark: #0e9a00;
    --primary-color-light: #4dd83d;
    --secondary-color: #4f585f;
    --secondary-color-dark: #3d454b;
    --section-bg-color: #f0f8ff;
    --footer-bg-color: #44525d;
    --white-color: #ffffff;
    --dark-color: #0f172a;
    --text-color: #475569;
    --text-color-light: #94a3b8;
    --border-color: #e2e8f0;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #00d4aa 100%);
    --gradient-dark: linear-gradient(135deg, var(--secondary-color) 0%, var(--footer-bg-color) 100%);

    /*========== Font and typography ==========*/
    --body-font: 'Inter', sans-serif;
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --h4-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    /*========== Font weight ==========*/
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;

    /*========== Margins ==========*/
    --mb-0-5: 0.5rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    --mb-4: 4rem;

    /*========== Border radius ==========*/
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-full: 100px;

    /*========== Shadows ==========*/
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(18, 188, 0, 0.3);

    /*========== Transitions ==========*/
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /*========== Z-index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (max-width: 992px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--dark-color);
    font-weight: var(--font-bold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--body-font);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section--bg {
    background-color: var(--section-bg-color);
}

.section--dark {
    background: var(--gradient-dark);
}

.section__header {
    max-width: 600px;
    margin-bottom: var(--mb-4);
}

.section__header--center {
    text-align: center;
    margin: 0 auto var(--mb-4) auto;
}

.section__subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--mb-0-5);
}

.section__subtitle--light {
    color: var(--primary-color-light);
}

.section__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
}

.section__title--light {
    color: var(--white-color);
}

.section__description {
    color: var(--text-color);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*=============== BUTTONS ===============*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-full);
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--block {
    width: 100%;
}

.btn--whatsapp {
    background: #25d366;
    color: var(--white-color);
    padding: 0.625rem 1.25rem;
    font-size: var(--small-font-size);
}

.btn--whatsapp:hover {
    background: #128c7e;
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-fixed);
    transition: var(--transition-normal);
}

.header--scroll {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: var(--secondary-color);
    font-weight: var(--font-medium);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/*=============== HERO ===============*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(18, 188, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 300px;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-height) + 2rem);
}

.hero__badge {
    display: inline-block;
    background: rgba(18, 188, 0, 0.15);
    color: var(--primary-color-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-1-5);
    border: 1px solid rgba(18, 188, 0, 0.3);
}

.hero__title {
    font-size: var(--biggest-font-size);
    color: var(--white-color);
    margin-bottom: var(--mb-1-5);
    line-height: 1.1;
}

.hero__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: var(--mb-2-5);
}

.hero__description strong {
    color: var(--white-color);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--mb-4);
}

.hero__stats {
    display: flex;
    gap: 3rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: var(--h2-font-size);
    font-weight: var(--font-extra-bold);
    color: var(--primary-color);
}

.hero__stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--small-font-size);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: var(--transition-normal);
}

.hero__scroll-link:hover {
    background: var(--primary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/*=============== SERVICES ===============*/
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: var(--section-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.service-card:hover .service-card__icon {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: scale(1.1);
}

.service-card__title {
    font-size: var(--h4-font-size);
    margin-bottom: var(--mb-1);
}

.service-card__description {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: var(--mb-1-5);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size);
}

.service-card__link i {
    transition: var(--transition-fast);
}

.service-card__link:hover i {
    transform: translateX(4px);
}

/*=============== ABOUT ===============*/
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    color: var(--text-color);
    margin-bottom: var(--mb-1-5);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: var(--mb-2) 0;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-color);
    font-weight: var(--font-medium);
}

.about__feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about__image-wrapper {
    position: relative;
}

.about__image-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about__image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="80" r="15" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="25" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.about__image-badge {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}

.about__image-badge-number {
    display: block;
    font-size: 4rem;
    font-weight: var(--font-extra-bold);
    line-height: 1;
}

.about__image-badge-text {
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
}

/*=============== PROMOTIONS ===============*/
.promotions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.promo-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.promo-card--featured {
    background: var(--gradient-dark);
    color: var(--white-color);
}

.promo-card--featured .promo-card__title,
.promo-card--featured .promo-card__description {
    color: var(--white-color);
}

.promo-card--featured .promo-card__description {
    opacity: 0.8;
}

.promo-card__badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
}

.promo-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(18, 188, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
    font-size: 1.75rem;
    color: var(--primary-color);
}

.promo-card--featured .promo-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color-light);
}

.promo-card__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.promo-card__description {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: var(--mb-2);
}

/*=============== BENEFITS ===============*/
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit {
    text-align: center;
}

.benefit__icon {
    width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.benefit:hover .benefit__icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.benefit__title {
    font-size: var(--h4-font-size);
    margin-bottom: var(--mb-0-5);
}

.benefit__text {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

/*=============== PAYMENTS ===============*/
.payments__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.payment-card {
    background: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    min-width: 150px;
    transition: var(--transition-normal);
}

.payment-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.payment-card__icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
}

.payment-card__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.payment-card__text {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

/*=============== CONTACT ===============*/
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--mb-2);
}

.contact__details {
    margin-bottom: var(--mb-2);
}

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--mb-1-5);
    color: var(--white-color);
}

.contact__item i {
    font-size: 1.25rem;
    color: var(--primary-color-light);
    margin-top: 0.25rem;
}

.contact__item h4 {
    color: var(--white-color);
    font-size: var(--normal-font-size);
    margin-bottom: 0.25rem;
}

.contact__item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
}

.contact__social {
    display: flex;
    gap: 1rem;
}

.contact__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.contact__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact__form-wrapper {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.contact__form-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-2);
    text-align: center;
}

.form__group {
    margin-bottom: var(--mb-1-5);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__label {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 188, 0, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/*=============== MAP ===============*/
.map {
    width: 100%;
    height: 400px;
    background: var(--section-bg-color);
}

.map iframe {
    width: 100%;
    height: 100%;
}

/*=============== FOOTER ===============*/
.footer {
    background: var(--footer-bg-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: var(--mb-3);
}

.footer__logo {
    height: 40px;
    margin-bottom: var(--mb-1);
    filter: brightness(0) invert(1);
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1-5);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: var(--transition-normal);
}

.footer__social a:hover {
    background: var(--primary-color);
}

.footer__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1-5);
    color: var(--white-color);
}

.footer__links ul li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--primary-color-light);
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
    margin-bottom: 0.75rem;
}

.footer__contact i {
    color: var(--primary-color-light);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--mb-2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--small-font-size);
}

/*=============== WHATSAPP FLOAT ===============*/
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-tooltip);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image-wrapper {
        order: -1;
    }

    .about__image-card {
        height: 300px;
    }

    .promotions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white-color);
        box-shadow: var(--shadow-xl);
        padding: 5rem 2rem;
        transition: var(--transition-normal);
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .nav__toggle {
        display: block;
    }

    .btn--whatsapp span {
        display: none;
    }

    .hero__stats {
        gap: 2rem;
    }

    .hero__stat-number {
        font-size: var(--h3-font-size);
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .promotions__grid {
        grid-template-columns: 1fr;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .hero__stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }
}

/*=============== SCROLLBAR ===============*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--section-bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/*=============== SELECTION ===============*/
::selection {
    background: var(--primary-color);
    color: var(--white-color);
}

/*=============== LANDING PAGE SPECIFIC ===============*/

/* Minimal Header */
.header--minimal {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.header--minimal .btn--whatsapp {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
}

.header--minimal .btn--whatsapp:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--mb-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge__stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

.trust-badge__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--small-font-size);
}

/* Hero Landing Grid */
.hero--landing {
    padding: calc(var(--header-height) + 3rem) 0 4rem;
    min-height: auto;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__benefits {
    list-style: none;
    margin-bottom: var(--mb-2);
}

.hero__benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: var(--normal-font-size);
}

.hero__benefits i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.btn--cta {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(18, 188, 0, 0.3);
    }

    to {
        box-shadow: 0 0 30px rgba(18, 188, 0, 0.6);
    }
}

.hero__cta-hint {
    margin-top: var(--mb-1);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--small-font-size);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Form */
.hero__form-wrapper {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(18, 188, 0, 0.2);
}

.hero__form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--mb-2);
}

.hero__form-header h3 {
    font-size: var(--h3-font-size);
    color: var(--dark-color);
}

.form-badge {
    background: rgba(18, 188, 0, 0.1);
    color: var(--primary-color);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
}

.form__select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: var(--transition-fast);
    cursor: pointer;
    appearance: none;
    background: var(--white-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234f585f' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 1rem center;
}

.form__select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 188, 0, 0.1);
}

.form__disclaimer {
    text-align: center;
    margin-top: var(--mb-1);
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form__disclaimer i {
    color: var(--primary-color);
}

/* Brands Section */
.brands {
    background: var(--white-color);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.brands__text {
    text-align: center;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1-5);
}

.brands__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.brand-logo {
    font-size: var(--h4-font-size);
    font-weight: var(--font-bold);
    color: var(--text-color-light);
    opacity: 0.5;
    transition: var(--transition-normal);
    letter-spacing: 1px;
}

.brand-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Value Propositions */
.value-props__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-prop {
    text-align: center;
    padding: 2rem;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.value-prop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-prop__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
    font-size: 2rem;
    color: var(--white-color);
}

.value-prop__title {
    font-size: var(--h4-font-size);
    margin-bottom: var(--mb-1);
}

.value-prop__text {
    color: var(--text-color);
    font-size: var(--small-font-size);
    line-height: 1.7;
}

/* Steps Section */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
    font-size: var(--h3-font-size);
    font-weight: var(--font-extra-bold);
    color: var(--white-color);
}

.step__title {
    font-size: var(--h4-font-size);
    margin-bottom: var(--mb-0-5);
}

.step__text {
    color: var(--text-color);
    font-size: var(--small-font-size);
}

.step__arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
}

.steps__cta {
    text-align: center;
    margin-top: var(--mb-3);
}

/* Testimonials */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.testimonial:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial__stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: var(--mb-1);
    letter-spacing: 2px;
}

.testimonial__text {
    color: var(--text-color);
    font-size: var(--normal-font-size);
    line-height: 1.7;
    margin-bottom: var(--mb-1-5);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: var(--font-bold);
    font-size: var(--normal-font-size);
}

.testimonial__author strong {
    display: block;
    color: var(--dark-color);
    font-size: var(--small-font-size);
}

.testimonial__author span {
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
}

/* Offer Section */
.offer {
    text-align: center;
}

.offer__content {
    max-width: 700px;
    margin: 0 auto;
}

.offer__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1-5);
}

.offer__title {
    font-size: var(--h1-font-size);
    color: var(--white-color);
    margin-bottom: var(--mb-1);
}

.offer__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--mb-2);
}

/* FAQ Section */
.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq__question {
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.faq__answer {
    color: var(--text-color);
    font-size: var(--small-font-size);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.final-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
}

.final-cta__text {
    color: var(--text-color);
    margin-bottom: var(--mb-2);
}

.final-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--mb-2);
}

.final-cta__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.final-cta__trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.final-cta__trust i {
    color: var(--primary-color);
}

/* Footer Minimal */
.footer--minimal {
    padding: 2rem 0 1rem;
}

.footer--minimal .footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.footer--minimal .footer__info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer--minimal .footer__info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
}

.footer--minimal .footer__logo {
    height: 36px;
    margin-bottom: 0;
}

/*=============== LANDING PAGE RESPONSIVE ===============*/
@media screen and (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__content {
        text-align: center;
    }

    .hero__benefits {
        display: inline-block;
        text-align: left;
    }

    .hero__cta-hint {
        justify-content: center;
    }

    .value-props__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step__arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero--landing {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }

    .trust-badge {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .brands__logos {
        gap: 1.5rem;
    }

    .brand-logo {
        font-size: var(--normal-font-size);
    }

    .footer--minimal .footer__content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer--minimal .footer__info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero__form-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .final-cta__buttons {
        flex-direction: column;
    }

    .final-cta__trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}