/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== VARIABLES CSS ===== */
:root {
    --header-height: 4rem;
    
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-color: #e5e7eb;
    --text-light: #9ca3af;
    --bg-color: #0f172a;
    --bg-light: #1e293b;
    --bg-card: #1e293b;
    --white: #ffffff;
    
    /* Font and typography */
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    
    /* 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;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (max-width: 968px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
    }
}

/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--white);
    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;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section__title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-1);
}

.section__description {
    color: var(--text-light);
    margin-bottom: var(--mb-2);
    font-size: 1.1rem;
}

.center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: var(--z-fixed);
    transition: all 0.3s ease;
}

.header.scroll-header {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--white);
}

.nav__logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav__logo strong {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding-top: var(--header-height);
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__title {
    font-size: var(--biggest-font-size);
    margin-bottom: var(--mb-1-5);
    line-height: 1.2;
}

.hero__description {
    color: var(--text-light);
    margin-bottom: var(--mb-2);
    font-size: 1.1rem;
}

.hero__image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__phone {
    font-size: 15rem;
    color: var(--primary-color);
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 2s;
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 10s linear infinite;
}

/* ===== MARQUEE ===== */
.marquee {
    background: rgba(99, 102, 241, 0.1);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.marquee__content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    white-space: nowrap;
    font-weight: var(--font-semi-bold);
    color: var(--white);
}

.marquee__item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===== FEATURES SECTION ===== */
.features__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: var(--mb-2);
}

.feature__item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature__item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.feature__icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.feature__text h3 {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
}

.feature__text p {
    color: var(--text-light);
}

.features__video {
    position: relative;
}

.video__wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.video__placeholder {
    text-align: center;
}

.video__placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== SERVER FEATURES ===== */
.server-features {
    background: var(--bg-light);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: var(--mb-3);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    background: var(--primary-color);
}

.badge i {
    color: var(--primary-color);
}

.badge:hover i {
    color: var(--white);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.info-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--mb-1-5);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.info-card h3 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.info-card p {
    color: var(--text-light);
}

/* ===== PLANS SECTION ===== */
.plans {
    background: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.plan-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.plan-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.plan-card__badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
}

.plan-card__header h3 {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1);
}

.plan-card__price {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--mb-2);
}

.plan-card__price .currency {
    font-size: var(--h3-font-size);
    margin-top: 0.5rem;
}

.plan-card__price .value {
    font-size: 4rem;
    font-weight: var(--font-extra-bold);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-card__price .period {
    color: var(--text-light);
    margin-top: 1.5rem;
}

.plan-card__features {
    margin-bottom: var(--mb-2);
}

.plan-card__features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.plan-card__features i {
    color: var(--primary-color);
}

/* ===== RESELLER SECTION ===== */
.reseller {
    background: var(--bg-color);
}

.reseller__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reseller__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: var(--mb-2) 0;
}

.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.benefit h4 {
    font-size: var(--h3-font-size);
    margin-bottom: 0.25rem;
}

.benefit p {
    color: var(--text-light);
}

.reseller__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.footer__logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer__logo strong {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer__section h4 {
    margin-bottom: 1rem;
    font-size: var(--h3-font-size);
}

.footer__section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__section a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer__section a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__section li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.footer__section li i {
    color: var(--primary-color);
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.footer__social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-light);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: var(--z-tooltip);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: var(--z-tooltip);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-text {
    font-weight: var(--font-semi-bold);
    font-size: 1rem;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
[data-animate="fade"] {
    animation: fadeInUp 0.8s ease forwards;
}

[data-animate="left"] {
    animation: fadeInLeft 0.8s ease forwards;
}

[data-animate="right"] {
    animation: fadeInRight 0.8s ease forwards;
}

[data-animate="scale"] {
    animation: scaleIn 0.8s ease forwards;
}

/* ===== PAGES STYLES ===== */
.page-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
}

.page-header {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-2);
    transition: all 0.3s ease;
}

.back-link:hover {
    gap: 1rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.help-category {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.help-category:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.help-category__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.help-category h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: var(--h3-font-size);
}

.help-list {
    list-style: none;
}

.help-list li {
    margin-bottom: 0.75rem;
}

.help-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.help-list a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding-left: 1rem;
}

.help-list i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.help-contact {
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.help-contact__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.help-contact__content i {
    font-size: 3rem;
    color: var(--primary-color);
}

.help-contact__content div {
    flex: 1;
}

.help-contact__content h3 {
    margin-bottom: 0.5rem;
}

.help-contact__content p {
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        padding: 4rem 2rem;
        transition: right 0.3s ease;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .hero__content,
    .features__content,
    .reseller__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__image-wrapper {
        height: 400px;
    }

    .cards-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .reseller__stats {
        grid-template-columns: 1fr;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-contact__content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding-top: calc(var(--header-height) + 2rem);
    }

    .hero__phone {
        font-size: 10rem;
    }

    .floating-card {
        padding: 0.75rem 1rem;
        font-size: var(--small-font-size);
    }

    .badges {
        gap: 0.75rem;
    }

    .badge {
        padding: 0.75rem 1.5rem;
        font-size: var(--small-font-size);
    }

    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }

    .whatsapp-text {
        font-size: var(--small-font-size);
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .help-contact__content {
        padding: 1.5rem;
    }
}

