/* ===================================
   AULOI TELECOM - CUSTOM STYLES
   =================================== */

:root {
    --primary-color: #1848A6;
    --secondary-color: #FFC41B;
    --dark-bg: #080824;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

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

    font-family: "Ubuntu Sans", sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}
/* ===================================
   NAVBAR
   =================================== */

.navbar {
    background-color: var(--dark-bg) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

/* Espaçamento entre as 3 rows da coluna B */
.col-lg-10>.row {
    margin-bottom: 8px;
}

.col-lg-10>.row:last-child {
    margin-bottom: 0;
}

/* Redes Sociais - ROW 1 */
.social-icons-top {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 5px 0;
}

.social-icons-top a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
    text-decoration: none;
}

.social-icons-top a:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.social-icons-top i {
    font-size: 18px;
}

/* Menu - ROW 2 */
.navbar-nav {
    flex-direction: row !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    margin: 0 8px;
    font-size: 17px;
    transition: color 0.3s;
    font-weight: 500;
    padding: 8px 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Botões do Header */
.btn-central {
    background-color: var(--secondary-color);
    color: var(--dark-bg) !important;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.btn-central:hover {
    background-color: #ffb800;
    transform: translateY(-2px);
}

.btn-assine-header {
    background-color: transparent;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.btn-assine-header:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg) !important;
}

/* Telefones Header - ROW 3 */
.telefones-header {
    color: var(--white);
    font-size: 14px;
    text-align: right;
    padding: 5px 0;
}

.telefones-header i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Responsivo Mobile */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .col-lg-10>.row {
        margin-bottom: 15px;
    }

    .social-icons-top {
        justify-content: center;
        padding: 10px 0;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: center;
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 8px 15px;
    }

    .d-flex.align-items-center.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }

    .d-flex.align-items-center.gap-2 {
        flex-direction: column;
        width: 100%;
    }

    .btn-central,
    .btn-assine-header {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .telefones-header {
        text-align: center;
        padding: 10px 0;
        font-size: 13px;
    }

    .telefones-header span {
        display: block;
        margin: 5px 0;
    }
}

/* ===================================
   HERO SLIDER
   =================================== */

.hero-slider {
    margin-top: 0;
}

.hero-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.corpo-principal {
     
    background-image: url('../img/bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* ===================================
   VERIFICAR DISPONIBILIDADE
   =================================== */

.verificar-disponibilidade {
    background-image: url('../img/cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.verificar-disponibilidade h4 {
    font-weight: 600;
    margin: 0;
}

.btn-verificar {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-verificar:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===================================
   PLANOS
   =================================== */

.planos {
}

/* Seletor de Planos */
.plan-selector {
    gap: 10px;
}

.plan-selector .nav-link {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.plan-selector .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 72, 166, 0.3);
}

.plan-selector .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 196, 27, 0.4);
}

.plan-selector .nav-link i {
    font-size: 18px;
}

/* Swiper Planos */
.planosSwiper {
    padding: 40px 20px;
}

.planosSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.planosSwiper .swiper-button-next,
.planosSwiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.planosSwiper .swiper-button-next:after,
.planosSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.planosSwiper .swiper-button-next:hover,
.planosSwiper .swiper-button-prev:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.planosSwiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.planosSwiper .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
}

/* Swiper Benefícios */
.beneficiosSwiper {
    padding: 40px 20px;
}

.beneficiosSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.beneficiosSwiper .swiper-button-next,
.beneficiosSwiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.beneficiosSwiper .swiper-button-next:after,
.beneficiosSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.beneficiosSwiper .swiper-button-next:hover,
.beneficiosSwiper .swiper-button-prev:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.beneficiosSwiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.beneficiosSwiper .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
}

.planos h2 {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 2.5rem;
}

.planos .lead {
    color: #666;
    font-size: 1.2rem;
}

