:root {
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --primary-red: #e50914; /* Netflix/UniTV style red */
    --primary-red-hover: #b80710;
    --accent-red: #ff0a16;
    --text-main: #333333;
    --text-muted: #666666;
    --primary-green: #25d366; /* WhatsApp */
    --primary-green-hover: #128c7e;
    --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s;
}

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

/* Header */
.header {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: invert(1); /* Torna a logo branca em preta para aparecer no fundo branco */
}

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

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-whatsapp {
    background-color: var(--primary-green);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-3px);
    color: #fff;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111;
}

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

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

.card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Plans */
.plan-card {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-card img {
    width: 100%;
    border-bottom: 1px solid #eaeaea;
}

.plan-content {
    padding: 30px;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.plan-card .price-placeholder {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin: 20px 0;
    font-weight: bold;
}

/* FAQ Accordion */
.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    background-color: #f8f9fa;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-muted);
}

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

.faq-item.active .faq-question {
    color: var(--primary-red);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--primary-red);
}

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

/* Content blocks */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2, .content-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
}

.content-block h3 {
    font-size: 1.5rem;
}

.content-block p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content-block ul, .content-block ol {
    margin-bottom: 15px;
    padding-left: 20px;
    color: var(--text-muted);
}

.content-block li {
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 100px 0 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.breadcrumb a {
    color: var(--primary-red);
    font-weight: 600;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Float CTA */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-green);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

.float-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Footer */
.footer {
    background-color: #111;
    color: #f0f0f0;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* makes logo white */
}

.footer-desc {
    color: #ccc;
    font-size: 0.95rem;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
}

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

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

.footer-links a {
    color: #ccc;
}

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

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

/* Flex Row */
.flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.flex-row:nth-child(even) {
    flex-direction: row-reverse;
}

.flex-content {
    flex: 1;
}

.flex-image {
    flex: 1;
    text-align: center;
}

.flex-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .flex-row {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}
