/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-red: #DC2626;
    --color-red-dark: #B91C1C;
    --color-red-light: #EF4444;
    --color-gray: #1F1F1F;
    --color-gray-light: #2A2A2A;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    background-color: var(--color-black);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-red);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

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

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    animation: logoFloat 3s ease-in-out infinite;
}

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

.play-icon {
    width: 0;
    height: 0;
    border-left: 16px solid var(--color-white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--color-white), var(--color-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navegação */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

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

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

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

/* Botões */
.btn-header, .btn-primary, .btn-package, .footer-btn {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-block;
    border: 2px solid var(--color-red);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    cursor: pointer;
}

.btn-header:hover, .btn-primary:hover, .btn-package:hover, .footer-btn:hover {
    background-color: var(--color-red-dark);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a0000 50%, var(--color-black) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.hero-subtitle {
    font-size: 26px;
    color: var(--color-red);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #CCCCCC;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.check-icon {
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-red);
    border-radius: 50%;
    background-color: var(--color-red);
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.4);
    border: 2px solid var(--color-red);
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--color-red);
    margin-bottom: 50px;
    font-weight: 600;
}

/* Como Funciona */
.how-it-works {
    background-color: var(--color-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background-color: var(--color-black);
    padding: 40px 30px;
    border-radius: 5px;
    border: 2px solid var(--color-gray-light);
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: scale(1.04);
    border-color: var(--color-red);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
}

.step-icon-wrapper {
    margin: 20px 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.click-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-red);
    border-radius: 50%;
}

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

.robot-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--color-red);
    border-radius: 8px;
}

.robot-icon::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    border-radius: 50%;
}

.robot-icon::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 12px;
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    border-radius: 50%;
}

.step-title {
    font-size: 22px;
    margin: 20px 0 15px;
    color: var(--color-white);
    font-weight: 700;
}

.step-description {
    color: #CCCCCC;
    line-height: 1.7;
}

/* Vídeo Section */
.video-section {
    margin-top: 60px;
    text-align: center;
}

.video-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.video-description {
    font-size: 18px;
    color: #CCCCCC;
    margin-bottom: 30px;
    line-height: 1.7;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid var(--color-red);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    transition: all 0.25s ease;
    background-color: var(--color-black);
}

.video-container:hover {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
    transform: scale(1.01);
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

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

.benefit-card {
    background-color: var(--color-gray);
    padding: 35px 25px;
    border-radius: 5px;
    border: 2px solid var(--color-gray-light);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: scale(1.04);
    border-color: var(--color-red);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}

.quality-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border: 3px solid var(--color-red);
    border-radius: 5px;
}

.quality-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background-color: var(--color-red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.speed-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border: 3px solid var(--color-red);
    border-radius: 50%;
}

.speed-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30px;
    height: 3px;
    background-color: var(--color-red);
}

.channels-icon {
    position: relative;
    width: 55px;
    height: 35px;
    border: 3px solid var(--color-red);
    border-radius: 5px;
}

.channels-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--color-red);
}

.devices-icon {
    position: relative;
    width: 55px;
    height: 40px;
}

.devices-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 25px;
    border: 3px solid var(--color-red);
    border-radius: 3px;
}

.devices-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 30px;
    border: 3px solid var(--color-red);
    border-radius: 3px;
}

.support-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border: 3px solid var(--color-red);
    border-radius: 50%;
}

.support-icon::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-red);
}

.security-icon {
    position: relative;
    width: 45px;
    height: 55px;
    background-color: transparent;
    border: 3px solid var(--color-red);
    border-radius: 5px 5px 25px 25px;
}

.security-icon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    border: 3px solid var(--color-red);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-white);
    font-weight: 700;
}

.benefit-description {
    color: #CCCCCC;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Diferenciais */
.differentials {
    background-color: var(--color-gray);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.differential-item {
    background-color: var(--color-black);
    padding: 35px 25px;
    border-radius: 5px;
    border: 2px solid var(--color-gray-light);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.differential-item:hover {
    transform: scale(1.04);
    border-color: var(--color-red);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.differential-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}

.hd-icon {
    position: relative;
    width: 55px;
    height: 40px;
    border: 3px solid var(--color-red);
    border-radius: 5px;
}

.hd-icon::after {
    content: 'HD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 900;
    color: var(--color-red);
}

.stable-icon {
    position: relative;
    width: 55px;
    height: 55px;
}

.stable-icon::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 40px;
    background-color: var(--color-red);
}

.stable-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 25px;
    background-color: var(--color-red);
}

.update-icon {
    position: relative;
    width: 55px;
    height: 55px;
    border: 3px solid var(--color-red);
    border-radius: 50%;
    border-top-color: transparent;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.interface-icon {
    position: relative;
    width: 55px;
    height: 45px;
    border: 3px solid var(--color-red);
    border-radius: 5px;
}

.interface-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--color-red);
    border-radius: 3px;
}

