/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    min-width: 320px;
}

/* Prevenir overflow horizontal */
.container,
.hero-container,
.nav-container {
    max-width: 100%;
    overflow-x: hidden;
}

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

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

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

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

.logo-img {
    height: 45px !important;
    width: auto;
    max-height: 45px;
    min-height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scale(1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}



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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    position: relative;
}

.nav-menu a:hover {
    color: white !important;
    background: #ff4400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,68,0,0.3);
}

/* Menu ativo/selecionado */
.nav-menu a.active {
    color: white !important;
    background: #ff4400;
    box-shadow: 0 4px 15px rgba(255,68,0,0.3);
}

/* Garantir que o texto seja sempre branco quando ativo */
.nav-menu a.active,
.nav-menu a.active:hover {
    color: white !important;
    background: #ff4400 !important;
}

/* Regra específica para texto branco em menus ativos */
.nav-menu li a.active {
    color: white !important;
    background: #ff4400 !important;
    text-shadow: none !important;
}

/* Regra máxima para garantir texto branco */
.nav-container .nav-menu a.active {
    color: white !important;
    background: #ff4400 !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}

/* Botão Área do Assinante */
.area-assinante-btn {
    background: linear-gradient(135deg, #ff4400, #ff6600) !important;
    color: white !important;
    border: 3px solid #ff4400 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 2px rgba(255, 68, 0, 0.3) !important;
}

.area-assinante-btn: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;
}

.area-assinante-btn:hover:before {
    left: 100%;
}

.area-assinante-btn:hover {
    background: linear-gradient(135deg, #ff6600, #ff4400) !important;
    border-color: #ff6600 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255,68,0,0.4), 0 0 0 3px rgba(255, 102, 0, 0.4) !important;
}

/* Seção de Feedback */
.feedback {
    padding: 80px 0;
    background: #f8f9fa;
}

.feedback-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.feedback-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.feedback-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.feedback-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.feedback-title .amigo {
    color: #ff4400;
}

.feedback-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #ff4400;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255,68,0,0.3);
    margin-left: 0.5rem;
    vertical-align: middle;
}

.feedback-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    margin-top: 0.5rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid #ff4400;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,68,0,0.2);
}

.feedback-content {
    position: relative;
    z-index: 2;
}

.feedback-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4400;
}

.profile-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.3rem 0;
}



.feedback-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}



.speech-tail {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff4400;
}

/* Responsividade para Feedback */
@media (max-width: 768px) {
    .feedback {
        padding: 60px 0;
    }
    
    .feedback-header {
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    .feedback-title {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .feedback-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .feedback-title h2 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .feedback-subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .feedback-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .feedback-card {
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 20px;
    }
    
    .feedback-profile {
        margin-bottom: 1.5rem;
    }
    
    .profile-img {
        width: 60px;
        height: 60px;
    }
    
    .profile-info h4 {
        font-size: 1.2rem;
    }
    
    .feedback-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

/* Responsividade para Services */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    .services-title {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .services-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .services-title h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0;
    }
    
    .services-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Botão WhatsApp Flutuante - Design Minimalista */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.whatsapp-float:hover {
    background: #20b858;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-button span {
    white-space: nowrap;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon i {
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsividade da Navegação */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        text-align: center;
        width: 100%;
        border-radius: 8px;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    .whatsapp-button span {
        display: none;
    }
}

/* Hero Section */
.hero {
    background-image: url('./images/header1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(255,68,0,0.15) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    color: white;
}

.highlight {
    color: #ff4400;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.4);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,68,0,0.3);
}

.hero-features {
    list-style: none;
    margin-bottom: 2rem;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,68,0,0.2);
}

.hero-features li {
    padding: 8px 0;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}


.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Hero Section (Streaming) */
.streaming-hero-section {
    background-image: url('./images/header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.streaming-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(255,68,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.streaming-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 25vh;
}

.streaming-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: slideInFromTop 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.streaming-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.streaming-hero-content h1 .highlight-bg {
    background: #ff4400;
    color: white;
    padding: 0.15rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(255,68,0,0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255,68,0,0.6);
    }
}

.streaming-hero-content h1 .streaming-bg {
    background: #000000;
}

.streaming-hero-content p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.streaming-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.streaming-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255,68,0,0.85);
    border-radius: 20px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
    text-align: center;
}

.streaming-features .feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255,68,0,0.95);
}

.streaming-features .feature-item i {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

.streaming-highlights {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.streaming-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255,68,0,0.95) 0%, rgba(255,68,0,0.85) 100%);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(255,68,0,0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.streaming-highlights .highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.streaming-highlights .highlight-item:hover::before {
    left: 100%;
}

.streaming-highlights .highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,68,0,0.6);
}

