/* =============================================
   VARIÁVEIS CSS
   ============================================= */
:root {
    --primary-color: #0582ff;
    --primary-dark: #0066cc;
    --secondary-color: #00c853;
    --accent-color: #ff6b00;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --bronze: #cd7f32;
    --prata: #c0c0c0;
    --ouro: #ffffff;
    --diamante: #00eeff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

/* =============================================
   RESET E BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #00a844;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--ouro);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--ouro);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* =============================================
   PLANOS SECTION
   ============================================= */
.planos {
    padding: 100px 0;
    background: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.plano-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plano-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plano-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plano-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 20px;
}

.plano-badge.bronze {
    background: var(--bronze);
}

.plano-badge.prata {
    background: linear-gradient(135deg, #c0c0c0, #8a8a8a);
}

.plano-badge.ouro {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: var(--text-color);
}

.plano-badge.diamante {
    background: linear-gradient(135deg, #80ffff, #00ffff);
    color: var(--text-color);
}

.plano-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plano-speed {
    margin-bottom: 20px;
}

.speed-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.speed-unit {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.plano-price {
    margin-bottom: 30px;
}

.plano-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plano-price .value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.plano-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.plano-features {
    margin-bottom: 30px;
    text-align: left;
}

.plano-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-features i {
    color: var(--secondary-color);
}

.btn-plano {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
}

.btn-plano:hover {
    background: var(--primary-dark);
}

.btn-plano.featured {
    background: var(--secondary-color);
}

.btn-plano.featured:hover {
    background: #00a844;
}

.planos-disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =============================================
   SERVIÇOS SECTION
   ============================================= */
.servicos {
    padding: 100px 0;
    background: var(--bg-color);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.servico-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.servico-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.servico-card p {
    color: var(--text-light);
}

/* =============================================
   SOBRE SECTION
   ============================================= */
.sobre {
    padding: 100px 0;
    background: var(--white);
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =============================================
   CONTATO SECTION
   ============================================= */
.contato {
    padding: 100px 0;
    background: var(--bg-color);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contato-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contato-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contato-text p {
    color: var(--text-light);
}

.contato-text a {
    color: var(--primary-color);
    font-weight: 500;
}

.contato-text a:hover {
    text-decoration: underline;
}

.contato-cta {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contato-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #1a1a2e;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-legal a {
    color: var(--primary-color);
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =============================================
   COOKIE BANNER (LGPD)
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--primary-color);
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-light);
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-cookie-reject:hover {
    background: var(--bg-color);
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 992px) {
    .contato-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-feature {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .plano-card.featured {
        transform: none;
    }

    .plano-card.featured:hover {
        transform: translateY(-10px);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}