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

:root {
    --ultravioleta: #7F00FF;
    --laranja-cosmico: #FF7518;
    --verde-alienigena: #ABFE2C;
    --dark-space: #0a0a1a;
    --deep-space: #050510;
    --star-white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--deep-space);
    color: var(--star-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid var(--ultravioleta);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-planet {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico), var(--verde-alienigena));
    position: relative;
    animation: rotatePlanet 10s linear infinite;
}

.logo-planet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    width: 70px;
    height: 15px;
    border: 3px solid var(--laranja-cosmico);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--laranja-cosmico);
}

@keyframes rotatePlanet {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0 var(--ultravioleta),
        4px 4px 0 var(--laranja-cosmico),
        6px 6px 0 var(--verde-alienigena);
    animation: chromatic 3s ease-in-out infinite;
}

@keyframes chromatic {
    0%, 100% { 
        text-shadow: 
            2px 2px 0 var(--ultravioleta),
            4px 4px 0 var(--laranja-cosmico),
            6px 6px 0 var(--verde-alienigena);
    }
    50% { 
        text-shadow: 
            -2px 2px 0 var(--verde-alienigena),
            -4px 4px 0 var(--laranja-cosmico),
            -6px 6px 0 var(--ultravioleta);
    }
}

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

.nav a {
    color: var(--star-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ultravioleta), var(--laranja-cosmico));
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.stars-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars-layer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 3s ease-in-out infinite;
}

.layer-1 { z-index: 1; }
.layer-2 { z-index: 2; animation: parallax1 20s linear infinite; }
.layer-3 { z-index: 3; animation: parallax2 15s linear infinite; }

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes parallax1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

@keyframes parallax2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

.floating-planet {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.planet-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, var(--verde-alienigena), var(--ultravioleta));
    top: 20%;
    left: 10%;
    box-shadow: 0 0 50px var(--verde-alienigena);
}

.planet-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 40% 40%, var(--laranja-cosmico), var(--ultravioleta));
    bottom: 20%;
    right: 10%;
    animation-delay: -3s;
    box-shadow: 0 0 60px var(--laranja-cosmico);
}

.floating-asteroid {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #666, #999);
    border-radius: 40% 60% 50% 50%;
    animation: float 8s ease-in-out infinite;
}

.asteroid-1 {
    top: 40%;
    right: 20%;
    animation-delay: -2s;
}

.asteroid-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: 72px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 
        0 0 10px var(--ultravioleta),
        0 0 20px var(--ultravioleta),
        0 0 30px var(--laranja-cosmico),
        0 0 40px var(--laranja-cosmico);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(127, 0, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(127, 0, 255, 0.8);
}

.cta-button:active {
    animation: wormhole 0.6s ease-out;
}

@keyframes wormhole {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

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

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* CSS Icons */
.icon-rocket::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 30px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-star::before {
    content: '★';
    font-size: 30px;
    color: white;
}

.icon-shield::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 30px;
    border: 3px solid white;
    border-radius: 5px 5px 15px 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.section-title {
    font-family: 'Bangers', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--laranja-cosmico);
    text-shadow: 0 0 20px var(--laranja-cosmico);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Como Funciona */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: rgba(127, 0, 255, 0.1);
    border: 2px solid var(--ultravioleta);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(127, 0, 255, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--laranja-cosmico), var(--verde-alienigena));
    position: relative;
}

.icon-click::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-robot::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--laranja-cosmico);
    border-radius: 50%;
    top: 40%;
    left: 35%;
    box-shadow: 15px 0 0 var(--laranja-cosmico);
}

.icon-play::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.icon-chat::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    background: white;
    border-radius: 10px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-chat::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    top: 55%;
    left: 40%;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--verde-alienigena);
}

.step-card p {
    color: #ddd;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--laranja-cosmico), var(--verde-alienigena));
}

/* Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 117, 24, 0.1);
    border: 2px solid var(--laranja-cosmico);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 117, 24, 0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-alienigena), var(--ultravioleta));
    position: relative;
}

.icon-quality::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-quality::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-channels::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 25px;
    border: 3px solid white;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-devices::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 20px;
    border: 3px solid white;
    border-radius: 3px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-devices::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: white;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-stable::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 -8px 0 white, 0 8px 0 white;
}

.icon-easy::before {
    content: '✓';
    position: absolute;
    font-size: 35px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.icon-update::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-update::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid white;
    top: 25%;
    right: 20%;
    transform: rotate(45deg);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--laranja-cosmico);
}

.benefit-card p {
    color: #ddd;
    line-height: 1.6;
}

/* Diferenciais */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial-item {
    text-align: center;
    padding: 30px;
    background: rgba(171, 254, 44, 0.05);
    border: 2px solid var(--verde-alienigena);
    border-radius: 20px;
    transition: all 0.3s;
}

.diferencial-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(171, 254, 44, 0.3);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ultravioleta), var(--verde-alienigena));
    position: relative;
}

.icon-automation::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-security::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    background: white;
    border-radius: 10px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-security::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-support::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid white;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-support::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    border: 3px solid white;
    border-top: none;
    border-radius: 0 0 20px 20px;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-performance::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.diferencial-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--verde-alienigena);
}

.diferencial-item p {
    color: #ddd;
}

/* Experiência */
.experiencia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experiencia-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--laranja-cosmico);
}

.experiencia-text p {
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.8;
}

.experiencia-list {
    list-style: none;
    margin: 30px 0;
}

.experiencia-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ddd;
}

.list-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-alienigena), var(--ultravioleta));
    flex-shrink: 0;
    position: relative;
}

.icon-check::before {
    content: '✓';
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.experiencia-visual {
    position: relative;
    height: 400px;
}

.visual-device {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.2), rgba(255, 117, 24, 0.2));
    border-radius: 20px;
    border: 3px solid var(--ultravioleta);
    position: relative;
    overflow: hidden;
}

.visual-device::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    opacity: 0.3;
    border-radius: 10px;
    animation: pulse 3s ease-in-out infinite;
}

/* Planos */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plano-card {
    background: rgba(127, 0, 255, 0.1);
    border: 2px solid var(--ultravioleta);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
}

.plano-card.featured {
    border-color: var(--laranja-cosmico);
    background: rgba(255, 117, 24, 0.1);
    transform: scale(1.05);
}

.plano-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(127, 0, 255, 0.4);
}

.plano-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--laranja-cosmico), var(--verde-alienigena));
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.plano-header {
    text-align: center;
    margin-bottom: 30px;
}

.plano-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--laranja-cosmico);
}

.plano-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    position: relative;
}

.icon-month::before {
    content: '1';
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-quarter::before {
    content: '3';
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-year::before {
    content: '12';
    position: absolute;
    font-size: 35px;
    font-weight: bold;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.plano-discount {
    text-align: center;
    margin-bottom: 20px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--verde-alienigena), var(--ultravioleta));
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.plano-description {
    text-align: center;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.plano-features {
    list-style: none;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ddd;
}

.feature-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-alienigena), var(--ultravioleta));
    flex-shrink: 0;
    position: relative;
}

.plano-footer {
    text-align: center;
}

.plano-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.plano-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(127, 0, 255, 0.5);
}

/* Tecnologia */
.tecnologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    text-align: center;
    padding: 30px;
    background: rgba(127, 0, 255, 0.05);
    border: 2px solid var(--ultravioleta);
    border-radius: 20px;
    transition: all 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(127, 0, 255, 0.3);
}

.tech-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--laranja-cosmico), var(--verde-alienigena));
    position: relative;
}

.icon-server::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 8px;
    background: white;
    border-radius: 2px;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 0 white;
}

.icon-speed::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-adaptive::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-adaptive::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-cloud::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 15px;
    background: white;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-cloud::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 35%;
    left: 40%;
}