.streaming-highlights .highlight-item i {
    font-size: 1.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.streaming-highlights .highlight-item span {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* Responsividade para Hero */
@media (max-width: 768px) {
    .logo-img {
        height: 35px !important;
        max-height: 35px;
        min-height: 55px;
    }
    
    .streaming-hero-section {
        padding: 100px 0 40px;
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .streaming-hero-container {
        padding: 0 1rem;
        margin-top: 15vh;
    }
    
    .streaming-hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .streaming-hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .streaming-hero-content p {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .streaming-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .streaming-features .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .streaming-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .streaming-highlights .highlight-item {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.btn-whatsapp i,
.btn-contact i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

.btn-primary {
    background: #ff4400;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #e63900;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 68, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff4400;
    padding: 15px 30px;
    border: 2px solid #ff4400;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff4400;
    color: white;
    transform: translateY(-2px);
}

.speed-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.speed-circle {
    width: 200px;
    height: 200px;
    border: 8px solid #ff4400;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: pulse 2s infinite;
}

.speed-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4400;
}

.speed-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 68, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 0, 0); }
}

/* Services Section */
.services {
    padding: 80px 0 120px 0;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.services-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.services-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.services-title .servicos {
    color: #ff4400;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    margin-top: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Fallback flexbox para melhor compatibilidade */
@supports not (display: grid) {
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-card {
        flex: 1 1 250px;
        max-width: 300px;
        margin: 1rem;
    }
}

.service-card {
    background: #ffffff;
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #ff4400;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #ff4400;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    opacity: 1;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: #555;
    line-height: 1.4;
}

.service-card p {
    font-weight: 300;
    color: #666;
}

/* Premiere Section */
.premiere-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4400 0%, #ff6600 100%);
    color: white;
    position: relative;
}

.premiere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premiere-left {
    padding-right: 2rem;
}

.premiere-badge {
    display: inline-block;
    background: #25d366;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    line-height: 0;
}

.premiere-badge-logo {
    height: 30px;
    width: auto;
    filter: none;
    display: block;
}

/* Fallback caso a imagem não carregue */
.premiere-badge:not(:has(img))::before {
    content: 'PREMIERE';
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premiere-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.premiere-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.premiere-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premiere-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.premiere-players {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.premiere-players-img {
    width: 100%;
    height: auto;
    display: block;
}

.premiere-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #25d366;
    padding: 10px 15px;
    border-radius: 8px;
}

.premiere-logo-img {
    height: 30px;
    width: auto;
    filter: none;
}

/* Responsividade para Premiere */
@media (max-width: 768px) {
    .premiere-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .premiere-left {
        padding-right: 0;
        order: 2;
    }
    
    .premiere-right {
        order: 1;
    }
    
    .premiere-title {
        font-size: 2rem;
    }
    
    .premiere-description {
        font-size: 1rem;
    }
    
    .premiere-players-img {
        max-width: 100%;
    }
}

/* Streaming Section */
.streaming-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.streaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="300" r="30" fill="rgba(255,255,255,0.03)"/><circle cx="300" cy="800" r="40" fill="rgba(255,255,255,0.04)"/></svg>');
    z-index: 1;
}

.streaming-content {
    position: relative;
    z-index: 2;
}

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

.streaming-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow: hidden;
}

/* Título mais compacto quando tem cidade */
.streaming-title.with-city {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.streaming-highlight {
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.streaming-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: center;
}



.city-coverage p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.city-list {
    list-style: none;
    columns: 2;
    gap: 2rem;
    font-size: 0.9rem;
}

.city-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

/* Tech Plan Cards */
.plans-tech-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
}

/* Garantir bordas arredondadas em todos os cards */
.plan-tech:first-child,
.plan-tech:last-child {
    border-radius: 15px !important;
}

.plan-tech {
    min-width: 280px;
    flex: 1;
    max-width: 320px;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.plan-tech.white-theme {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    color: #333;
    border: 1px solid rgba(255,68,0,0.1);
    box-shadow: 0 8px 32px rgba(255,68,0,0.05);
}

.plan-tech.black-theme {
    background: linear-gradient(145deg, rgba(26,26,26,0.95) 0%, rgba(45,45,45,0.95) 100%);
    color: white;
    border: 1px solid rgba(255,68,0,0.2);
    box-shadow: 0 8px 32px rgba(255,68,0,0.1);
}

.plan-tech:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(255,68,0,0.15);
}

.plan-tech.white-theme:hover {
    border-color: #ff4400;
    box-shadow: 0 25px 70px rgba(255,68,0,0.2);
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(255,248,245,1) 100%);
}

.plan-tech.black-theme:hover {
    border-color: #ff4400;
    box-shadow: 0 25px 70px rgba(255,68,0,0.3);
    background: linear-gradient(145deg, rgba(26,26,26,1) 0%, rgba(45,35,30,1) 100%);
}







/* Plan Header */
.plan-header-tech {
    text-align: center;
    margin-bottom: 1.5rem;
}



.speed-display {
    margin-bottom: 1rem;
}

.speed-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ff4400;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255,68,0,0.4);
    font-family: 'Poppins', monospace;
    letter-spacing: -2px;
}

