/* ===== RESET & VARIABLES ===== */
:root {
    /*--primary-blue: rgb(0, 153, 255);*/
    --primary-blue: #04a0fb;
    /*--primary-blue-dark: rgb(0, 102, 204);*/
    --primary-blue-dark:#048cfb;
    --primary-blue-light: #04bbfb;
    --secondary-black: #080909;
    --secondary-gray: #333333;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    --success: #28a745;
    --check-green: #00c851;
    --warning: #ffc107;
    --danger: #dc3545;
    --brancomodify: #dbdbdb;
    --teste:#2abef2;
    --subtitle:#2e2e2e;
    
    /*--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;*/
    --font-primary: "Montserrat", sans-serif;
    font-style: normal;
    
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--secondary-black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Container responsivo */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Tipografia responsiva */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
}

/* Tipografia específica para dispositivos móveis modernos */
@media (max-width: 450px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    
    body {
        font-size: 14px;
    }
}

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--brancomodify);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    
}
.plano-action a {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1000;
}

.plano-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}




.plano-action {
  margin-top: auto;
  padding: 0 2rem 2rem;
}
.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    cursor:pointer;
    
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
   
}

.btn-whatsapp {
    background-color: var(--success);
    color: var(--white);
}

/* Responsividade dos botões */
@media (max-width: 768px) {
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px; /* Área de toque adequada para mobile */
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 18px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        min-height: 50px; /* Área de toque maior para telas muito pequenas */
    }
}

.btn-whatsapp:hover {
    background-color: #218838;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-black);
    /*background-color: rgba(255, 255, 255, 0.95);*/
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--secondary-black);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    /*background-color: rgba(255, 255, 255, 0.98);*/
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo img {
    height: 72px;
    width: 110px;
}

.city {
    font-size: 0.875rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brancomodify);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-black);
    margin: 3px 0;
    transition: var(--transition-fast);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Promoção de Inauguração - Topo Central */
.promocao-inauguracao {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    animation: fadeInDown 1.5s ease-out;
}

.promocao-inauguracao h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
    text-align: center;
    background: linear-gradient(45deg, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

/* Planos à esquerda */
.hero-left {
    position: absolute;
    left: 14%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    animation: slideInLeft 1.5s ease-out;
}

.palnos-image {
    width: 300px;
    height: auto;
    max-width: 100%;
}

/* Texto abaixo dos planos */
.ultra-velocidade {
    position: absolute;
    left: 8%;
    top: 65%;
    z-index: 3;
    animation: slideInLeft 1.5s ease-out 0.3s both;
}

.ultra-velocidade p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #03bbfb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #03bbfb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Personagem no centro */
.hero-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    animation: fadeInUp 2s ease-out 0.5s both;
}

.personagem-image {
    width: 400px;
    height: auto;
    max-width: 100%;
    animation: badge-pulse 2s ease-in-out infinite;
}

/* Texto à direita */
.hero-right {
    position: absolute;
    right: 10%;
    top: 38%;
    transform: translateY(-50%);
    z-index: 3;
    animation: slideInRight 1.5s ease-out 1s both;
}

.texto-image {
    width: 250px;
    height: auto;
    max-width: 100%;
}

/* Programação para toda família */
.programacao-familia {
    position: absolute;
    right: 7%;
    top: 50%;
    z-index: 3;
    margin-top: 20px;
    animation: slideInRight 1.5s ease-out 1.3s both;
}

.programacao-familia p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B35;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    border: 2px solid #FF6B35;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Container dos canais */
.canais-container {
    position: absolute;
    right: 7%;
    top: 60%;
    display: flex;
    gap: 10px;
    z-index: 3;
    border-radius: 20px;
    animation: slideInRight 1.5s ease-out 1.6s both;
}

