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

:root {
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --text-primary: #E5E7EB;
    --text-secondary: #94A3B8;
    --accent-cyan: #06B6D4;
    --accent-cyan-dark: #0891B2;
    --accent-cyan-light: #22D3EE;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --card-border: #06B6D4;
}

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

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

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

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

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

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.play-symbol {
    width: 0;
    height: 0;
    border-left: 18px solid var(--bg-primary);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
    animation: playPulse 2s ease-in-out infinite;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

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

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--accent-cyan);
}

.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;
}

.hero-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        rgba(6, 182, 212, 0.05) 50%, 
        transparent 100%);
    background-size: 200% 200%;
    animation: waveMove 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes waveMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: heroZoom 0.7s ease-out;
    transform-origin: center;
}

@keyframes heroZoom {
    0% {
        opacity: 0;
        transform: scale(0.5);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.button-icon::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z"/></svg>');
    background-size: contain;
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 41, 59, 0.6);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    background: rgba(30, 41, 59, 0.8);
}

.badge-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

/* Hero Badge Icons */
.icon-instant {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid var(--accent-cyan);
}

.icon-auto {
    width: 16px;
    height: 16px;
    border: 3px solid var(--accent-cyan);
    border-radius: 4px;
    position: relative;
}

.icon-auto::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-quality {
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: qualityPulse 2s ease-in-out infinite;
}

@keyframes qualityPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
    border-color: var(--accent-cyan-light);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Benefit Icons */
.icon-speed {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid white;
}

.icon-channels {
    width: 40px;
    height: 30px;
    border: 4px solid white;
    border-radius: 5px;
    position: relative;
}

.icon-channels::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    background: white;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 3px 3px;
}

.icon-hd {
    width: 35px;
    height: 25px;
    border: 4px solid white;
    border-radius: 3px;
    position: relative;
}

.icon-hd::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: 50%;
    transform: translate(-40%, -50%);
}

.icon-devices {
    width: 25px;
    height: 35px;
    border: 3px solid white;
    border-radius: 5px;
    position: relative;
}

.icon-devices::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: white;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.icon-247 {
    width: 35px;
    height: 35px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-247::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

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

.icon-easy {
    width: 30px;
    height: 30px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-easy::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 15px;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    top: 45%;
    left: 50%;
    transform: translate(-60%, -60%) rotate(45deg);
}

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

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Como Funciona Section */
.como-funciona {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.step-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 25px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Step Icons */
.icon-click {
    width: 20px;
    height: 25px;
    border: 3px solid var(--accent-cyan);
    border-radius: 10px 10px 15px 15px;
    position: relative;
}

.icon-click::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-robot {
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent-cyan);
    border-radius: 5px;
    position: relative;
}

.icon-robot::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background: var(--accent-cyan);
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 3px;
    background: var(--accent-cyan);
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-check {
    width: 35px;
    height: 35px;
    border: 4px solid var(--accent-cyan);
    border-radius: 50%;
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 15px;
    border-right: 4px solid var(--accent-cyan);
    border-bottom: 4px solid var(--accent-cyan);
    top: 45%;
    left: 50%;
    transform: translate(-60%, -60%) rotate(45deg);
}

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

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.step-arrow {
    font-size: 30px;
    color: var(--accent-cyan);
}

.step-arrow::before {
    content: '→';
}

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

/* Vantagens Section */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.vantagem-item {
    background: var(--bg-secondary);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.vantagem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
}

.vantagem-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Vantagem Icons */
.icon-free {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

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

.icon-stable {
    width: 20px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

.icon-stable::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 12px;
    border: 3px solid white;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    bottom: 100%;
    left: -3px;
}

.icon-content {
    width: 25px;
    height: 30px;
    border: 3px solid white;
    border-radius: 2px;
    position: relative;
}

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

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

.icon-support {
    width: 30px;
    height: 20px;
    border: 3px solid white;
    border-radius: 15px;
    position: relative;
}

.icon-support::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

.icon-update {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    position: relative;
}

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

.icon-simple {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

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

.vantagem-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-cyan-light);
}

.vantagem-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Diferenciais Section */
.diferenciais {
    background: var(--bg-secondary);
}

.diferenciais-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.diferencial-card {
    background: var(--bg-primary);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

.diferencial-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Diferencial Icons */
.icon-automation {
    width: 35px;
    height: 35px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
}

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

.icon-automation::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 22px 0 0 white, 0 22px 0 white, -22px 0 0 white;
}

.icon-experience {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid white;
    position: relative;
}

.icon-experience::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid white;
    top: 5px;
    left: -20px;
}

.icon-trust {
    width: 30px;
    height: 35px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
    position: relative;
}

.icon-trust::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 15px;
    border-right: 3px solid var(--accent-cyan);
    border-bottom: 3px solid var(--accent-cyan);
    top: 45%;
    left: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
}

.diferencial-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan-light);
}

.diferencial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Planos Section */
.planos {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.plano-card {
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.3);
}