.plano-card {
    width: 95%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.plano-card.plano-popular {
    background-color: #0056b3;
    border: 3px solid var(--secondary-color);
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
}

.plano-velocidade {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1;
}

.plano-velocidade span {
    font-size: 1.5rem;
    font-weight: 600;
}

.plano-feature {
    font-size: 14px;
    margin: 10px 0;
}

.plano-preco .preco-por {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.plano-preco h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 2rem;
}

.plano-preco .valor {
    font-size: 3rem;
}

.plano-preco small {
    font-size: 1.2rem;
}

.btn-assinar {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-assinar:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* ===================================
   PORTABILIDADE
   =================================== */

.portabilidade-banner {
    
    background-color: var(--secondary-color);
    background-image: url('../img/bg-fale-conosco.png');
 
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portabilidade-banner h4 {
    color: var(--dark-bg);
    font-weight: 700;
    margin-bottom: 10px;
}

.portabilidade-banner p {
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.btn-fale-conosco {
    background-color: var(--white);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-fale-conosco:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   PORQUE AMAR
   =================================== */

.porque-amar {
     background-image: url('../img/linha.png'); 
     background-size: cover;
     background-position: top center;
     background-repeat: no-repeat;
}

.porque-amar h2 {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 2.5rem;
}

.beneficio-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    background-color: var(--light-gray);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.beneficio-card .icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.beneficio-card .icon-box i {
    font-size: 40px;
    color: var(--white);
}

.beneficio-card h5 {
    color: var(--dark-bg);
    font-weight: 700;
    margin: 15px 0;
}

.beneficio-card p {
    color: #666;
    font-size: 14px;
}

/* ===================================
   QUEM SOMOS
   =================================== */

.quem-somos {
    background: #178FE0;
    background: radial-gradient(circle, rgba(23, 143, 224, 1) 0%, rgba(24, 72, 166, 1) 100%);
    color: var(--white);
}

.quem-somos .lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

.quem-somos p {
    line-height: 1.8;
}

.servico-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.servico-box:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.servico-box:hover i {
    color: var(--dark-bg);
}

.servico-box:hover p {
    color: var(--dark-bg);
}

.servico-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.servico-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

/* ===================================
   AUTOATENDIMENTO
   =================================== */

.autoatendimento {
    background-color: #e8e8e8 !important;
}

.autoatendimento h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

.autoatendimento .lead {
    color: #333;
    font-size: 1.1rem;
}

.autoatendimento .servico-box {
    background-color: var(--primary-color);
    padding: 30px 15px;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    display: block;
    text-decoration: none;
}

.autoatendimento .servico-box:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.autoatendimento .servico-box i {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.autoatendimento .servico-box:hover i {
    color: var(--dark-bg);
}

.autoatendimento .servico-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s;
}

.autoatendimento .servico-box:hover p {
    color: var(--dark-bg);
}

/* ===================================
   FAQ
   =================================== */

.faq {
  
}

.faq h2 {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 2.5rem;
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    font-weight: 600;
    border-radius: 10px !important;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button i {
    font-size: 20px;
}

.accordion-body {
    padding: 20px;
    background-color: var(--light-gray);
}

/* ===================================
   CONTATO
   =================================== */

.contato {
    background-color: var(--dark-bg);
    color: var(--white);
}

.contato h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 2.5rem;
}

.contato h4 {
    color: var(--secondary-color);
    font-weight: 700;
}

.contato .form-control {
    border: none;
    border-radius: 10px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contato .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contato .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    box-shadow: 0 0 0 0.25rem rgba(255, 196, 27, 0.25);
}

.btn-enviar {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-enviar:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.info-contato h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.info-contato p {
    color: var(--white);
    font-size: 14px;
}

.info-contato i {
    color: var(--secondary-color);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer .small {
    font-size: 12px;
    line-height: 1.6;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 20px;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 20px;
    }

    .contact-info {
        margin: 15px 0;
    }

    .btn-central {
        margin-top: 10px;
    }

    .planos h2 {
        font-size: 2rem;
    }

    .porque-amar h2,
    .faq h2,
    .contato h2,
    .autoatendimento h2 {
        font-size: 2rem;
    }

    .plano-card {
        margin-bottom: 20px;
    }

    .verificar-disponibilidade .col-md-4 {
        text-align: left !important;
        margin-top: 15px;
    }

    .portabilidade-banner .col-md-4 {
        text-align: left !important;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }

    .plano-velocidade {
        font-size: 2.5rem;
    }

    .plano-preco h2 {
        font-size: 1.5rem;
    }

    .plano-preco .valor {
        font-size: 2rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   UTILITIES
   =================================== */

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.bg-dark-custom {
    background-color: var(--dark-bg) !important;
}