/*
Theme Name: DigitalNet Landing Page
Description: Tema WordPress editável para landing page da DigitalNet com serviços de streaming HBO Max, Disney+ e Deezer.
Author: CaparaoTEC
Version: 4
Text Domain: digitalnet-theme
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables - Cores extraídas da imagem */
:root {
    --primary-blue: #003399;
    --secondary-blue: #0066CC;
    --highlight-yellow: #FFCC00;
    --text-white: #FFFFFF;
    --text-black: #000000;
    --text-gray: #E5E5E5;
    --text-dark-gray: #333333;
    --gradient-blue: linear-gradient(135deg, #003399 0%, #0066CC 100%);
    --neon-gradient: linear-gradient(45deg, #FF0092, #00FFFF, #FFCC00, #FF0092);
    --hbo-black: #000000;
    --disney-blue: #113CCF;
    --deezer-pink: #FF0092;
    
    /* Typography Variables */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-blue);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--highlight-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--highlight-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFD700;
    text-decoration: underline;
}

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

/* Header */
.header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center; /* Default center alignment */
}

/* Header Logo Alignments */
.logo-align-left {
    margin-right: auto;
}

.logo-align-center {
    margin: 0 auto;
}

.logo-align-right {
    margin-left: auto;
}

.logo h1 {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    margin: 0;
    transition: all 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.02);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.logo h1 span {
    color: var(--highlight-yellow);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.logo span {
    color: var(--highlight-yellow);
}

.logo p {
    font-size: 0.9rem;
    margin-top: -5px;
    opacity: 0.9;
}

/* 
.contact-info {
    text-align: right;
}

.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.phone-icon {
    background: var(--highlight-yellow);
    color: var(--text-black);
    padding: 8px;
    border-radius: 50%;
    font-size: 1rem;
}
*/

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 146, 0.05) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(15px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-center {
    width: 100%;
}

.hero-text-center h2 {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--highlight-yellow) 0%, #FFD700 50%, #FFA500 100%);
    color: var(--text-black);
    padding: 0 15px;
    border-radius: 12px;
    box-shadow: 
        0 4px 15px rgba(255, 204, 0, 0.4),
        0 0 30px rgba(255, 204, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

.highlight:hover {
    transform: perspective(1000px) rotateX(-5deg) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 204, 0, 0.6),
        0 0 50px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF0092, #00FFFF, #FFCC00, #FF0092);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    animation: neon-border 3s linear infinite;
}

.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 12px;
    animation: shimmer-sweep 2.5s ease-in-out infinite;
}