.tech-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--verde-alienigena);
}

.tech-card p {
    color: #ddd;
}

/* Compatibilidade */
.devices-showcase {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.device-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.device-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ultravioleta), var(--laranja-cosmico));
    position: relative;
}

.icon-tv::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    border: 3px solid white;
    border-radius: 5px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-tv::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: white;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-mobile::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 40px;
    border: 3px solid white;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-tablet::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 30px;
    border: 3px solid white;
    border-radius: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-computer::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-computer::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: white;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-tvbox::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 10px;
    background: white;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.device-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--laranja-cosmico);
}

.device-item p {
    color: #aaa;
    font-size: 14px;
}

/* Conteúdo */
.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.conteudo-card {
    background: rgba(171, 254, 44, 0.05);
    border: 2px solid var(--verde-alienigena);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.conteudo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(171, 254, 44, 0.3);
}

.conteudo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-alienigena), var(--ultravioleta));
    position: relative;
}

.icon-sports::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-sports::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 0 2px white, 0 0 0 2px white;
}

.icon-movies::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 28px;
    border: 3px solid white;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-series::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-series::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 -6px 0 white, 0 6px 0 white;
}

.icon-news::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 30px;
    border: 3px solid white;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-news::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 0 white;
}

.icon-kids::before {
    content: '♪';
    position: absolute;
    font-size: 35px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-documentary::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-documentary::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.conteudo-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--verde-alienigena);
}

.conteudo-card p {
    color: #ddd;
}

/* Garantia */
.garantia-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.garantia-main {
    text-align: center;
}

.garantia-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--laranja-cosmico), var(--verde-alienigena));
    position: relative;
}

.icon-badge::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 60px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-badge::after {
    content: '★';
    position: absolute;
    font-size: 30px;
    color: var(--laranja-cosmico);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.garantia-main h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--laranja-cosmico);
}

.garantia-main p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
}

.garantia-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(127, 0, 255, 0.1);
    border: 2px solid var(--ultravioleta);
    border-radius: 15px;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-alienigena), var(--ultravioleta));
    flex-shrink: 0;
    position: relative;
}

.icon-verified::before {
    content: '✓';
    position: absolute;
    font-size: 28px;
    font-weight: bold;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--verde-alienigena);
}

.item-text p {
    color: #aaa;
    font-size: 14px;
}

/* Avaliações */
.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.avaliacao-card {
    background: rgba(127, 0, 255, 0.1);
    border: 2px solid var(--ultravioleta);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 0, 255, 0.3);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.avaliacao-header h3 {
    font-size: 16px;
    color: var(--laranja-cosmico);
    font-weight: 600;
}

.rating {
    color: var(--verde-alienigena);
    font-size: 18px;
}

.avaliacao-card p {
    color: #ddd;
    line-height: 1.6;
    font-size: 15px;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--ultravioleta);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(127, 0, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(127, 0, 255, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--laranja-cosmico);
    font-weight: 600;
}

.faq-icon {
    font-size: 28px;
    color: var(--verde-alienigena);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #ddd;
    line-height: 1.8;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.2), rgba(255, 117, 24, 0.2));
    border-top: 2px solid var(--ultravioleta);
    border-bottom: 2px solid var(--laranja-cosmico);
}

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

.cta-final-content h2 {
    font-family: 'Bangers', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--laranja-cosmico);
    text-shadow: 0 0 20px var(--laranja-cosmico);
}

.cta-final-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

.cta-button.large {
    font-size: 22px;
    padding: 22px 50px;
}

/* Footer */
.footer {
    background: var(--dark-space);
    border-top: 2px solid var(--ultravioleta);
    padding: 60px 0 30px;
}

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

.footer-brand p {
    color: #aaa;
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--laranja-cosmico);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--verde-alienigena);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .experiencia-content,
    .garantia-content {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .benefits-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
