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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* === UTILITIES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-white {
    color: #ffffff;
}

.text-red {
    color: #e50914;
}

.glow-text {
    text-shadow: 0 0 40px rgba(229, 9, 20, 0.5), 0 0 80px rgba(229, 9, 20, 0.3);
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float 3s ease-in-out infinite;
}

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

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

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.7), #0a0a0a);
}

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

.logo-container {
    margin-bottom: 32px;
}

.hero-logo {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(229, 9, 20, 0.6)) drop-shadow(0 0 2px white) drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

@media (min-width: 768px) {
    .hero-logo {
        width: 450px;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #e50914;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    background-color: #f40612;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* === PRICE COMPARISON SECTION === */
.price-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #0a0a0a, #141414);
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .streaming-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.streaming-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #374151;
    transition: all 0.3s;
}

.streaming-card:hover {
    border-color: rgba(153, 27, 27, 0.5);
}

.streaming-logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.streaming-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.streaming-price {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.125rem;
}

.streaming-x {
    margin-top: 8px;
    color: #ef4444;
    display: flex;
    justify-content: center;
}

.total-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #374151;
    margin-bottom: 48px;
    text-align: center;
}

.total-label {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
    text-decoration-thickness: 4px;
}

@media (min-width: 768px) {
    .total-price {
        font-size: 3rem;
    }
}

.total-yearly {
    color: #6b7280;
    margin-top: 8px;
}

.solution-card {
    position: relative;
    background: linear-gradient(to right, #1a1a1a, #2a1a1a, #1a1a1a);
    border-radius: 16px;
    padding: 48px 32px 40px;
    border: 2px solid #e50914;
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.3);
}

.solution-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e50914;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.solution-content {
    text-align: center;
}

.solution-logo {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .solution-title {
        font-size: 2rem;
    }
}

.solution-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 32px;
}

.features-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(34, 197, 94, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: #4ade80;
}

.pill svg {
    color: #22c55e;
}

/* === FEATURES SECTION === */
.features-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #141414, #0a0a0a);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #374151;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(229, 9, 20, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(229, 9, 20, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e50914, #991b1b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: #9ca3af;
}

/* === WHY CHOOSE US SECTION === */
.why-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #0a0a0a, #141414);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #374151;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgba(229, 9, 20, 0.5);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #e50914, #991b1b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-desc {
    color: #9ca3af;
}

.testimonials-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(to bottom right, #1a1a1a, #2a1a1a);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #374151;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #ffffff;
}

.testimonial-location {
    color: #6b7280;
    font-size: 0.875rem;
}

/* === SOCIAL PROOF SECTION === */
.social-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #141414, #0a0a0a);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e50914, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: #9ca3af;
}

.devices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.device-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.device-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.device-overlay p {
    font-size: 1.25rem;
    font-weight: 600;
}

.family-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 48px;
}

.family-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.family-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .family-overlay h3 {
        font-size: 2rem;
    }
}

.family-overlay p {
    color: #9ca3af;
}

.mini-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .mini-testimonials {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mini-testimonial {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-style: italic;
    color: #d1d5db;
    border: 1px solid #374151;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #0a0a0a, #141414);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #374151;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    color: #e50914;
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #9ca3af;
    line-height: 1.7;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #141414, #0a0a0a);
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #1a1a1a, #2a1a1a);
    border-radius: 24px;
    padding: 48px 32px;
    border: 1px solid #374151;
    text-align: center;
}

.contact-logo {
    width: 160px;
    margin-bottom: 24px;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-subtitle {
    color: #9ca3af;
    margin-bottom: 32px;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #d1d5db;
}

.input-wrapper {
    position: relative;
}

.input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background-color: #0a0a0a;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #e50914;
}

.input-wrapper input::placeholder {
    color: #6b7280;
}

/* === PHONE INPUT WITH COUNTRY CODE === */
.phone-input-group {
    display: flex;
    gap: 12px;
}

.country-select-wrapper {
    flex-shrink: 0;
}

.country-select {
    height: 100%;
    min-height: 54px;
    padding: 16px 12px;
    background-color: #0a0a0a;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.country-select:focus {
    outline: none;
    border-color: #e50914;
}

.country-select:hover {
    border-color: #e50914;
}

.country-select option {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.phone-input-wrapper {
    flex: 1;
}

.phone-hint {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.phone-hint.error {
    color: #ef4444;
}

.phone-hint.valid {
    color: #22c55e;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #e50914;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.4);
}

.btn-submit:hover {
    background-color: #f40612;
    transform: scale(1.02);
}

.success-message {
    text-align: center;
    color: #4ade80;
}

.success-message svg {
    margin-bottom: 16px;
    color: #22c55e;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.success-message p {
    color: #9ca3af;
}

/* === FOOTER === */
.footer {
    padding: 40px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #1f2937;
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 16px;
}

.footer-text {
    color: #6b7280;
    font-size: 0.875rem;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}.country-select-wrapper {
    flex-shrink: 0;
    width: 120px;   /* ajuste se quiser */
    min-width: 120px;
}