.canal-logo {
    width: 70px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.canal-logo:hover {
    transform: scale(1.1);
}

/* Consulte as condições */
.consulte-condicoes {
    position: absolute;
    right: 11%;
    top: 70%;
    z-index: 3;
    animation: slideInRight 1.5s ease-out 1.9s both;
}

.consulte-condicoes p {
    font-size: 1rem;
    font-weight: 600;
    color: #a5a5a5;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.932);
    padding: 6px 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Botões de ação */
.hero-actions {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
    animation: fadeInUp 1.5s ease-out 2.2s both;
}

/* Animações */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translate(-50%, -30%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        transform: translateX(-50%) translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Tech Particles Animation */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 4s; }
.particle:nth-child(6) { top: 50%; left: 80%; animation-delay: 5s; }
.particle:nth-child(7) { top: 70%; left: 90%; animation-delay: 6s; }
.particle:nth-child(8) { top: 10%; left: 60%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    /*background: url('hero-bg-dynamic.jpg') center/cover no-repeat;*/
    opacity: 0.15;
    z-index: -1;
    border-radius: var(--border-radius-lg);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.02); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ffffff;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Speed Waves Animation */
.speed-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 235, 59, 0.6);
    border-radius: 50%;
    animation: wave-pulse 2s ease-out infinite;
}

.wave-1 {
    width: 60px;
    height: 60px;
    top: 130%;
    left: 190%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2 {
    width: 120px;
    height: 120px;
    top: 230%;
    right: 110%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.wave-3 {
    width: 180px;
    height: 180px;
    top: 0%;
    left: 4%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-4 {
    width: 180px;
    height: 180px;
    top: 1%;
    left: 1%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-5 {
    width: 180px;
    height: 180px;
    top: 120%;
    left: 2%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

@keyframes wave-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Fiber Optic Animation */
.fiber-optic-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffeb3b, transparent);
    border-radius: 2px;
}

.fiber-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
}

.light-pulse {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffeb3b, transparent);
    border-radius: 2px;
    animation: light-travel 1.5s linear infinite;
}

.pulse-1 { animation-delay: 0s; }
.pulse-2 { animation-delay: 0.5s; }
.pulse-3 { animation-delay: 1s; }

@keyframes light-travel {
    0% { left: -20px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100px; opacity: 0; }
}

.speed-indicator {
    display: flex;
    align-items: center;
    position:relative;
    bottom: -1px;
    left: 90%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}




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

.speed-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.speed-unit {

    font-family:"Montserrat", sans-serif;
    font-size: 12px;
    color: var(--white);
    
}

.connection-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.connection-status i {
    color: #4caf50;
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-sobre {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

.section-title-sobre::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /*background-color: var(--brancomodify);*/
    border-radius: 2px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /*background-color: var(--brancomodify);*/
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--subtitle);
}

.section-subtitle-plano {
    font-size: 1.125rem;
    color: var(--white);
}

/* ===== SOBRE SECTION ===== */
.sobre {
    background-color: var(--gray-light);
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.sobre-text h3 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sobre-text h3:first-child {
    margin-top: 0;
}

.valores-list {
    list-style: none;
    margin-top: 1rem;
}

.valores-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-black);
}

.valores-list i {
    color: #00c851;
    font-size: 1.125rem;
}

.sobre-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 1.25rem;
}

.stat-label {
    color: var(--gray-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== PLANOS SECTION ===== */
.planos {
    background-color: var(--secondary-black);
    position: relative;
    overflow: hidden;
}

.planos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.planos .container {
    position: relative;
    z-index: 1;
    background-color: var(--secondary-black);
}

.planos-animation-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.planos-animation-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: badge-pulse 2s ease-in-out infinite;
}

/* Responsividade do título da seção de planos */
@media (max-width: 768px) {
    .planos-animation-header h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .planos-animation-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .planos-animation-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
    }
    
    .planos-animation-header {
        margin-bottom: 2rem;
    }
}

/* Título específico para dispositivos móveis modernos */
@media (max-width: 450px) {
    .planos-animation-header h3 {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .planos-animation-header {
        margin-bottom: 1.5rem;
    }
}

.planos-animation-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--white), #c9c9c9);
    border-radius: 2px;
    
}

.planos-animation-header-banner h3 {
    position: absolute;
    text-align: center;
    top: 10%;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes glow-line {
    0% { box-shadow: 0 0 5px var(--primary-blue); }
    100% { box-shadow: 0 0 20px var(--primary-blue), 0 0 30px rgba(0, 153, 255, 0.5); }
}

.speed-rocket {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    color: var(--primary-blue);
    animation: rocket-fly 3s ease-in-out infinite;
    margin-top: 1rem;
}

.rocket-trail {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), #00c851, transparent);
    transform: translateY(-50%);
    animation: trail-fade 3s ease-in-out infinite;
    border-radius: 2px;
}