.speed-unit {
    font-size: 1.3rem;
    font-weight: 700;
    color: #666;
    margin-left: 0.3rem;
    opacity: 0.8;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-tech.black-theme .speed-unit {
    color: #bbb;
}

.tech-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(255,68,0,0.1) 0%, rgba(255,68,0,0.05) 100%);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff4400;
    border: 1px solid rgba(255,68,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255,68,0,0.1);
}

.plan-tech.black-theme .tech-indicator {
    background: linear-gradient(135deg, rgba(255,68,0,0.25) 0%, rgba(255,68,0,0.15) 100%);
    border-color: rgba(255,68,0,0.3);
    box-shadow: 0 4px 15px rgba(255,68,0,0.2);
}

/* Price Section */
.price-section-tech {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.plan-tech.black-theme .price-section-tech {
    border-color: #444;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0;
    display: inline;
}

.price-main sup {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
    display: inline;
    margin-left: 0.3rem;
}

/* Features */
.features-tech {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    background: rgba(255,68,0,0.08);
    border-radius: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    min-height: 2.2rem;
    border: 1px solid rgba(255,68,0,0.15);
    transition: all 0.3s ease;
}

.plan-tech.black-theme .feature-item {
    background: rgba(255,68,0,0.15);
    border-color: rgba(255,68,0,0.25);
}

.feature-item:hover {
    background: rgba(255,68,0,0.12);
    border-color: rgba(255,68,0,0.25);
    transform: translateX(2px);
}

.plan-tech.black-theme .feature-item:hover {
    background: rgba(255,68,0,0.25);
    border-color: rgba(255,68,0,0.35);
}

.feature-item i {
    color: #ff4400;
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.feature-item span {
    flex: 1;
    font-weight: 500;
}

/* Tech Button */
.btn-tech {
    width: 100%;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255,68,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.btn-tech:hover::before {
    left: 100%;
}

.btn-tech:hover {
    background: linear-gradient(135deg, #e63900 0%, #cc3300 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,68,0,0.5);
}

.plan-tech.black-theme .btn-tech {
    background: linear-gradient(135deg, #ff4400 0%, #ffa500 100%);
    color: #000;
    box-shadow: 0 6px 20px rgba(255,165,0,0.3);
}

.plan-tech.black-theme .btn-tech:hover {
    background: linear-gradient(135deg, #ffa500 0%, #ffb84d 100%);
    box-shadow: 0 15px 40px rgba(255,165,0,0.5);
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
}

/* Call-to-Action Moderna */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.cta-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4400 0%, #ffa500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 68, 0, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 68, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 68, 0, 0.6);
    }
}

.cta-text {
    text-align: left;
}

.cta-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    max-width: 400px;
}

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

.cta-whatsapp,
.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-phone {
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 68, 0, 0.4);
}

.cta-whatsapp:hover,
.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-whatsapp:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.cta-phone:hover {
    box-shadow: 0 15px 35px rgba(255, 68, 0, 0.6);
}

.cta-whatsapp i,
.cta-phone i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-whatsapp:hover i,
.cta-phone:hover i {
    transform: scale(1.1);
}

/* Botão antigo (mantido para compatibilidade) */
.btn-contact {
    background: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Plans Intro Section */
.plans-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    text-align: center;
}

/* Gaming Section */
.gaming-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
    color: white;
    position: relative;
    overflow: hidden;
    background-image: url('./images/gamer.png');
    background-size: 110% auto; /* Esticado para esconder marca d'água */
    background-position: right 20%; /* Posicionado mais para cima */
    background-repeat: no-repeat;
}

.gaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(15, 15, 15, 0.9) 0%, 
        rgba(15, 15, 15, 0.7) 30%, 
        rgba(15, 15, 15, 0.4) 60%, 
        rgba(15, 15, 15, 0.1) 100%);
    pointer-events: none;
}