.plano-destaque {
    border: 2px solid var(--accent-cyan);
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.plano-header {
    background: var(--bg-secondary);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

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

.plano-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Plano Icons */
.icon-month {
    width: 30px;
    height: 35px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

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

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

.icon-quarter {
    width: 35px;
    height: 30px;
    position: relative;
}

.icon-quarter::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 25px;
    background: white;
    left: 5px;
    bottom: 0;
}

.icon-quarter::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 35px;
    background: white;
    right: 5px;
    bottom: 0;
}

.icon-year {
    width: 35px;
    height: 30px;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.plano-body {
    padding: 40px 30px;
}

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

.price-label {
    display: block;
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.plano-features {
    list-style: none;
    margin-bottom: 30px;
}

.plano-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
}

.plano-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plano-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

/* Recursos Section */
.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.recurso-item {
    background: var(--bg-secondary);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.recurso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
}

.recurso-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Recurso Icons */
.icon-live {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-live::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: 50%;
    transform: translate(-30%, -50%);
}

.icon-vod {
    width: 30px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

.icon-vod::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
}

.icon-sports {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

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

.icon-sports::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 19px 0 0 white, 0 19px 0 white, 19px 19px 0 white;
}

.icon-kids {
    width: 18px;
    height: 18px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-kids::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 20px;
    background: white;
    border-radius: 50% 50% 0 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.recurso-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-cyan-light);
}

.recurso-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Compatibilidade Section */
.compatibilidade {
    background: var(--bg-secondary);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.device-card {
    background: var(--bg-primary);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
}

.device-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Device Icons */
.icon-tv {
    width: 35px;
    height: 25px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

.icon-tv::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 2px 2px;
}

.icon-mobile {
    width: 20px;
    height: 32px;
    border: 3px solid white;
    border-radius: 5px;
    position: relative;
}

.icon-mobile::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: white;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.icon-computer {
    width: 32px;
    height: 22px;
    border: 3px solid white;
    border-radius: 2px;
    position: relative;
}

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

.icon-box {
    width: 28px;
    height: 28px;
    border: 3px solid white;
    border-radius: 3px;
    position: relative;
}

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

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

.device-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-cyan-light);
}

.device-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Garantias Section */
.garantias-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.garantia-card {
    background: var(--bg-secondary);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.garantia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

.garantia-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Garantia Icons */
.icon-shield {
    width: 35px;
    height: 40px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
    position: relative;
}

.icon-shield::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 18px;
    border-right: 4px solid var(--accent-cyan);
    border-bottom: 4px solid var(--accent-cyan);
    top: 45%;
    left: 50%;
    transform: translate(-60%, -50%) rotate(45deg);
}

.icon-privacy {
    width: 25px;
    height: 30px;
    border: 4px solid white;
    border-radius: 4px;
    position: relative;
}

.icon-privacy::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 15px;
    border: 4px solid white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    bottom: 100%;
    left: -4px;
}

.icon-quality-check {
    width: 40px;
    height: 40px;
    border: 4px solid white;
    border-radius: 50%;
    position: relative;
}

.icon-quality-check::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 18px;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    top: 45%;
    left: 50%;
    transform: translate(-60%, -60%) rotate(45deg);
}

.garantia-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan-light);
}

.garantia-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Processo Section */
.processo {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.processo-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--accent-cyan-light);
}

.processo-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.processo-text .cta-button {
    margin-top: 30px;
}

.processo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.processo-icon {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: processoRotate 10s linear infinite;
    position: relative;
}

.icon-automation-big {
    width: 120px;
    height: 120px;
    border: 15px solid white;
    border-radius: 50%;
    position: relative;
}

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

.icon-automation-big::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 90px 0 0 white, 0 90px 0 white, -90px 0 0 white;
}

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

/* Avaliações Section */
.avaliacoes {
    background: var(--bg-secondary);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.avaliacao-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
}

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

.avaliacao-header h3 {
    font-size: 16px;
    color: var(--accent-cyan-light);
    font-weight: 600;
}

.rating {
    color: #FCD34D;
    font-size: 16px;
}

.avaliacao-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

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

.faq-item {
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--card-border);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-cyan-light);
    margin: 0;
}

.faq-icon {
    font-size: 28px;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.faq-answer a {
    color: var(--text-secondary);
    text-decoration: none;
}

.faq-answer a:hover {
    color: var(--accent-cyan);
}

/* CTA Final Section */
.cta-final {
    background: linear-gradient(135deg, var(--accent-cyan-dark), var(--accent-cyan));
    padding: 100px 0;
}

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

.cta-final h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-large {
    font-size: 20px;
    padding: 22px 50px;
    background: white;
    color: var(--accent-cyan-dark);
}

.cta-large:hover {
    background: var(--bg-primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
}

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

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links h3 {
    color: var(--accent-cyan-light);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-contact h3 {
    color: var(--accent-cyan-light);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon::before {
    content: '💬';
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .processo-content {
        grid-template-columns: 1fr;
    }
    
    .processo-icon {
        width: 200px;
        height: 200px;
    }
    
    .icon-automation-big {
        width: 80px;
        height: 80px;
        border-width: 10px;
    }
    
    .icon-automation-big::before {
        width: 50px;
        height: 50px;
    }
    
    .icon-automation-big::after {
        width: 20px;
        height: 20px;
        top: -20px;
        box-shadow: 60px 0 0 white, 0 60px 0 white, -60px 0 0 white;
    }
    
    .cta-final h2 {
        font-size: 32px;
    }
    
    .cta-final p {
        font-size: 16px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.step-card,
.vantagem-item,
.diferencial-card,
.plano-card,
.recurso-item,
.device-card,
.garantia-card,
.avaliacao-card,
.faq-item {
    animation: fadeIn 0.5s ease-out;
}