.vod-icon {
    position: relative;
    width: 55px;
    height: 45px;
    border: 3px solid var(--color-red);
    border-radius: 5px;
}

.vod-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid var(--color-red);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.guide-icon {
    position: relative;
    width: 45px;
    height: 55px;
    border: 3px solid var(--color-red);
    border-radius: 5px;
}

.guide-icon::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    right: 8px;
    height: 3px;
    background-color: var(--color-red);
    box-shadow: 0 8px 0 var(--color-red), 0 16px 0 var(--color-red);
}

.differential-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-white);
    font-weight: 700;
}

.differential-description {
    color: #CCCCCC;
    line-height: 1.7;
}

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

.package-card {
    background-color: var(--color-gray);
    border-radius: 5px;
    border: 2px solid var(--color-gray-light);
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.package-card:hover {
    transform: scale(1.04);
    border-color: var(--color-red);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.package-card.featured {
    border-color: var(--color-red);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 5px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    padding: 30px;
    text-align: center;
}

.package-title {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 900;
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.monthly-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
}

.monthly-icon::after {
    content: '1';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
}

.quarterly-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
}

.quarterly-icon::after {
    content: '3';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-white);
}

.annual-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
}

.annual-icon::after {
    content: '12';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
}

.package-body {
    padding: 35px 30px;
}

.package-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-label {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    margin-bottom: 10px;
}

.discount-badge {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 5px;
}

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

.package-features li {
    padding: 12px 0;
    color: #CCCCCC;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-icon {
    width: 20px;
    height: 20px;
    position: relative;
    border: 2px solid var(--color-red);
    border-radius: 50%;
    background-color: var(--color-red);
    flex-shrink: 0;
}

.list-icon::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Garantia */
.guarantee {
    background-color: var(--color-gray);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon-wrapper {
    flex-shrink: 0;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
}

.shield-icon {
    position: relative;
    width: 80px;
    height: 90px;
    background-color: transparent;
    border: 4px solid var(--color-red);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.shield-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: var(--color-red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--color-white);
}

.guarantee-description {
    font-size: 17px;
    color: #CCCCCC;
    line-height: 1.7;
}

/* Avaliações */
.reviews {
    background-color: var(--color-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background-color: var(--color-black);
    padding: 30px;
    border-radius: 5px;
    border: 2px solid var(--color-gray-light);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    transform: scale(1.04);
    border-color: var(--color-red);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.4);
}

.review-stars {
    color: var(--color-red);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #CCCCCC;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
}

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

.faq-item {
    background-color: var(--color-gray);
    margin-bottom: 15px;
    border-radius: 5px;
    border: 2px solid var(--color-gray-light);
    overflow: hidden;
    transition: all 0.25s ease;
}

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

.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;
    color: var(--color-white);
    font-size: 18px;
    transition: all 0.25s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.faq-question:hover {
    color: var(--color-red);
}

.faq-icon {
    font-size: 28px;
    color: var(--color-red);
    transition: transform 0.25s ease;
    font-weight: 300;
}

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

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

.faq-answer p {
    padding: 0 30px 25px;
    color: #CCCCCC;
    line-height: 1.7;
}

.faq-answer a {
    color: inherit;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 60px 0 30px;
    border-top: 2px solid var(--color-red);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-description {
    color: #CCCCCC;
    line-height: 1.7;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray-light);
    color: #999999;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .steps-grid,
    .benefits-grid,
    .differentials-grid,
    .packages-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .video-section {
        margin-top: 40px;
    }

    .video-title {
        font-size: 24px;
    }

    .video-description {
        font-size: 16px;
    }

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

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

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .btn-primary,
    .btn-package,
    .btn-header {
        padding: 10px 20px;
        font-size: 14px;
    }
}