.gaming-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.gaming-text {
    padding-right: 2rem;
}

.gaming-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 68, 0, 0.3);
}

.gaming-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gaming-highlight {
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gaming-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.gaming-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: center;
    align-self: center;
}

.gaming-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.gaming-feature:hover {
    background: rgba(255, 68, 0, 0.1);
    border-color: rgba(255, 68, 0, 0.4);
    transform: translateX(10px);
}

.gaming-feature i {
    color: #ff4400;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.gaming-feature span {
    font-weight: 500;
    font-size: 0.85rem;
}

.gaming-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    min-height: 600px;
    padding: 2rem;
}

.gamer-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 50px rgba(255, 68, 0, 0.4)) brightness(1.1) contrast(1.2);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 68, 0, 0.3);
    box-shadow: 
        0 0 30px rgba(255, 68, 0, 0.2),
        0 0 60px rgba(255, 68, 0, 0.1),
        0 0 90px rgba(255, 68, 0, 0.05);
}

.gamer-img:hover {
    transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(255, 68, 0, 0.6)) brightness(1.2) contrast(1.3);
    border-color: rgba(255, 68, 0, 0.6);
    box-shadow: 
        0 0 40px rgba(255, 68, 0, 0.3),
        0 0 80px rgba(255, 68, 0, 0.2),
        0 0 120px rgba(255, 68, 0, 0.1);
}

.gaming-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: 
        radial-gradient(circle, rgba(255, 68, 0, 0.3) 0%, rgba(255, 68, 0, 0.15) 30%, rgba(255, 68, 0, 0.08) 60%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    animation: gamingPulse 4s ease-in-out infinite;
}

.gaming-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle, rgba(255, 68, 0, 0.2) 0%, rgba(255, 68, 0, 0.1) 40%, transparent 100%);
    border-radius: 50%;
    animation: gamingPulse 3s ease-in-out infinite reverse;
}

.gaming-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle, rgba(255, 68, 0, 0.4) 0%, rgba(255, 68, 0, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: gamingPulse 2s ease-in-out infinite;
}

@keyframes gamingPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 68, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 68, 0, 0.8), 0 0 60px rgba(255, 68, 0, 0.4);
    }
}

/* Elementos Flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(255, 68, 0, 0.5);
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite;
}

.floating-icon-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s, 0s;
}

.floating-icon-2 {
    top: 50%;
    right: 25%;
    animation-delay: 2s, 1s;
}

.floating-icon-3 {
    bottom: 25%;
    right: 20%;
    animation-delay: 4s, 2s;
}

.floating-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(255, 68, 0, 0.8);
    transition: all 0.3s ease;
}

/* Responsividade para Gaming Section */
@media (max-width: 768px) {
    .gaming-section {
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }
    
    .gaming-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        padding: 1rem;
    }
    
    .gaming-text {
        padding-right: 0;
        order: 1;
        padding: 1rem;
    }
    
    .gaming-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .gaming-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .gaming-features {
        align-items: center;
        order: 2;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .gaming-feature {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .gaming-feature:hover {
        transform: translateY(-3px);
    }
    
    .gaming-image {
        order: 3;
        display: none; /* Ocultar imagem em mobile para melhor performance */
    }
    
    .floating-elements {
        display: none; /* Ocultar elementos flutuantes em mobile */
    }
}

/* Para Todos os Momentos Section */
.moments-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
    color: white;
    position: relative;
    padding: 80px 0;
}

/* Cabeçalho */
.moments-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.moments-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.moments-highlight {
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.moments-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 700px;
}

/* Grid de Imagens */
.moments-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.moment-image {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 68, 0, 0.2);
}

.moment-image:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 68, 0, 0.3);
    border-color: rgba(255, 68, 0, 0.4);
    z-index: 3;
    position: relative;
}

