/**
 * Ucristo Construction Company - Custom Styles
 * Estilos adicionais para as novas seções
 */

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide .hero-content {
    opacity: 1 !important;
    animation: none !important;
}

.hero-slide .hero-image {
    text-align: center;
    padding: 20px;
}

.hero-slide .hero-image img {
    max-height: 400px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Slider navigation */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.hero-slider .slick-dots li {
    margin: 0 8px;
}

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button {
    background-color: #fff;
    transform: scale(1.3);
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider .slick-prev {
    left: 20px;
}

.hero-slider .slick-next {
    right: 20px;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.portfolio-filter {
    margin-bottom: 40px;
}

.portfolio-filter button {
    margin: 0 5px 10px;
    border: 1px solid var(--gray-color);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--gray-color-light);
    background-color: transparent;
    transition: all 0.3s ease;
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    background-color: var(--primary-color-light);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--gray-color-light);
    margin-bottom: 15px;
}

.portfolio-content {
    padding: 20px;
    text-align: center;
}

.portfolio-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.portfolio-content p {
    color: var(--gray-color);
    text-transform: capitalize;
    font-size: 14px;
    margin-bottom: 0;
}

/* Project Modal */
.modal-content {
    background-color: var(--primary-color-light);
    color: var(--gray-color-light);
    border: none;
    border-radius: var(--border-radius-lg);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
}

.modal-title {
    color: var(--white-color);
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.btn-close {
    color: var(--white-color);
    opacity: 0.8;
}

.project-image {
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

.project-details h4 {
    color: var(--white-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 20px;
}

.project-description {
    margin-bottom: 20px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.project-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.project-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.project-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-meta p {
    margin-bottom: 5px;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
    background-color: var(--primary-color-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-item {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: var(--hover-shadow);
}

.faq-header {
    padding: 20px 30px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--white-color);
    padding-right: 40px;
    transition: all 0.3s ease;
}

.faq-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    color: var(--gray-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-icon .fa-minus {
    display: none;
}

.faq-item.active .faq-icon .fa-minus {
    display: block;
}

.faq-item.active .faq-icon .fa-plus {
    display: none;
}

.faq-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-body {
    padding-bottom: 30px;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item:hover .faq-header h3,
.faq-item.active .faq-header h3 {
    color: var(--white-color);
}

.faq-item:hover .faq-icon i,
.faq-item.active .faq-icon i {
    color: var(--white-color);
}

/*--------------------------------------------------------------
# Calculadora de Orçamento Section
--------------------------------------------------------------*/
.calculadora-section {
    position: relative;
    overflow: hidden;
}

.calculadora-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-dark);
    opacity: 0.1;
    z-index: 0;
    border-radius: 50% 0 0 0;
}

.calculadora-container {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.calculadora-form label {
    color: var(--white-color);
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.padrao-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.form-check-inline {
    margin-right: 0;
    flex: 1;
    min-width: 120px;
}

.form-check-input {
    display: none;
}

.form-check-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--primary-color-light);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
}

.form-check-input:checked + .form-check-label {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.padrao-icon {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.form-check-input:checked + .form-check-label .padrao-icon {
    color: var(--white-color);
}

.padrao-icon i {
    color: #ffc107;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Floating Action Buttons
--------------------------------------------------------------*/
/* Botão de WhatsApp flutuante reposicionado */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 95px; /* Posicionado acima do botão voltar ao topo */
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    background-color: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Botão voltar ao topo - Mantido em sua posição original */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #333333, #555555);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99; /* Mesmo z-index que o botão de WhatsApp */
    box-shadow: var(--btn-shadow);
}

/* Ajustes para dispositivos móveis */
@media (max-width: 767px) {
    .portfolio-card img {
        height: 200px;
    }
    
    .portfolio-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-filter {
        padding: 6px 12px;
        font-size: 13px;
        margin: 0 3px 8px;
    }
    
    /* Botões flutuantes mais compactos em dispositivos móveis */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 85px;
        right: 15px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }
}

/* Cards de projetos melhorados */
.portfolio-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: #222222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-card img {
    height: 240px;
    object-fit: cover;
    width: 100%;
    transition: all 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.portfolio-card .card-body {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(34, 34, 34, 0.95), rgba(34, 34, 34, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card .card-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-card .card-text {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-card .btn-outline-primary {
    background: transparent;
    border: 1px solid #505050;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    border-radius: 30px;
}

.portfolio-card .btn-outline-primary:hover {
    background: rgba(80, 80, 80, 0.3);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Estilo para os botões de filtro do portfólio */
.btn-filter {
    background: transparent;
    border: 1px solid #444444;
    color: #e0e0e0;
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0 5px 10px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-filter:hover, 
.btn-filter.active {
    background-color: #505050;
    border-color: #505050;
    color: #ffffff;
}

/* Media Queries */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .calculadora-container {
        padding: 30px 20px;
    }
    
    .hero-slide {
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter button {
        margin-bottom: 10px;
    }
    
    .padrao-options {
        flex-direction: column;
    }
    
    .hero-slide .hero-content {
        padding-top: 120px;
    }
}

/**
 * Ucristo Construction Company - Estilos Personalizados
 * Estilos especiais para diferentes dispositivos baseados na detecção JavaScript
 */

/*--------------------------------------------------------------
# Otimizações por tipo de dispositivo
--------------------------------------------------------------*/
/* Estilos específicos para dispositivos móveis */
body.is-mobile {
    /* Ajustes globais para dispositivos móveis */
    scroll-padding-top: 70px;
}

/* Tela de toque maior para elementos clicáveis em dispositivos móveis */
body.is-mobile .touch-target {
    min-height: 44px; /* Recomendação Apple para alvos de toque */
    padding: 12px 20px;
}

/* Ajustes para iOS */
body.is-ios {
    /* Fix para problemas de scroll em iOS */
    -webkit-overflow-scrolling: touch;
}

body.is-ios input,
body.is-ios textarea {
    /* Fix para problemas com formulários em iOS */
    -webkit-appearance: none;
    border-radius: 0;
}

/* Ajustes para Android */
body.is-android .navbar-brand {
    /* Algumas fontes renderizam diferentes em Android */
    letter-spacing: 0.5px; 
}

/* Estilos específicos para desktop */
body.is-desktop .navbar-brand:hover {
    /* Efeitos hover mais elaborados apenas em desktop */
    transform: scale(1.05);
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

body.is-desktop .hero-text h1 {
    /* Títulos maiores em desktop */
    font-size: 3.5rem;
}

/* Redução de movimento e animações para mobile */
body.reduced-motion {
    /* Reduz ou elimina animações não essenciais */
}

body.reduced-motion .slide-up,
body.reduced-motion .slide-left,
body.reduced-motion .slide-right,
body.reduced-motion .fade-in {
    transition-duration: 0.3s !important;
    animation-duration: 0.3s !important;
}

body.reduced-motion .service-card:hover,
body.reduced-motion .about-image:hover img {
    transform: translateY(-5px); /* Movimento reduzido */
}

/*--------------------------------------------------------------
# Otimizações de performance
--------------------------------------------------------------*/
/* Textos mais legíveis em dispositivos móveis */
body.is-mobile .hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

body.is-mobile .navbar-brand {
    /* Logo texto otimizado para mobile */
    font-size: 24px;
    letter-spacing: 0.5px;
}

/* Seções com altura ajustada para mobile */
body.is-mobile section {
    padding-top: 50px;
    padding-bottom: 50px;
}

body.is-mobile .section-header {
    margin-bottom: 40px;
}

/* Melhor contraste para dispositivos móveis em ambientes externos */
body.is-mobile .hero-section::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.8));
}

/* Ajustes para a experiência de toque */
body.is-mobile .btn {
    position: relative;
    overflow: hidden;
}

body.is-mobile .btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    animation: btn-feedback 0.4s ease-out;
}

@keyframes btn-feedback {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Ajustes no menu mobile */
body.is-mobile .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

body.is-mobile .navbar-collapse::-webkit-scrollbar {
    width: 5px;
}

body.is-mobile .navbar-collapse::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Ajuste da navbar em modo fixo para mobile */
body.is-mobile .header-scrolled {
    padding: 10px 0;
}

/* Otimização de interface para diferentes tamanhos de tela em mobile */
@media (max-width: 380px) {
    body.is-mobile .hero-buttons .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    body.is-mobile .navbar-brand {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
}

/* Estilos para feedback de toque em dispositivos móveis */
body.is-mobile .touch-active {
    transform: scale(0.98) translateY(2px) !important;
    opacity: 0.9;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out !important;
}

/* Melhorias específicas para formulários em mobile */
body.is-mobile input, 
body.is-mobile textarea,
body.is-mobile select {
    font-size: 16px !important; /* Evita zoom automático em iOS */
    -webkit-appearance: none; /* Remove estilo padrão em iOS */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

body.is-mobile input:focus, 
body.is-mobile textarea:focus,
body.is-mobile select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(80, 80, 80, 0.3) !important;
}

/* Menu e navegação aprimorados para mobile */
body.is-mobile .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.is-mobile .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.is-mobile .nav-link::after {
    content: '\f105'; /* Ícone de seta */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    opacity: 0.5;
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

body.is-mobile .nav-link:active::after {
    transform: translateX(3px);
}

body.is-mobile .navbar-brand {
    position: relative;
    z-index: 2;
}

/* Estilos para botões de ação flutuantes em mobile */
body.is-mobile .whatsapp-float {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

/* Ajustes para imagens em dispositivos de baixa conexão */
@media (prefers-reduced-data: reduce) {
    img {
        filter: blur(0px) !important; /* Remove efeitos que consomem recursos */
    }
    
    body.is-mobile img.lazy-image {
        filter: blur(0px) !important;
    }
}

/* Ajustes para todos dispositivos móveis */
@media (max-width: 767px) {
    /* Logo menor para dispositivos móveis */
    .navbar-brand {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 0px;
    }
    
    .header-scrolled .navbar-brand {
        font-size: 22px;
    }
    
    /* Centralizar botão "Nossos Serviços" na página about */
    #sobre .btn-primary {
        display: block;
        margin: 30px auto 0;
        text-align: center;
        max-width: 250px;
    }
    
    /* Ajuste da margem para o botão ficar melhor centralizado */
    .stats-container {
        margin-bottom: 10px;
    }
}

/* Estilos específicos para garantir melhor visualização em telas bem pequenas */
@media (max-width: 360px) {
    .navbar-brand {
        font-size: 20px;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .header-scrolled .navbar-brand {
        font-size: 18px;
    }
}

/* Melhorias para o menu mobile */
@media (max-width: 767px) {
    /* Melhorar o botão de menu hamburger */
    .navbar-toggler {
        padding: 6px 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover, 
    .navbar-toggler:focus {
        background-color: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Ajuste para o botão de hamburger em telas muito pequenas */
    @media (max-width: 360px) {
        .navbar-toggler {
            padding: 4px 6px;
        }
    }
    
    /* Alinhamento do menu em dispositivos muito pequenos */
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
    }
    
    /* Melhoria visual do botão Nossos Serviços */
    #sobre .btn-primary {
        padding: 12px 15px;
        transition: all 0.3s ease;
    }
    
    #sobre .btn-primary:active {
        transform: scale(0.95);
    }
}

/* Melhorias para logos em modo landscape (horizontal) */
body.is-mobile.landscape .navbar-brand {
    font-size: 20px !important;
}

body.is-mobile.landscape.scrolled .navbar-brand {
    font-size: 18px !important;
}

/* Ajustes para dispositivos extremamente pequenos */
@media (max-width: 320px) {
    .navbar-brand {
        font-size: 18px !important;
        max-width: 100px;
    }
    
    .header-scrolled .navbar-brand {
        font-size: 16px !important;
    }
    
    /* Hamburger menor para dispositivos muito pequenos */
    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }
} 