/* Animações */
@keyframes glow-pulse {
    0% {
        box-shadow: 
            0 4px 15px rgba(255, 204, 0, 0.4),
            0 0 30px rgba(255, 204, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 6px 20px rgba(255, 204, 0, 0.6),
            0 0 40px rgba(255, 204, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes neon-border {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

@keyframes shimmer-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes glow-pulse-mobile {
    0% {
        box-shadow: 
            0 2px 8px rgba(255, 204, 0, 0.3),
            0 0 15px rgba(255, 204, 0, 0.2);
    }
    100% {
        box-shadow: 
            0 4px 12px rgba(255, 204, 0, 0.4),
            0 0 20px rgba(255, 204, 0, 0.3);
    }
}

.streaming-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.streaming-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 204, 0, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.streaming-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.streaming-section span {
    color: var(--highlight-yellow);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.streaming-section p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--highlight-yellow) 0%, #FFD700 100%);
    color: var(--text-black);
    text-decoration: none;
    border-radius: 50px;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(255, 204, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

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

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 204, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Services Section */
.services {
    padding: 60px 0 120px 0; /* Reduzido padding superior de 120px para 60px */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 204, 0, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 102, 204, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--text-white);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #FFD700);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.5);
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 50px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(255, 204, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Service Images Container - Layout Horizontal */
.service-images-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-logo {
    position: relative;
}

.service-logo img {
    width: 120px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.service-logo:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

/* Plus Symbol Styles */
.plus-symbol {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--highlight-yellow);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    user-select: none;
}

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

/* Service Plan Image Styles - Horizontal Layout */
.service-plan-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.service-plan-image .plan-image {
    width: 160px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-plan-image:hover .plan-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
    border-color: rgba(255, 204, 0, 0.3);
}

.service-description h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.service-description p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
    text-align: center;
}

.service-description {
    text-align: center;
}

.service-button {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.hbo-button {
    background: linear-gradient(135deg, var(--hbo-black) 0%, #333333 100%);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disney-button {
    background: linear-gradient(135deg, var(--disney-blue) 0%, #1E5FCC 100%);
    color: var(--text-white);
}

.deezer-button {
    background: linear-gradient(135deg, var(--deezer-pink) 0%, #FF1A9E 100%);
    color: var(--text-white);
}

.service-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.service-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Video Placeholders */
.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.video-container {
    text-align: center;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.play-button {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.play-button:hover::before {
    transform: scale(1);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hbo-video {
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.hbo-video:hover {
    border-color: var(--hbo-black);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.disney-video {
    border: 2px solid rgba(17, 60, 207, 0.3);
}

.disney-video:hover {
    border-color: var(--disney-blue);
    box-shadow: 0 0 30px rgba(17, 60, 207, 0.3);
}

.deezer-video {
    border: 2px solid rgba(255, 0, 146, 0.3);
}

.deezer-video:hover {
    border-color: var(--deezer-pink);
    box-shadow: 0 0 30px rgba(255, 0, 146, 0.3);
}

/* Video Embed */
.video-embed {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.9) 0%, rgba(0, 102, 204, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 60px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Footer Logo Image Styles */
.footer-logo-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.footer-logo p {
    margin-top: 5px;
    opacity: 0.8;
}

/* Footer Logo Alignments */
.footer-logo-align-left {
    text-align: left;
}

.footer-logo-align-left .footer-logo-image {
    justify-content: flex-start;
}

.footer-logo-align-center {
    text-align: center;
}

.footer-logo-align-center .footer-logo-image {
    justify-content: center;
}

.footer-logo-align-right {
    text-align: right;
}

.footer-logo-align-right .footer-logo-image {
    justify-content: flex-end;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 1.05rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ícones do Footer com Cor do Branding */
.footer-contact p::before {
    font-size: 1.2rem;
    color: var(--highlight-yellow);
    filter: drop-shadow(0 2px 4px rgba(255, 204, 0, 0.3));
    transition: all 0.3s ease;
}

/* Ícone de Telefone */
.footer-contact p:first-child::before {
    content: "📞";
}

/* Ícone de Website */
.footer-contact p:last-child::before {
    content: "🌐";
}

/* Hover nos ícones */
.footer-contact p:hover::before {
    color: #FFD700;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 204, 0, 0.5));
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 80vh;
    }
    
    .hero-text-center h2 {
        font-size: 2.8rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .hero-text-center h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-text-center p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    /* Efeitos highlight responsivos */
    .highlight {
        padding: 0 10px;
        font-size: 0.9em;
        border-radius: 8px;
        animation: glow-pulse-mobile 2s ease-in-out infinite alternate;
    }
    
    .highlight:hover {
        transform: scale(1.02);
    }
    
    .highlight::before {
        display: none; /* Remover borda neon em mobile para performance */
    }
    
    .container {
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin: 10px 0;
    }
    
    .logo h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .streaming-section {
        padding: 35px;
        margin: 0 20px;
    }
    
    .streaming-section h3 {
        font-size: 2rem;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px;
        margin-bottom: 60px;
    }
    
    .service-images-container {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .service-logo img,
    .service-plan-image .plan-image {
        width: 130px;
    }
    
    .plus-symbol {
        font-size: 2rem;
    }
    
    .services {
        padding: 40px 0 80px 0; /* Reduzido padding superior para mobile */
    }
    
    .services h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo-img {
        max-height: 50px;
    }
    
    .video-placeholder {
        min-height: 250px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Dispositivos muito pequenos */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 70vh;
    }
    
    .hero-text-center h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .hero-text-center h3 {
        font-size: 1.5rem;
    }
    
    .hero-text-center p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .streaming-section {
        padding: 25px 15px;
        margin: 20px 10px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-images-container {
        gap: 10px;
        margin-bottom: 20px;
        flex-direction: column;
    }
    
    .service-logo img,
    .service-plan-image .plan-image {
        width: 110px;
    }
    
    .plus-symbol {
        font-size: 1.5rem;
        transform: rotate(90deg);
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
    
    .streaming-section h3 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .service-description h3 {
        font-size: 1.8rem;
    }
    
    .video-placeholder {
        min-height: 220px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

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

/* WordPress specific styles */
.wp-block-group {
    margin: 0;
}

.wp-block-group__inner-container {
    margin: 0;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--highlight-yellow);
    color: var(--text-black);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



/* FAQ Section */
.faq {
    padding: 120px 0 60px 0; /* Reduzido padding inferior de 120px para 60px */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 204, 0, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 102, 204, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--text-white);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--highlight-yellow), #FFD700);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.5);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 204, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight-yellow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    min-width: 40px;
    text-align: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer.active {
    max-height: 1000px; /* Valor alto para acomodar qualquer texto */
    padding: 30px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive adjustments for logo image */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0 40px 0;
    }
    
    .faq h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .faq-question {
        padding: 25px;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0; /* Removido padding quando fechado */
    }
    
    .faq-answer.active {
        max-height: 800px; /* Aumentado para tablet */
        padding: 25px; /* Padding apenas quando ativo */
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .faq-toggle {
        font-size: 1.6rem;
        min-width: 30px;
    }
}

@media (max-width: 480px) {
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0; /* Removido padding quando fechado */
    }
    
    .faq-answer.active {
        max-height: 600px; /* Aumentado para mobile */
        padding: 20px; /* Padding apenas quando ativo */
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
}

/* Responsive adjustments for hero images */
@media (max-width: 768px) {
    .hero-images {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hero-image-item {
        max-width: 320px;
    }
    
    .hero-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-image-item {
        max-width: 280px;
    }
    
    .hero-img {
        height: 180px;
    }
    
    .hero-image-overlay {
        font-size: 1rem;
        padding: 15px 10px 10px;
    }
}

/* Logo Image Styles - Consolidated */
.site-logo-img {
    max-height: 120px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.site-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .site-logo-img {
        max-height: 80px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .site-logo-img {
        max-height: 60px;
        max-width: 200px;
    }
}


/* Hero Images Styles */
.hero-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hero-image-item:hover .hero-img {
    transform: scale(1.1);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 20px 15px 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for hero images */
@media (max-width: 768px) {
    .hero-images {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hero-image-item {
        max-width: 320px;
    }
    
    .hero-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-image-item {
        max-width: 280px;
    }
    
    .hero-img {
        height: 180px;
    }
    
    .hero-image-overlay {
        font-size: 1rem;
        padding: 15px 10px 10px;
    }
}



/* Fullscreen Video Player Styles */
.fullscreen-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fullscreen-video-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-video-container {
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 800px;
    background: var(--gradient-blue);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fullscreen-video-overlay.active .fullscreen-video-container {
    transform: scale(1);
}

.fullscreen-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fullscreen-video-header h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close-fullscreen-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    color: var(--highlight-yellow);
}

.fullscreen-video-player {
    flex: 1;
    position: relative;
    background: #000;
}

.fullscreen-video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 18px 18px;
}

/* Responsive adjustments for fullscreen video */
@media (max-width: 768px) {
    .fullscreen-video-container {
        width: 95%;
        height: 95%;
        border-radius: 15px;
    }
    
    .fullscreen-video-header {
        padding: 15px 20px;
    }
    
    .fullscreen-video-header h3 {
        font-size: 1.2rem;
    }
    
    .close-fullscreen-btn {
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .fullscreen-video-player iframe {
        border-radius: 0 0 13px 13px;
    }
}

@media (max-width: 480px) {
    .fullscreen-video-container {
        width: 98%;
        height: 98%;
        border-radius: 10px;
    }
    
    .fullscreen-video-header {
        padding: 12px 15px;
    }
    
    .fullscreen-video-header h3 {
        font-size: 1.1rem;
    }
    
    .close-fullscreen-btn {
        font-size: 1.8rem;
        width: 30px;
        height: 30px;
    }
    
    .fullscreen-video-player iframe {
        border-radius: 0 0 8px 8px;
    }
}

/* Animation for video loading */
.fullscreen-video-player::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--highlight-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.fullscreen-video-player iframe:not([src=""]) + ::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Modal de Seleção de Estados - Cores do Tema com Contraste Melhorado */
.state-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 153, 0.92); /* Azul do tema com mais transparência */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.state-selection-modal.active {
    opacity: 1;
    visibility: visible;
}

.state-selection-content {
    background: var(--text-white); /* Branco puro para contraste */
    border-radius: 15px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 
        0 25px 50px rgba(0, 51, 153, 0.4),
        0 10px 25px rgba(0, 51, 153, 0.2);
    border: 2px solid var(--highlight-yellow);
}

.state-selection-modal.active .state-selection-content {
    transform: scale(1) translateY(0);
}

.state-selection-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--highlight-yellow);
}

.state-selection-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.state-selection-header p {
    color: var(--text-dark-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.close-state-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--highlight-yellow);
    color: var(--text-black);
    border: 2px solid var(--highlight-yellow);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.close-state-modal:hover {
    background: #FFD700;
    border-color: #FFD700;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.6);
}

.states-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.state-option {
    background: rgba(0, 102, 204, 0.05);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

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

.state-option:hover::before {
    left: 100%;
}

.state-option:hover {
    border-color: var(--highlight-yellow);
    background: rgba(255, 204, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.state-option:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.state-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.state-details h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
    color: var(--primary-blue);
    line-height: 1.3;
}

.state-details p {
    font-size: 0.9rem;
    color: var(--text-dark-gray);
    margin: 0;
    line-height: 1.4;
}

.state-arrow {
    color: var(--secondary-blue);
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.state-option:hover .state-arrow {
    color: var(--highlight-yellow);
    transform: translateX(6px) scale(1.1);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .state-selection-content {
        padding: 30px 24px;
        margin: 20px;
        width: calc(100% - 40px);
        border-radius: 10px;
    }
    
    .state-selection-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .state-selection-header h3 {
        font-size: 1.5rem;
    }
    
    .state-selection-header p {
        font-size: 0.9rem;
    }
    
    .state-option {
        padding: 16px 20px;
    }
    
    .state-details h4 {
        font-size: 1.1rem;
    }
    
    .state-details p {
        font-size: 0.85rem;
    }
    
    .close-state-modal {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .state-selection-content {
        padding: 24px 20px;
        margin: 15px;
        width: calc(100% - 30px);
    }
    
    .state-selection-header h3 {
        font-size: 1.3rem;
    }
    
    .states-list {
        gap: 10px;
    }
    
    .state-option {
        padding: 14px 16px;
    }
    
    .state-details h4 {
        font-size: 1rem;
    }
    
    .state-details p {
        font-size: 0.8rem;
    }
}