.moment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 30%, 
        rgba(0, 0, 0, 0.6) 70%, 
        rgba(0, 0, 0, 0.9) 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.moment-image:hover .moment-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 30%, 
        rgba(0, 0, 0, 0.5) 70%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.moment-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 68, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.moment-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.moment-overlay p {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.moment-cta-btn {
    background: rgba(255, 68, 0, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    align-self: flex-start;
    margin-top: 1rem;
}

.moment-cta-btn:hover {
    background: rgba(255, 68, 0, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 68, 0, 0.4);
}

.moment-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.moment-cta-btn:hover i {
    transform: translateX(2px);
}



/* Elementos Flutuantes */
.floating-elements-moments {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.floating-icon-moments {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(255, 68, 0, 0.5);
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite;
}

.floating-icon-moments.floating-icon-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s, 0s;
}

.floating-icon-moments.floating-icon-2 {
    top: 50%;
    right: 25%;
    animation-delay: 2s, 1s;
}

.floating-icon-moments.floating-icon-3 {
    bottom: 25%;
    right: 20%;
    animation-delay: 4s, 2s;
}

.floating-icon-moments:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(255, 68, 0, 0.8);
    transition: all 0.3s ease;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Fallback flexbox para melhor compatibilidade */
@supports not (display: grid) {
    .plans-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .plan-card {
        flex: 1 1 300px;
        max-width: 350px;
        margin: 1rem;
    }
}

.plan-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    background: #ff4400;
    color: white;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #ff4400;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-speed {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 300;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    font-weight: 300;
}

.btn-plan {
    background: #ff4400;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.featured .btn-plan {
    background: white;
    color: #ff4400;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Fiber Benefits Section */
.fiber-benefits {
    padding: 80px 0;
    background: #ffffff;
}

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

.fiber-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.fiber-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: #333;
}

.fiber-text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

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

.comparison-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ddd;
}

.comparison-item.fiber {
    border-left-color: #ff4400;
    background: linear-gradient(135deg, rgba(255,68,0,0.05) 0%, rgba(255,68,0,0.02) 100%);
}

.comparison-item.coaxial {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, rgba(220,53,69,0.05) 0%, rgba(220,53,69,0.02) 100%);
}

.comparison-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    padding: 0.5rem 0;
    font-weight: 400;
    color: #666;
}

.fiber-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.fiber-icon {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fiber-cable {
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #ff4400 0%, #ffa500 50%, #ff4400 100%);
    border-radius: 4px;
    position: relative;
    animation: fiberPulse 2s infinite;
}

.fiber-light {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff4400;
    border-radius: 50%;
    box-shadow: 0 0 20px #ff4400, 0 0 40px #ff4400;
    animation: lightMove 3s infinite;
}

@keyframes fiberPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(255,68,0,0.5); }
}

@keyframes lightMove {
    0% { left: -10px; opacity: 1; }
    50% { left: 50%; opacity: 0.7; }
    100% { left: 110px; opacity: 1; }
}

/* Additional Benefits Section */


/* About Section */
.about {
    padding: 80px 0;
    background: #ffffff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #666;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff4400;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
}

.network-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    position: relative;
}

.network-node {
    width: 60px;
    height: 60px;
    background: #ff4400;
    border-radius: 50%;
    margin: 0 20px;
    animation: networkPulse 2s infinite alternate;
}

.network-node:nth-child(2) {
    animation-delay: 0.5s;
}

.network-node:nth-child(3) {
    animation-delay: 1s;
}

@keyframes networkPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.contact-item {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid #ff4400;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 4px;
    width: auto !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 68, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 0, 0.2);
    border-color: #ff6600;
    background: #f8f9fa;
    z-index: 10;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: #ff4400;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: white;
}

.contact-item:hover .contact-icon {
    background: #ff6600;
    transform: scale(1.05);
}

.whatsapp-icon {
    background: #25d366 !important;
}

.contact-item:hover .whatsapp-icon {
    background: #128c7e !important;
}

.contact-info {
    flex-grow: 1;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
    color: #333;
}

.contact-item p {
    font-weight: 400;
    color: #666;
    margin: 0;
    font-size: 0.8rem;
}

.contact-highlight {
    background: linear-gradient(135deg, #ff4400 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Força layout horizontal em desktop */
@media (min-width: 769px) {
    .contact-content {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .contact-item {
        width: 300px !important;
        flex-shrink: 0 !important;
    }
}



/* Quick Actions Section */
.quick-actions {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
}

.quick-actions-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding-top: 1rem;
}



.quick-actions-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.quick-actions-highlight {
    background: linear-gradient(135deg, #ff4400 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-actions-header p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    white-space: nowrap;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.action-btn {
    background: #2a2a2a;
    color: white;
    text-decoration: none;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid #ff4400;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 4px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 68, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-btn:hover::before {
    opacity: 1;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 0, 0.2);
    border-color: #ff6600;
    background: #333333;
    z-index: 10;
}

.action-icon {
    width: 35px;
    height: 35px;
    background: #ff4400;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.action-btn:hover .action-icon {
    background: #ff6600;
    transform: scale(1.05);
}

.action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    flex-grow: 1;
}



/* City Selector */
.streaming-section .city-selector {
    background: transparent !important;
    backdrop-filter: none;
    padding: 10px 0 !important;
    margin-bottom: 15px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 10;
}

.streaming-section .city-selector-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important; /* Aumentado para dar mais espaço */
    position: relative;
}

