:root {
    --bg-color: #010F1F;
    --card-bg: #0a1628;
    --yellow: #FFD700;
    --cyan: #00d1ff;
    --green: #10B981;
    --white: #ffffff;
    --text-muted: #94a3b8;
    --container-width: 1100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-glow: #6366f1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
}

/* Page Content (Privacy, Terms) */
.page-content {
    padding: 140px 0 80px;
}

.page-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.page-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Buttons */
.btn-yellow {
    background-color: var(--yellow);
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-yellow:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg-color);
}

.main-wrapper {
    position: relative;
    padding-top: 80px;
}

.logo-img {
    height: 50px;
    display: block;
}

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

.logo-img {
    height: 40px;
    display: block;
}

.btn-header-whatsapp {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.9rem;
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.active {
    color: var(--yellow);
    font-weight: 800;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
}

/* Hero Section */
.hero {
    padding: 128px 0 80px;
    background-color: #0A1628;
    position: relative;
}

.hero-glow-border {
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--yellow);
    letter-spacing: -0.5px;
}

.hero-text .highlight-white {
    color: var(--white);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.6;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--green);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.btn-hero-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.btn-hero-cta i {
    width: 20px;
    height: 20px;
}

.social-proof {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-box {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--yellow);
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.proof-text strong {
    color: var(--yellow);
    font-weight: 800;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.image-glass-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    border-radius: 10px;
}

.glass-title {
    display: block;
    color: var(--yellow);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.glass-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--white);
    margin-top: 2px;
    opacity: 0.85;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-iptv {
    padding-top: 40px;
}

.section-outros {
    padding-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.subtitle-yellow {
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.subtitle-cyan {
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.marquee-text {
    margin-top: 0;
    padding: 60px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    display: flex;
}

.marquee-text span {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--cyan);
    text-stroke: 2px var(--cyan);
    letter-spacing: 4px;
    padding-right: 50px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Service Grids */
.grid-celulares {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card-celular {
    background-color: var(--card-bg);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.card-celular:hover {
    border-color: var(--yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transform: translateY(-6px);
}

.card-celular svg {
    width: 56px;
    height: 56px;
    color: var(--yellow);
    margin: 0 auto 25px;
    display: block;
    transition: var(--transition);
}

.card-celular:hover svg {
    transform: scale(1.15);
}

.card-celular h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: none;
}

.card-celular p {
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Outros Section */
.grid-outros {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-outros {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.card-outros img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex: 1;
}

/* IPTV Section */
.iptv-card {
    border: 1px solid rgba(0, 209, 255, 0.4);
    border-radius: 25px;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: transparent;
    box-shadow: 0 0 50px rgba(0, 209, 255, 0.05);
    position: relative;
}

.iptv-text h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    line-height: 1.2;
    font-weight: 900;
}

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

.benefit-list {
    margin-bottom: 45px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.benefit-list svg {
    color: var(--yellow);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
}

.iptv-image {
    position: relative;
    z-index: 1;
}

.iptv-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(30px);
}

.iptv-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.btn-iptv {
    display: inline-block;
    background-color: #1a1a1a;
    color: var(--yellow);
    padding: 18px 35px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 1px solid rgba(247, 195, 37, 0.2);
    transition: var(--transition);
    animation: pulse-iptv 2s infinite;
}

.btn-iptv:hover {
    background-color: #222;
    border-color: var(--yellow);
}

@keyframes pulse-iptv {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Final Section */
.section-final {
    text-align: center;
    padding-bottom: 150px;
}

.section-final h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-final p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.phone-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.8rem;
    color: var(--yellow);
    margin-bottom: 40px;
}

.btn-green-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--green);
    color: #fff;
    padding: 22px 45px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: #03070d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info .logo-text {
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 20px;
    display: block;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.footer-column h4 {
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-column p, .footer-column li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-column i {
    color: var(--yellow);
    width: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-muted);
}

.footer-column .whatsapp-link {
    color: var(--cyan);
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text { padding-right: 0; }
    .hero-text p { margin: 0 auto 35px; }
    .social-proof { justify-content: center; }
    .grid-celulares, .grid-outros { grid-template-columns: repeat(2, 1fr); }
    .iptv-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-wrapper { margin: 8px; }
    .nav-links, header .btn-yellow { display: none; }
    .hero-text h1 { font-size: 2rem; }
    .hero { padding: 80px 0 50px; min-height: auto; }
    .grid-celulares, .grid-outros, .footer-grid { grid-template-columns: 1fr; }
    .phone-number { font-size: 2.5rem; }
}
