/* Importando a fonte Noto Sans do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* Configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}

/* Variáveis de cores */
:root {
    --cor-laranja: #fa5d00;
    --cor-azul: #003986;
    --cor-texto: #333333;
    --cor-branca: #FFFFFF;
    --cor-cinza: #777777;
    --cor-verde: #28a745;
    --cor-cinza-escuro: #2c2c2c;
}

/* Top Bar (Barra Superior Laranja) */
.top-bar {
    background-color: var(--cor-laranja);
    color: var(--cor-branca);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .logo img {
    max-height: 100px;
    width: auto;
}

.top-bar .links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 8px;
}

.top-bar .links a {
    color: var(--cor-branca);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
}

.top-bar .links a:hover {
    text-decoration: underline;
}

.top-bar .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.top-bar .social-icons a {
    color: var(--cor-branca);
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.top-bar .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-bar .contact-info {
    text-align: right;
    font-size: 13px;
}

.top-bar .contact-info > div:first-child {
    font-size: 12px; 
}

.top-bar .contact-info .phone {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0px;
}

.top-bar .contact-info .email {
    font-size: 12px;
    font-weight: 300;
}

.top-bar .right-section {
    display: flex;
    flex-direction: column;
}

/* Main Header (Barra Principal Azul) */
.main-header {
    background-color: var(--cor-azul);
    padding: 12px 0;
}

.main-header .navbar-nav {
    margin: 0;
}

.main-header .navbar-nav .nav-link {
    color: var(--cor-branca);
    font-weight: 500;
    padding: 10px 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.main-header .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.main-header .btn-assine {
    background-color: transparent;
    color: var(--cor-branca);
    border: 2px solid var(--cor-branca);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.main-header .btn-assine:hover {
    background-color: var(--cor-branca);
    color: var(--cor-azul);
}

.main-header .btn-central {
    background-color: transparent;
    color: var(--cor-branca);
    border: 2px solid var(--cor-branca);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.main-header .btn-central:hover {
    background-color: var(--cor-branca);
    color: var(--cor-azul);
}

/* Seção de Benefícios */
.beneficios-section {
    padding: 80px 0; 
    position: relative;
    overflow: hidden;
}

 

.beneficios-section .container {
    position: relative;
    z-index: 2;
}

.beneficios-section .section-title {
    color: var(--cor-azul);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.beneficios-section .section-subtitle {
    color: var(--cor-cinza);
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.beneficio-card {
    background-color: var(--cor-laranja);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(250, 93, 0, 0.2);
    margin-bottom: 30px;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(250, 93, 0, 0.3);
}

.beneficio-card .icon {
    color: var(--cor-branca);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.beneficio-card .title {
    color: var(--cor-branca);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Seção de Planos */
.planos-section {
    padding: 80px 0; 
    position: relative;
    overflow: hidden;
}
 

.planos-section .container {
    position: relative;
    z-index: 2;
}

.planos-section .section-title {
    color: var(--cor-azul);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.planos-section .section-subtitle {
    color: var(--cor-cinza);
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.plano-card {
    background-color: var(--cor-branca);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plano-card .plano-header {
    background-color: var(--cor-laranja);
    color: var(--cor-branca);
    padding: 30px 20px;
    text-align: center;
}

.plano-card .plano-type {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.plano-card .plano-speed {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.plano-card .plano-unit {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.plano-card .plano-body {
    padding: 30px;
}

.plano-card .plano-features {
    list-style: none;
    margin-bottom: 30px;
}

.plano-card .plano-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--cor-texto);
    font-size: 1rem;
}

.plano-card .plano-features li i {
    color: var(--cor-azul);
    margin-right: 12px;
    font-size: 1.2rem;
}

.plano-card .plano-price-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.plano-card .plano-price-label {
    font-size: 0.9rem;
    color: var(--cor-cinza);
    margin-bottom: 5px;
}

.plano-card .plano-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cor-texto);
}

.plano-card .plano-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plano-card .plano-price .cents {
    font-size: 1.5rem;
    vertical-align: top;
}

.plano-card .plano-price .period {
    font-size: 1rem;
    color: var(--cor-cinza);
    font-weight: 400;
}

.plano-card .btn-contrate {
    background-color: var(--cor-azul);
    color: var(--cor-branca);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: background-color 0.3s ease;
}

.plano-card .btn-contrate:hover {
    background-color: #002a66;
}

.planos-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--cor-azul);
    color: var(--cor-branca);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.planos-navigation:hover {
    background-color: #002a66;
}

.planos-navigation.prev {
    left: 20px;
}

.planos-navigation.next {
    right: 20px;
}

/* Seção Qualidade */
.qualidade-section {
    padding: 100px 0; 
    position: relative;
    overflow: hidden;
}

 
.qualidade-section .container {
    position: relative;
    z-index: 2;
}

.qualidade-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.qualidade-text {
    flex: 1;
}

.qualidade-text h2 {
    color: var(--cor-azul);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.qualidade-text p {
    color: var(--cor-cinza);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.qualidade-text .btn-confira {
    background-color: var(--cor-laranja);
    color: var(--cor-branca);
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.qualidade-text .btn-confira:hover {
    background-color: #e55100;
    color: var(--cor-branca);
}

.qualidade-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
 

/* Seção CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cor-azul) 0%, #1565c0 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-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"><path d="M0,300 Q250,200 500,300 T1000,300 V0 H0 V300 Z" fill="rgba(255,255,255,0.05)"/><path d="M0,600 Q250,500 500,600 T1000,600 V400 Q750,500 500,400 T0,400 V600 Z" fill="rgba(255,255,255,0.03)"/><path d="M0,1000 Q250,900 500,1000 T1000,1000 V800 Q750,900 500,800 T0,800 V1000 Z" fill="rgba(255,255,255,0.02)"/></svg>') center/cover no-repeat;
    opacity: 0.7;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .cta-title {
    color: var(--cor-branca);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    background-color: var(--cor-verde);
    color: var(--cor-branca);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.cta-section .btn-cta:hover {
    background-color: #218838;
    color: var(--cor-branca);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

/* Seção Novidades */
.novidades-section {
    padding: 80px 0; 
    position: relative;
    overflow: hidden;
}
 

.novidades-section .container {
    position: relative;
    z-index: 2;
}

.novidades-section .section-title {
    color: var(--cor-azul);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.novidade-card {
    background-color: var(--cor-branca);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.novidade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.novidade-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.novidade-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.novidade-card:hover .card-image img {
    transform: scale(1.1);
}

.novidade-card .card-content {
    padding: 25px;
}

.novidade-card .card-title {
    color: var(--cor-azul);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.novidade-card .card-excerpt {
    color: var(--cor-cinza);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.novidade-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--cor-cinza);
}

.novidade-card .card-date {
    display: flex;
    align-items: center;
}

.novidade-card .card-date i {
    margin-right: 5px;
    color: var(--cor-laranja);
}

.novidade-card .card-category {
    background-color: var(--cor-laranja);
    color: var(--cor-branca);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-ver-mais {
    background-color: var(--cor-azul);
    color: var(--cor-branca);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
}

.btn-ver-mais:hover {
    background-color: #002a66;
    color: var(--cor-branca);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 57, 134, 0.3);
}

.btn-ver-mais i {
    margin-left: 8px;
}

/* Seção FAQ */
.faq-section {
    padding: 80px 0 0 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

 

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.faq-left {
    flex: 1;
}

.faq-section .section-title {
    color: var(--cor-laranja);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-accordion {
    margin-bottom: 20px;
}

.faq-item {
    background-color: #e9ecef;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #dee2e6;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cor-cinza);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--cor-texto);
}

.faq-question i {
    color: var(--cor-laranja);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--cor-branca);
}

.faq-answer.active {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--cor-cinza);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-right {
    flex: 1;
    text-align: center;
}

.faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Seção Contato WhatsApp */
.whatsapp-section {
    padding: 60px 0;
    background-color: var(--cor-laranja);
    text-align: center;
}

.whatsapp-section .whatsapp-title {
    color: var(--cor-branca);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.whatsapp-section .btn-whatsapp {
    background-color: var(--cor-verde);
    color: var(--cor-branca);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.whatsapp-section .btn-whatsapp:hover {
    background-color: #218838;
    color: var(--cor-branca);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.whatsapp-section .btn-whatsapp i {
    font-size: 1.6rem;
}

/* Footer */
.footer {
    background-color: var(--cor-cinza-escuro);
    color: var(--cor-branca);
    padding: 0;
}

.footer-main {
    padding: 50px 0 30px;
    border-bottom: 1px solid #444;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--cor-laranja);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--cor-laranja);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
}

/* Footer moderno e limpo */
.footer-about {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-schedule {
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(250, 93, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--cor-laranja);
}

.footer-schedule small {
    color: #ddd;
    font-size: 0.8rem;
}

.text-orange {
    color: var(--cor-laranja) !important;
}

/* Menu links limpos */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
    position: relative;
}

.footer-menu a:hover {
    color: var(--cor-laranja);
    padding-left: 10px;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background-color: var(--cor-laranja);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-menu a:hover::before {
    width: 6px;
}

/* Contato moderno */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(250, 93, 0, 0.1);
}

.contact-item i {
    color: var(--cor-laranja);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: var(--cor-branca);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.contact-item span {
    color: #999;
    font-size: 0.8rem;
}

/* Redes sociais modernas */
.footer-social-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #bbb;
    background-color: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
    color: var(--cor-branca);
    transform: translateX(5px);
}

.social-link.whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.2);
}

.social-link.facebook:hover {
    background-color: rgba(24, 119, 242, 0.2);
}

.social-link.instagram:hover {
    background-color: rgba(225, 48, 108, 0.2);
}

.social-link i {
    font-size: 1.2rem;
    min-width: 20px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-social {
    margin-top: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--cor-laranja);
    color: var(--cor-branca);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--cor-azul);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 93, 0, 0.3);
}

.footer-social-icons a.whatsapp:hover {
    background-color: var(--cor-verde);
}

.footer-bottom {
    padding: 20px 0;
    background-color: #1a1a1a;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-company-details {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cnpj {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-anatel {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-anatel img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}

.footer-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--cor-verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.footer-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.footer-whatsapp-float i {
    color: var(--cor-branca);
    font-size: 1.8rem;
}

@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);
    }
}

/* Responsividade do Footer */
@media (max-width: 991px) {
    .footer-section {
        margin-bottom: 35px;
    }
    
    .footer-social-modern {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        text-align: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-schedule {
        text-align: left;
    }

    .footer-menu {
        text-align: center;
    }

    .footer-menu a:hover {
        padding-left: 0;
    }

    .footer-social-modern {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-item {
        text-align: left;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-company-details {
        flex-direction: column;
        gap: 10px;
    }

    .footer-whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .footer-whatsapp-float i {
        font-size: 1.6rem;
    }
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
        padding: 15px 0;
    }
    
    .top-bar .logo {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .top-bar .links {
        justify-content: center;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .top-bar .contact-info {
        text-align: center;
        margin-top: 15px;
    }
    
    .main-header .navbar-toggler {
        border: 1px solid var(--cor-branca);
    }
    
    .main-header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .beneficios-section .section-title {
        font-size: 2.2rem;
    }
    
    .beneficios-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .beneficio-card {
        height: auto;
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .beneficio-card .icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .beneficio-card .title {
        font-size: 1.2rem;
    }

    .planos-section .section-title {
        font-size: 2.2rem;
    }
    
    .planos-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .plano-card .plano-speed {
        font-size: 3rem;
    }

    .plano-card .plano-price {
        font-size: 2.5rem;
    }

    .planos-navigation {
        display: none;
    }

    .qualidade-content {
        flex-direction: column;
        gap: 40px;
    }

    .qualidade-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .qualidade-text p {
        font-size: 1.1rem;
        text-align: center;
    }

    .qualidade-text .btn-confira {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .qualidade-images {
        margin-top: 30px;
    }

    .qualidade-image {
        max-width: 90%;
    }

    .cta-section .cta-title {
        font-size: 2.5rem;
    }

    .cta-section .btn-cta {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .novidades-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .novidade-card .card-image {
        height: 200px;
    }

    .novidade-card .card-content {
        padding: 20px;
    }

    .novidade-card .card-title {
        font-size: 1.1rem;
    }

    .btn-ver-mais {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .faq-content {
        flex-direction: column;
        gap: 40px;
    }

    .faq-section .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer.active {
        max-height: 150px;
        padding: 15px 20px;
    }

    .whatsapp-section .whatsapp-title {
        font-size: 1.8rem;
    }

    .whatsapp-section .btn-whatsapp {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
} 