.streaming-section .city-selector label {
    color: white !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    text-shadow: none !important;
}

.streaming-section .city-selector label:before {
    content: '' !important;
    font-size: 0 !important;
}

.streaming-section .city-selector select {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    color: white !important;
    min-width: 200px !important;
    max-width: 300px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    position: relative !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 10px center !important;
    background-repeat: no-repeat !important;
    background-size: 12px !important;
    padding-right: 32px !important;
    line-height: 1.4 !important;
    height: auto !important;
    white-space: normal !important;
    overflow: visible !important;
}

.streaming-section .city-selector select:focus {
    outline: none !important;
    border-color: white !important;
    box-shadow: none !important;
    transform: none !important;
}

.streaming-section .city-selector select:hover {
    border-color: white !important;
    box-shadow: none !important;
    transform: none !important;
}

.streaming-section .city-selector select option {
    padding: 10px 12px !important;
    font-weight: 400 !important;
    background: white !important;
    color: #333 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    min-height: 2.5rem !important;
}

.streaming-section .city-selector select option:checked {
    background: #ff4400 !important;
    color: white !important;
}

.streaming-section .city-selector select option:disabled {
    background: #f5f5f5 !important;
    color: #999 !important;
    font-style: italic !important;
}

/* Price old */
.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Responsive city selector */
@media (max-width: 768px) {
    .streaming-section .city-selector {
        padding: 15px !important;
        margin-bottom: 20px !important;
        background: rgba(0, 0, 0, 0.3) !important;
        border-radius: 10px !important;
        backdrop-filter: blur(10px) !important;
    }

    .streaming-section .city-selector-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .streaming-section .city-selector label {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    }

    .streaming-section .city-selector select {
        min-width: 200px !important;
        width: 100% !important;
        max-width: 300px !important;
        padding: 12px 16px !important;
        font-size: 0.9rem !important;
        padding-right: 40px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        color: #333 !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }
}

@media (max-width: 480px) {
    .streaming-section .city-selector select {
        max-width: 200px !important;
        padding: 4px 6px !important;
        padding-right: 20px !important;
        font-size: 0.75rem !important;
    }

    .streaming-section .city-selector label {
        font-size: 0.8rem !important;
    }
}

/* Footer */
.footer {
    background: #ff4400;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Fallback flexbox para melhor compatibilidade */
@supports not (display: grid) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-section {
        flex: 1 1 250px;
        margin: 1rem;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-weight: 300;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.social-link i {
    font-size: 16px;
}

.social-link.facebook {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border: 2px solid #1877f2;
    transform: scale(1.1);
}

.social-link.instagram {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.social-link.instagram:hover {
    background: #e4405f;
    color: white;
    border: 2px solid #e4405f;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-weight: 300;
    opacity: 0.8;
}

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
    
    /* Streaming Section Mobile */
    .streaming-section {
        padding: 60px 0;
    }
    
    .streaming-header {
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    .streaming-title {
        font-size: 1.8rem;
        line-height: 1.3;
        max-width: 100%;
        overflow: visible;
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .streaming-title.with-city {
        font-size: 1.6rem;
        line-height: 1.4;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
    }
    
    .streaming-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
    }
    

    
    .plans-tech-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1.5rem;
        overflow-x: visible;
        padding: 1rem;
    }
    
    .plan-tech {
        min-width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0 0 1.5rem 0;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .plan-header-tech {
        margin-bottom: 2rem;
    }
    
    .speed-display {
        margin-bottom: 1.5rem;
    }
    
    .speed-number {
        font-size: 2.8rem;
        line-height: 1;
    }
    
    .speed-unit {
        font-size: 1.2rem;
    }
    
    .tech-indicator {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .price-section-tech {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .price-main {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .features-tech {
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-height: 2.5rem;
        border-radius: 15px;
    }
    
    .feature-item i {
        font-size: 0.9rem;
        width: 16px;
    }
    
    .btn-tech {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 15px;
    }
    

    
    .speed-number {
        font-size: 2.5rem;
    }
    
    .price-main {
        font-size: 1.8rem;
    }
    
    .btn-tech {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Fiber Benefits Mobile */
    .fiber-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fiber-text h2 {
        font-size: 2rem;
    }
    
    .fiber-text h3 {
        font-size: 1.5rem;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .plans {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
        margin: 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services,
    .plans,
    .about,
    .contact {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .streaming-hero-section {
        padding: 90px 0 30px;
        min-height: 70vh;
    }
    
    .streaming-hero-container {
        margin-top: 10vh;
        padding: 0 0.5rem;
    }
    
    .streaming-hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .streaming-hero-content p {
        font-size: 0.85rem;
    }
    
    .streaming-features .feature-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        max-width: 260px;
    }
    
    .streaming-highlights .highlight-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .plans-tech-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .plan-tech {
        min-width: 100%;
        max-width: 100%;
        padding: 1.2rem 0.8rem;
    }
    
    .gaming-section {
        padding: 30px 0;
    }
    
    .gaming-text h2 {
        font-size: 1.6rem;
    }
    
    .gaming-text p {
        font-size: 0.9rem;
    }
    
    .gaming-feature {
        padding: 8px 12px;
        font-size: 0.8rem;
        max-width: 220px;
    }
    
    .features-tech {
        gap: 0.4rem;
    }
    
    .feature-item {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
        min-height: 1.8rem;
        gap: 0.5rem;
    }
    
    .feature-item i {
        font-size: 0.75rem;
        width: 12px;
    }
    
    .speed-number {
        font-size: 2.2rem;
    }
    
    .price-main {
        font-size: 1.6rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .contact-form {
        gap: 0.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 30px !important;
        max-height: 30px;
        min-height: 30px;
    }
    
    .streaming-hero-section {
        padding: 80px 0 25px;
        min-height: 65vh;
    }
    
    .streaming-hero-container {
        margin-top: 8vh;
        padding: 0 0.5rem;
    }
    
    .streaming-hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .streaming-hero-content p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .streaming-features .feature-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        max-width: 240px;
    }
    
    .streaming-highlights .highlight-item {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        max-width: 240px;
    }
    
    .section-title,
    .services-title h2,
    .moments-header h2 {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem 0.8rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .gaming-section {
        padding: 25px 0;
    }
    
    .gaming-text h2 {
        font-size: 1.4rem;
    }
    
    .gaming-text p {
        font-size: 0.85rem;
    }
    
    .gaming-feature {
        padding: 6px 10px;
        font-size: 0.75rem;
        max-width: 200px;
    }
    
    .plan-tech {
        padding: 1rem 0.6rem;
    }
    
    .speed-number {
        font-size: 2rem;
    }
    
    .price-main {
        font-size: 1.4rem;
    }
    
    .btn-tech {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .moments-images {
        padding: 0.5rem;
        gap: 1rem;
    }
    
    .moment-image {
        height: 250px;
    }
    
    .moment-overlay {
        padding: 1.5rem;
    }
    
    .moment-overlay h3 {
        font-size: 1.2rem;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-item {
        padding: 0.8rem 0.6rem;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
}

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

/* Melhorias para dispositivos touch */
.touch-device * {
    -webkit-tap-highlight-color: rgba(255, 68, 0, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.touch-device input,
.touch-device textarea,
.touch-device select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Melhorar área de toque para elementos pequenos */
.touch-device .hamburger {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
}

.touch-device .contact-icon,
.touch-device .action-icon {
    min-width: 44px;
    min-height: 44px;
}

/* Orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .streaming-hero-section {
        min-height: 100vh !important;
        padding: 60px 0 20px !important;
    }
    
    .streaming-hero-container {
        margin-top: 5vh !important;
    }
    
    .streaming-hero-content h1 {
        font-size: 1.6rem !important;
    }
    
    .nav-menu {
        height: calc(100vh - 60px) !important;
        top: 60px !important;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .streaming-hero-content h1 {
        font-size: 1.3rem;
    }
    
    .streaming-hero-content p {
        font-size: 0.75rem;
    }
    
    .plan-tech {
        padding: 0.8rem 0.5rem;
    }
    
    .feature-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* Prevenir zoom em inputs em iOS */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Melhorar performance em dispositivos móveis */
.reduced-motion * {
    animation-duration: 0.1s !important;
    transition-duration: 0.1s !important;
}

/* Garantir que elementos não quebrem em telas pequenas */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Melhorar scrolling em iOS */
body {
    -webkit-overflow-scrolling: touch;
}

/* Prevenir overflow horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.container,
.nav-container,
.hero-container,
.streaming-hero-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.plan-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

.plan-card:nth-child(2) { animation-delay: 0.1s; }
.plan-card:nth-child(3) { animation-delay: 0.2s; }



/* Modal das Cidades */
.cities-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cities-modal.show {
    display: flex;
    opacity: 1;
}

.cities-modal-content {
    background: white;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.7);
    transition: transform 0.3s ease;
    position: relative;
}

.cities-modal.show .cities-modal-content {
    transform: scale(1);
}

.cities-modal-header {
    background: linear-gradient(135deg, #ff4400 0%, #e63900 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.cities-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.cities-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cities-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cities-modal-body {
    padding: 2rem;
    background: white;
}

.cities-modal-body .cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.cities-modal-body .cities-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cities-modal-body .cities-column span {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.cities-modal-body .cities-column span:hover {
    background: #ff4400;
    color: white;
    border-color: #ff4400;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 68, 0, 0.3);
}

.cities-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cities-section .cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cities-section .cities-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cities-section .cities-column span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 0, 0.2);
    transition: all 0.3s ease;
}

.cities-section .cities-column span:hover {
    background: rgba(255, 68, 0, 0.1);
    border-color: rgba(255, 68, 0, 0.4);
    transform: translateX(5px);
}

/* Responsividade para cidades */
@media (max-width: 768px) {
    .cities-section .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cities-section h4 {
        font-size: 1rem;
    }
    
    .cities-section .cities-column span {
        font-size: 0.85rem;
    }
    
    /* Modal responsivo */
    .cities-modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 90vh;
    }
    
    .cities-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .cities-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .cities-modal-body {
        padding: 1.5rem;
    }
    
    .cities-modal-body .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cities-modal-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* CTA responsivo */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-whatsapp,
    .cta-phone {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }
    
    /* Moments Section responsivo */
    .moments-section {
        padding: 60px 0;
    }
    
    .moments-header {
        margin-bottom: 3rem;
    }
    
    .moments-header h2 {
        font-size: 2.2rem;
    }
    
    .moments-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .moments-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .moment-image {
        height: 300px;
    }
    
    .moment-overlay {
        padding: 2rem;
    }
    
    .moment-overlay h3 {
        font-size: 1.4rem;
    }
    
    .moment-overlay p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .moment-cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Quick Actions responsivo */
    .quick-actions {
        padding: 60px 0;
    }
    
    .quick-actions-header h2 {
        font-size: 2rem;
    }
    
    .quick-actions-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .action-btn {
        padding: 1rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .action-btn span {
        font-size: 0.8rem;
    }
    
    .action-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Contact responsivo */
    .contact-content {
        flex-direction: column !important;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-item {
        width: 100% !important;
        padding: 1rem 0.8rem;
        justify-content: center;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .contact-item h4 {
        font-size: 0.8rem;
    }
    
    .contact-item p {
        font-size: 0.75rem;
    }
}

/* Filtros de Tipo de Plano */
.plan-type-filters {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.filters-header {
    display: none;
}

.filters-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.filter-btn:hover {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-color: white;
}

/* Badges de Tipo de Plano */
.plan-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    max-width: calc(100% - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-type-badge.residential {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}


.plan-type-badge.business {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
}

.plan-type-badge.rural {
    background: linear-gradient(135deg, #8BC34A, #689F38);
    color: white;
}

.plan-type-badge.urban {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

/* Mensagem quando não há planos */
.no-plans-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-plans-message p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Ajustes para planos com badges */
.plan-tech {
    position: relative;
    overflow: visible;
}

/* Responsividade para filtros */
@media (max-width: 768px) {
    .plan-type-filters {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .filters-buttons {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 25px;
        min-width: 120px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background: rgba(255, 255, 255, 0.9);
        color: #ff4400;
        border-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    .plan-type-badge {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
        max-width: calc(100% - 16px);
    }
}

@media (max-width: 480px) {
    .streaming-section .city-selector {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .streaming-section .city-selector select {
        min-width: 180px !important;
        max-width: 250px !important;
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
        padding-right: 35px !important;
    }
    
    .streaming-title {
        font-size: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .streaming-title.with-city {
        font-size: 1.4rem !important;
    }
    
    .filters-buttons {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-width: 150px;
        width: 80%;
        max-width: 200px;
    }
    
    .plan-tech {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .speed-number {
        font-size: 2.4rem;
    }
    
    .price-main {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 0.7rem 0.9rem;
        font-size: 0.8rem;
        min-height: 2.2rem;
    }
    
    .btn-tech {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .plan-type-badge {
        top: 6px;
        right: 6px;
        padding: 0.25rem 0.5rem;
        font-size: 0.6rem;
        max-width: calc(100% - 12px);
        letter-spacing: 0.3px;
    }
    
    .services-title h2 {
        font-size: 1.8rem;
    }
    
    .feedback-title h2 {
        font-size: 1.8rem;
    }
}