.rocket-trail::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.3), rgba(0, 200, 81, 0.3), transparent);
    border-radius: 4px;
    animation: trail-glow 3s ease-in-out infinite;
}

@keyframes rocket-fly {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(10px) rotate(2deg); }
    50% { transform: translateX(20px) rotate(5deg); }
    75% { transform: translateX(10px) rotate(2deg); }
}

@keyframes trail-fade {
    0%, 100% { opacity: 0.4; width: 60px; }
    50% { opacity: 1; width: 100px; }
}

@keyframes trail-glow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

/* Melhorias de responsividade para planos-grid */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .planos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem;
    }
}

/* Forçar coluna única para dispositivos móveis modernos */
@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 500px !important;
        margin: 0 auto 3rem !important;
    }
}

@media (max-width: 480px) {
    .planos-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 380px !important;
        margin: 0 auto 2rem !important;
    }
}

/* Específico para dispositivos móveis modernos */
@media (max-width: 450px) {
    .planos-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 360px !important;
        margin: 0 auto 2rem !important;
    }
    
    .plano-card {
        min-width: unset !important;
        width: 100% !important;
    }
}

@keyframes glow {
  from { box-shadow: 0 0 5px #04a0fb, 0 0 10px #04a0fb; }
  to   { box-shadow: 0 0 20px #04a0fb, 0 0 40px #04a0fb; }
}

.plano-card {
    background: var(--white);
    border: 3px solid transparent; 
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    /*transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
    position: relative;
    /*transform-style: preserve-3d;*/
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    /*animation: glow 2s infinite alternate;*/
   animation: glow 2s infinite alternate;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

.plano-card:hover {
    /* Aumenta o card moderadamente ao passar o mouse */
    transform: scale(1.05); 
    /* Adiciona uma borda azul brilhante para criar um efeito de foco */
    box-shadow: 0 0 25px rgba(4, 160, 251, 0.7);
    border-color: var(--primary-blue-light);
    animation: badge-pulse 2s ease-in-out infinite;
}

/* Desabilitar hover em dispositivos touch para melhor experiência mobile */
@media (hover: none) and (pointer: coarse) {
    .plano-card:hover {
        transform: none;
        animation: none;
    }
}

/* Reduzir ainda mais o efeito hover em telas pequenas */
@media (max-width: 768px) {
    .plano-card:hover {
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(4, 160, 251, 0.5);
    }
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.05) 0%, rgba(0, 200, 81, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 1;
    animation: shine 3s ease-in-out infinite;
}

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

.plano-card.feature:hover {
    transform: scale(1.08) rotateX(7deg) translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 153, 255, 0.3);
}


@keyframes border-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.maismais {
    height: 42px;
    width: 42px;
    position: absolute;
    top: 0;
    right: 0;

    
}

.plano-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #8fc9ff, var(--primary-blue));
    color: var(--white);
    padding: 7px;
    font-size: 0.875rem;
    font-weight: 300;
    border-bottom-left-radius: var(--border-radius-lg);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0,50px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Plano Speed Header Animation */
.plano-speed-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
}

.plano-speed-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.speed-display {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: speed-glow 2s ease-in-out infinite alternate;
}

@keyframes speed-glow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 200, 81, 0.3); }
}

.cena {
position:relative;
width:100%;
/*background-color:#1a1a1a;*/
overflow: hidden;
display:flex;
justify-content:center;
align-items:center;
padding:20px 0 20px;
}

.cena img {
width:50%;
max-width:180px;
transform: rotate(31deg);
}

/* Responsividade da animação do foguete */
@media (max-width: 768px) {
    .cena {
        padding: 15px 0;
    }
    
    .cena img {
        max-width: 120px;
        width: 40%;
    }
}

@media (max-width: 480px) {
    .cena {
        padding: 10px 0;
    }
    
    .cena img {
        max-width: 80px;
        width: 35%;
    }
}

