/* ========================================
   CONECTAR CS TV - CSS COMPLETO
   ======================================== */

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --dark-blue: #1a237e;
    --light-blue: #e3f2fd;
    --green: #25d366;
    --text: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    padding: 20px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo-container a {
    display: block;
}

.logo {
    width: 180px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.announcement-banner {
    flex: 1;
    max-width: 500px;
}

.announcement-content {
    background: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-light);
}

.announcement-content i {
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(0, 123, 255, 0.85) 50%, rgba(102, 126, 234, 0.9) 100%),
                url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: var(--orange-dark);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #693f91 100%);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--orange);
}

.feature-item span {
    font-weight: 500;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 100px 20px;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--light-blue);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--orange);
    border-radius: 50%;
    z-index: -1;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.benefits {
    margin: 35px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    background: var(--light-blue);
    transform: translateX(8px);
}

.benefit-item i {
    color: var(--green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text);
    font-weight: 500;
}

.cta-section {
    margin-top: 35px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 20px;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* ========================================
   TEST PAGE STYLES
   ======================================== */
.test-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.test-intro h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.test-intro h1 i {
    color: var(--orange);
    margin-right: 15px;
}

.test-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.test-intro strong {
    color: var(--primary);
    font-weight: 700;
}

/* Test Buttons */
.test-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.test-button {
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--text);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid transparent;
}

.test-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.test-button.satelite {
    border-left-color: var(--orange);
}

.test-button.satelite:hover {
    background: linear-gradient(135deg, var(--white) 0%, #fff5f2 100%);
}

.test-button.satelite i:first-child {
    color: var(--orange);
}

.test-button.cabonnet {
    border-left-color: var(--primary);
}

.test-button.cabonnet:hover {
    background: linear-gradient(135deg, var(--white) 0%, #f0f8ff 100%);
}

.test-button.cabonnet i:first-child {
    color: var(--primary);
}

.test-button.whatsapp {
    border-left-color: var(--green);
}

.test-button.whatsapp:hover {
    background: linear-gradient(135deg, var(--white) 0%, #f0fff4 100%);
}

.test-button.whatsapp i:first-child {
    color: var(--green);
}

.test-button i:first-child {
    font-size: 2.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.button-content {
    flex: 1;
}

.button-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.button-subtitle {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.test-button i:last-child {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 15px;
}

/* Test Features */
.test-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-highlight {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-highlight i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-highlight h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.feature-highlight p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Plans Section */
.plans-section {
    margin-top: 60px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.plan-card.featured {
    border-color: var(--orange);
    transform: scale(1.03);
}

.plan-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.plan-header {
    padding: 40px 30px 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-blue) 100%);
}

.plan-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.plan-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.plan-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.plan-prices {
    padding: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.price-item:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.price-item.best-deal {
    background: linear-gradient(135deg, var(--light-blue) 0%, #d4edff 100%);
    border: 2px solid var(--primary);
    position: relative;
}

.price-item.best-deal::after {
    content: '💰 MELHOR';
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.price-label {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount {
    background: var(--green);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-features {
    padding: 0 25px 25px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.plan-features .feature-item:hover {
    background: rgba(0, 123, 255, 0.1);
}

.plan-features .feature-item i {
    color: var(--green);
    font-size: 1rem;
}

.plan-features .feature-item span {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact CTA */
.contact-cta {
    margin-top: 70px;
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-cta .cta-button {
    background: var(--white);
    color: var(--primary);
}

.contact-cta .cta-button:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 20px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--orange);
}

.footer-logo img {
    width: 140px;
    height: auto;
    margin-bottom: 12px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--orange);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    border-left-color: var(--orange);
    color: var(--white);
    padding-left: 20px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    width: 170px;
    border-radius: 35px;
    background: #128c7e;
}

.whatsapp-float i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

.whatsapp-text {
    margin-left: 10px;
    font-weight: 600;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* ========================================
   ANIMAÇÕES AOS (Animate on Scroll)
   ======================================== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .announcement-banner {
        max-width: 100%;
    }
    
    .hero {
        min-height: 70vh;
        padding: 50px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .section-header h2,
    .about-text h2 {
        font-size: 1.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-section ul li {
        border-left: none;
        padding-left: 0;
    }
    
    .footer-section ul li:hover {
        padding-left: 0;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    /* Test Page Mobile */
    .test-page {
        padding: 40px 15px;
    }
    
    .test-intro {
        padding: 35px 25px;
    }
    
    .test-intro h1 {
        font-size: 1.9rem;
    }
    
    .test-buttons {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .test-features {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta .cta-content {
        padding: 35px 25px;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 26px;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 25px;
    }
    
    .services,
    .about {
        padding: 70px 15px;
    }
    
    .stats {
        padding: 50px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
    
    .announcement-content {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float:hover {
        width: 55px;
        border-radius: 50%;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .test-button {
        padding: 20px;
    }
    
    .test-button i:first-child {
        font-size: 1.8rem;
        margin-right: 15px;
    }
    
    .button-title {
        font-size: 1.1rem;
    }
}