.cena span:nth-child(1) {
position:absolute;
top:5px;
right:10px;
left: initial;
animation-delay:0;
animation-duration:1s;
}
.cena span:nth-child(2) {
position:relative;
top:-20px;
right:80px;
animation-delay:-0.2s;
animation-duration:1s;
}
.cena span:nth-child(3) {
position:relative;
top:-15px;
right:20px;
animation-delay:-0.1s;
animation-duration:1s;
}
.cena span:nth-child(4) {
position:relative;
top:20px;
right:180px;
animation-delay:-0.6s;
animation-duration:1.5s;
}
.cena span:nth-child(5) {
position:relative;
top:35px;
right:200px;
animation-delay:0.8s;
animation-duration:1.5s;
}
.cena span:nth-child(6) {
position:relative;
top:30px;
right:10px;
animation-delay:-1s;
animation-duration:1s;
}
.cena span:nth-child(7) {
position:relative;
top:30px;
right:10px;
animation-delay:-1s;
animation-duration:1s;
}
.cena span:nth-child(8) {
position:relative;
top:30px;
right:10px;
animation-delay:-1s;
animation-duration:1s;
}
.cena span:nth-child(9) {
position:relative;
top:30px;
right:10px;
animation-delay:-1s;
animation-duration:1s;
}

.cena span {
    animation: estrela 1s linear infinite;
}

.cena span:before {
content:'';
position:absolute;
transform: translateY(50%);
width:100px;
height:1px;
background: linear-gradient(90deg, #ffffff, transparent);
}

@keyframes estrela {
  0% {
    transform: translateX(20rem);
	opacity:1;
  }
   70% {
	opacity:1;
  }
  100% {
    transform: translateX(-20rem);
	opacity:0;
  }
}


.foguete {
animation: foguete 0.1s ease infinite;
}
@keyframes foguete {
	0%,100%  {
		transform: translateX(-1px);
	}
	100% {
		transform: translateX(1px);
	}
}


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

@keyframes speed-line {
    0% { width: 10px; opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
    100% { width: 30px; opacity: 0.3; transform: translateX(10px); }
}

.plano-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-gray));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.plano-card.featured .plano-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-black));
}

.plano-name {
    font-size: 1.5rem;
    color: var(--white);
}

.plano-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
}

.value {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsividade dos preços dos planos */
@media (max-width: 768px) {
    .value {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.1rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .value {
        font-size: 2rem;
    }
    
    .currency {
        font-size: 1rem;
    }
    
    .period {
        font-size: 0.8rem;
    }
}

/* Preços específicos para dispositivos móveis modernos */
@media (max-width: 450px) {
    .value {
        font-size: 1.8rem;
    }
    
    .currency {
        font-size: 0.9rem;
    }
    
    .period {
        font-size: 0.75rem;
    }
}

.plano-features {
    padding: 2rem;
}

/* Responsividade das features dos planos */
@media (max-width: 768px) {
    .plano-features {
        padding: 1.5rem;
    }
    
    .plano-features li {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .plano-features {
        padding: 1rem;
    }
    
    .plano-features li {
        margin-bottom: 0.7rem;
        font-size: 0.9rem;
    }
}

/* Features específicas para dispositivos móveis modernos */
@media (max-width: 450px) {
    .plano-features {
        padding: 0.8rem;
    }
    
    .plano-features li {
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .plano-features .fa-check {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 0.9rem;
    }
}



.plano-features ul {
    list-style: none;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

.plano-features .fa-download, .fa-upload {
    color: var(--primary-blue);
    margin-left: 9px;
    
    
}

.plano-features .fa-check {
    color: #00c851;
    font-size: 1.125rem;
}

.feature-icon {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.plano-action {
    padding: 0 2rem 2rem;
}

.plano-action .btn {
    width: 100%;
    justify-content: center;
}

.planos-info {
    text-align: center;
    color: var(--white);
    font-size: 0.875rem;
}

.planos-info i {
    color: var(--white);
    margin-right: 0.5rem;
}

/* ===== DIFERENCIAIS SECTION ===== */
.diferenciais {
    background-color: var(--gray-light);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.diferencial-card h3 {
    color: var(--secondary-black);
    margin-bottom: 1rem;
}

.diferencial-card p {
    color: var(--gray-dark);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* ===== CONTATO SECTION ===== */
.contato {
    background-color: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contato-card {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contato-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contato-card h3 {
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
}

.contato-card p {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.contato-card a {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.875rem;
}

.contato-form {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.contato-form h3 {
    color: var(--secondary-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== MAPA SECTION ===== */
.mapa {
    background-color: var(--gray-light);
}

.mapa-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mapa-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.fa-location-dot {
    color: red;
    height: 15x;
    width:30px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 120px;
    width: 180px;
    margin-bottom: 1rem;
    /*filter: brightness(0) invert(1);*/
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brancomodify);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brancomodify);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-blue);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #218838;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .sobre-content {
        gap: 2rem;
    }
    
    .contato-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-flow: row;
    }
    
    .planos-grid {
        
        perspective: 1500px; 
    }           
    /*
    .plano-card.featured {
        transform: none;
    }                                                            
    /*
    .plano-card.featured:hover {
        transform: translateY(-10px);
    */
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Responsividade para Hero Section */
@media (max-width: 1024px) {
    .promocao-inauguracao h3 {
        font-size: 2rem;
    }
    
    .hero-left {
        left: 2%;
    }
    
    .hero-right {
        right: 2%;
    }
    
    .ultra-velocidade {
        left: 2%;
    }
    
    .programacao-familia {
        right: 2%;
    }
    
    .canais-container {
        right: 2%;
        gap: 8px;
    }
    
    .consulte-condicoes {
        right: 2%;
    }
    
    .palnos-image {
        width: 250px;
    }
    
    .personagem-image {
        width: 350px;
    }
    
    .texto-image {
        width: 200px;
    }
    
    .canal-logo {
        width: 50px;
        height: 35px;
    }
    
    .ultra-velocidade p {
        font-size: 1.2rem;
    }
    
    .programacao-familia p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        padding: 20px;
        height: auto;
        min-height: 100vh;
    }
    
    .promocao-inauguracao {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: 1;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .promocao-inauguracao h3 {
        font-size: 1.8rem;
    }
    
    .hero-left {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 2;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .ultra-velocidade {
        position: relative;
        left: auto;
        top: auto;
        order: 3;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 4;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        order: 5;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .programacao-familia {
        position: relative;
        right: auto;
        top: auto;
        order: 6;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .canais-container {
        position: relative;
        right: auto;
        top: auto;
        order: 7;
        margin-bottom: 15px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .consulte-condicoes {
        position: relative;
        right: auto;
        top: auto;
        order: 8;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-actions {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        order: 9;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .palnos-image {
        width: 200px;
    }
    
    .personagem-image {
        width: 280px;
    }
    
    .texto-image {
        width: 150px;
    }
    
    .canal-logo {
        width: 45px;
        height: 30px;
    }
    
    .ultra-velocidade p {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
    
    .programacao-familia p {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .consulte-condicoes p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .promocao-inauguracao h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .palnos-image {
        width: 150px;
    }
    
    .personagem-image {
        width: 220px;
    }
    
    .texto-image {
        width: 120px;
    }
    
    .canal-logo {
        width: 40px;
        height: 25px;
    }
    
    .canais-container {
        gap: 10px;
    }
    
    .ultra-velocidade p {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .programacao-familia p {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
    
    .consulte-condicoes p {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
}

/* ========================================
   CORREÇÕES ESPECÍFICAS PARA DISPOSITIVOS MÓVEIS MODERNOS
   ======================================== */

/* Forçar layout em coluna única para Samsung S20 Ultra e iPhone 14 Pro Max */
@media screen and (max-width: 450px) {
    .planos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        max-width: 380px !important;
        margin: 0 auto 2rem !important;
        padding: 0 1rem !important;
    }
    
    .plano-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        margin: 0 !important;
        flex: none !important;
    }
    
    /* Garantir que não há float ou flexbox interferindo */
    .planos-grid > * {
        float: none !important;
        flex: none !important;
        width: 100% !important;
    }
}

/* Específico para Samsung S20 Ultra (412px) */
@media screen and (max-width: 412px) {
    .planos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        max-width: 360px !important;
        margin: 0 auto 2rem !important;
        padding: 0 1rem !important;
    }
}

/* Específico para iPhone 14 Pro Max (430px) */
@media screen and (max-width: 430px) {
    .planos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        max-width: 380px !important;
        margin: 0 auto 2rem !important;
        padding: 0 1rem !important;
    }
}

/* Sobrescrever qualquer CSS que possa estar interferindo */
@media screen and (max-width: 450px) {
    .planos-container .planos-grid,
    section .planos-grid,
    div .planos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .planos-grid .plano-card:nth-child(1),
    .planos-grid .plano-card:nth-child(2),
    .planos-grid .plano-card:nth-child(3) {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Melhorar tipografia para dispositivos móveis modernos */
@media screen and (max-width: 450px) {
    .planos-animation-header h3 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .plano-card h4 {
        font-size: 1.2rem !important;
    }
    
    .value {
        font-size: 1.8rem !important;
    }
    
    .currency {
        font-size: 0.9rem !important;
    }
    
    .period {
        font-size: 0.75rem !important;
    }
    
    .plano-features li {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.6rem !important;
    }
}


/* ========================================
   HERO SECTION - MELHORIAS PARA DISPOSITIVOS MÓVEIS MODERNOS
   ======================================== */

/* Melhorias específicas para dispositivos móveis modernos */
@media screen and (max-width: 450px) {
    .hero {
        min-height: 100vh !important;
        padding-top: 60px !important;
    }
    
    .hero-content-wrapper {
        flex-direction: column !important;
        padding: 15px !important;
        height: auto !important;
        min-height: calc(100vh - 60px) !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    /* Promoção de Inauguração */
    .promocao-inauguracao {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        order: 1 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .promocao-inauguracao h3 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }
    
    /* Planos à esquerda - agora centralizado */
    .hero-left {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        order: 2 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .palnos-image {
        width: 180px !important;
        height: auto !important;
        max-width: 90% !important;
    }
    
    /* Texto Ultra Velocidade */
    .ultra-velocidade {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        order: 3 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .ultra-velocidade p {
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
        margin: 0 auto !important;
        max-width: 280px !important;
        line-height: 1.3 !important;
    }
    
    /* Personagem no centro */
    .hero-center {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        order: 4 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .personagem-image {
        width: 220px !important;
        height: auto !important;
        max-width: 80% !important;
    }
    
    /* Texto à direita - agora centralizado */
    .hero-right {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        order: 5 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .texto-image {
        width: 120px !important;
        height: auto !important;
        max-width: 70% !important;
    }
    
    /* Programação para família */
    .programacao-familia {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        order: 6 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .programacao-familia p {
        font-size: 0.85rem !important;
        padding: 6px 10px !important;
        margin: 0 auto !important;
        max-width: 250px !important;
        line-height: 1.3 !important;
    }
    
    /* Container dos canais */
    .canais-container {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        order: 7 !important;
        margin-bottom: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 0 20px !important;
    }
    
    .canal-logo {
        width: 35px !important;
        height: 25px !important;
        object-fit: contain !important;
    }
    
    /* Consulte condições */
    .consulte-condicoes {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        order: 8 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .consulte-condicoes p {
        font-size: 0.8rem !important;
        padding: 4px 8px !important;
        margin: 0 auto !important;
        max-width: 200px !important;
    }
    
    /* Ações da Hero */
    .hero-actions {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        order: 9 !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-actions .btn {
        min-width: 120px !important;
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
    }
}

/* Ajustes específicos para Samsung S20 Ultra (412px) */
@media screen and (max-width: 412px) {
    .promocao-inauguracao h3 {
        font-size: 1.3rem !important;
    }
    
    .palnos-image {
        width: 160px !important;
    }
    
    .personagem-image {
        width: 200px !important;
    }
    
    .texto-image {
        width: 110px !important;
    }
    
    .ultra-velocidade p {
        font-size: 0.85rem !important;
        max-width: 260px !important;
    }
    
    .programacao-familia p {
        font-size: 0.8rem !important;
        max-width: 230px !important;
    }
    
    .canal-logo {
        width: 32px !important;
        height: 22px !important;
    }
}

/* Ajustes específicos para iPhone 14 Pro Max (430px) */
@media screen and (max-width: 430px) {
    .promocao-inauguracao h3 {
        font-size: 1.35rem !important;
    }
    
    .palnos-image {
        width: 170px !important;
    }
    
    .personagem-image {
        width: 210px !important;
    }
    
    .texto-image {
        width: 115px !important;
    }
}
