/* Estilos customizados para o novo layout Estrella Galicia MotoGP */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Universal box-sizing fix */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h5 {
    color: #ffffff;
}

.navbar-nav .nav-link {
    font-size: 1.5rem;
}

/* Header/Navbar */
.navbar-custom {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.container-custom {
    max-width: 1920px;
    margin: auto;
    width: 100%;
    overflow: hidden;
}

/* Ensure all containers don't overflow */
.container,
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.8rem;
    padding: 0.8rem 1.2rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(245, 196, 0, 0.2);
    color: #ffffff !important;
}

/* Logo posicionado do lado esquerdo com dimensionamento proporcional */
.navbar-left-logo {
    margin-right: 1.5rem;
}

/* Logo mobile */
.navbar-brand-mobile {
    display: flex;
    align-items: center;
}

.navbar-mobile-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Layout mobile - logo + hamburger lado a lado */
@media (max-width: 991.98px) {
    .navbar-custom .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .navbar-brand-mobile {
        flex: 1;
        display: flex;
        align-items: center;
        min-width: 0; /* Allow flex item to shrink */
    }
    
    .navbar-mobile-logo {
        max-height: 35px;
        width: auto;
        max-width: 150px;
    }
    
    /* Garante que o hamburger seja visível */
    .navbar-toggler {
        order: 2;
        flex-shrink: 0;
        display: block !important;
        background: transparent !important;
        border: 2px solid #ffffff !important;
        color: #ffffff !important;
        padding: 0.5rem !important;
        border-radius: 4px !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        position: relative !important;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Ícone do hamburger */
    .navbar-toggler-icon {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: #ffffff !important;
        position: relative !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: #ffffff !important;
        position: absolute !important;
        left: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-toggler-icon::before {
        top: -6px !important;
    }
    
    .navbar-toggler-icon::after {
        top: 6px !important;
    }
    
    /* Animação do hamburger quando aberto */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent !important;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 0 !important;
        transform: rotate(45deg) !important;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        top: 0 !important;
        transform: rotate(-45deg) !important;
    }
    
    /* Feedback visual no botão hamburger */
    .navbar-toggler:active {
        transform: scale(0.95) !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(173, 36, 37, 0.3) !important;
        outline: none !important;
    }
    
    /* Menu mobile expandido - corrigir fundo e posicionamento */
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 1001 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* Menu nav dentro do collapse */
    .navbar-nav {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    /* Animação stagger para itens do menu */
    .navbar-collapse.show .navbar-nav .nav-item {
        animation: slideInLeft 0.4s ease forwards;
        opacity: 0;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.35s; }
    
    /* Links do menu mobile */
    .navbar-nav .nav-link {
        padding: 1.125rem 1.5rem !important;
        margin: 0.25rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 1.05rem !important;
        text-align: center !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(173, 36, 37, 0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .navbar-nav .nav-link:active::before {
        left: 100%;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        background-color: rgba(173, 36, 37, 0.2) !important;
        border-color: rgba(173, 36, 37, 0.4) !important;
        transform: translateX(5px) !important;
    }
    
    /* Botão coupon mobile */
    .navbar-nav .btn-coupon {
        margin: 1.5rem 0 0.5rem !important;
        padding: 1.125rem 1.5rem !important;
        font-size: 1.05rem !important;
        text-align: center !important;
        width: 100% !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(173, 36, 37, 0.4) !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-nav .btn-coupon:active {
        transform: scale(0.98) !important;
        box-shadow: 0 2px 10px rgba(173, 36, 37, 0.6) !important;
    }
}

.regulamento-contato {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 25px;
    font-weight: bold;
}

.regulamento-contato > div {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.regulamento-contato a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.regulamento-contato a:hover {
    color: #AD2425;
    text-decoration: underline;
}

/* Desktop: mostrar apenas email */
@media (min-width: 769px) {
    .regulamento-phone {
        display: none;
    }
    .regulamento-email {
        display: block;
    }
}

/* Mobile: mostrar ambos */
@media (max-width: 768px) {
    .regulamento-phone {
        display: block;
    }
    .regulamento-email {
        display: block;
    }
}

.regulamento-info {
    margin-top: 50px;
}

.navbar-side-logo {
    /* Dimensionamento proporcional AGGRESSIVE: 1920px (320x61px) até 992px (160x31px) */
    width: clamp(160px, calc(320px * (100vw / 1920px)), 320px);
    height: clamp(31px, calc(61px * (100vw / 1920px)), 61px);
    object-fit: contain;
}

/* Layout específico para resolução 1920px */
.navbar-custom .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.navbar-custom .container .navbar-brand {
    display: none;
}

.navbar-custom {
    justify-content: space-between;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-coupon {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
}

/* Breakpoint específico para 1252px - correção de corte nas laterais */
@media (max-width: 1252px) and (min-width: 993px) {
    .navbar-nav.mb-2.mb-lg-0 {
        gap: 0 !important;  /* Solução específica para eliminar espaçamento */
    }
    
    .navbar-custom {
        padding: 0.4rem 0;
    }
    
    .navbar-custom .container {
        padding: 0 0.3rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .navbar-collapse {
        gap: 0.3rem;
        padding: 0;
        overflow: hidden;
    }
    
    .navbar-nav {
        gap: 0;
        flex-wrap: nowrap;
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 0.35rem 0.5rem !important;
        margin: 0 0.15rem;
        white-space: nowrap;
        flex-shrink: 0;
        line-height: 1.1;
    }
    
    .btn-coupon {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem !important;
        margin: 0 0.15rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .navbar-side-logo {
        width: clamp(90px, calc(180px * (100vw / 1252px)), 180px);
        height: clamp(17px, calc(34px * (100vw / 1252px)), 34px);
        flex-shrink: 0;
        margin-right: 0.3rem;
    }
    
    .navbar-left-logo {
        margin-right: 0.3rem;
    }
}

/* Breakpoint adicional para 1708px - fontes menores */
@media (max-width: 1708px) {
    .navbar-side-logo {
        width: clamp(140px, calc(280px * (100vw / 1708px)), 280px);
        height: clamp(27px, calc(53px * (100vw / 1708px)), 53px);
    }
    
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .btn-coupon {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }
    
    .navbar-collapse {
        gap: 1.2rem;
    }
    
    .navbar-nav {
        gap: 1.2rem;
    }
    
    .navbar-left-logo {
        margin-right: 1.2rem;
    }
}
@media (max-width: 1400px) {
    .navbar-custom .container .navbar-brand {
        display: block;
    }
}

/* Breakpoint adicional para 1400px - fontes ainda menores */
@media (max-width: 1400px) {
    .navbar-side-logo {
        width: clamp(120px, calc(240px * (100vw / 1400px)), 240px);
        height: clamp(23px, calc(46px * (100vw / 1400px)), 46px);
    }
    
    .navbar-nav .nav-link {
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    .btn-coupon {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }
    
    .navbar-collapse {
        gap: 1rem;
    }
    
    .navbar-nav {
        gap: 1rem;
    }
    
    .navbar-left-logo {
        margin-right: 1rem;
    }
}

@media (min-width: 1920px) {
    .navbar-collapse {
        justify-content: flex-end;
    }
}

/* Botão especial para CADASTRE SEU CUPOM FISCAL */
.btn-coupon {
    background-color: #AD2425 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0.8rem;
    padding: 0.8rem 1.5rem !important;
    border-radius: 0 !important;
    border: none !important;
    text-transform: none;
    letter-spacing: 0.5px;
    white-space: nowrap !important;
    transition: all 0.3s ease;
}

.btn-coupon:hover {
    background-color: #8D1E20 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 36, 37, 0.4);
}

.btn-login {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #e6b800;
    color: #000000;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    /* Garantir que a imagem preencha toda a largura */
    max-width: none;
    object-fit: cover;
}

.hero-container {
    position: relative;
    width: 100%;
}

.hero-moto-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 100%;
}

/* Espaçamento para navbar fixo */
body {
    padding-top: 0; /* Remove padding do body */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Navbar no topo, sobre toda a página */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95) !important;
    height: 70px;
}

/* Mobile navbar adjustments */
@media (max-width: 991.98px) {
    .navbar-custom {
        /* height: 60px; */
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    }
    
    .navbar-collapse {
        top: 60px !important;
        max-height: calc(100vh - 60px) !important;
        z-index: 1001 !important; /* Above navbar */
    }
    
    .navbar-toggler {
        width: 44px;
        height: 44px;
        margin-left: 0.5rem;
        transition: all 0.2s ease !important;
        padding: 10px !important;
    }
    
    /* Add backdrop overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hero section spacing for fixed navbar */
.hero-section {
    padding-top: 70px;
}

/* Todas as seções após o hero devem ter espaçamento no topo */
.city-selection-section:first-of-type {
    padding-top: calc(80px + 80px); /* 80px base + 70px navbar */
}

/* Mobile hero section */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 60px;
    }
    
    .city-selection-section:first-of-type {
        padding-top: calc(80px + 60px);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #AD2425, #D42E30);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(173, 36, 37, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(173, 36, 37, 0.5);
    background: linear-gradient(135deg, #8D1E20, #AD2425);
}

.btn-hero-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(173, 36, 37, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:active {
    transform: translateY(-1px);
}

/* City Selection Section */
.city-selection-section {
    padding: 80px 0;
    background: #000000;
}

/* Container padding for mobile */
@media (max-width: 768px) {
    #regulamento .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    #regulamento .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.city-selector {
    max-width: 600px;
    margin: 0 auto;
}

/* Label estilo faixa vermelha "— SELECIONE —" (como na arte) */
.city-select-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    background: #AD2425;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.city-select-label::before,
.city-select-label::after {
    content: '';
    height: 2px;
    width: 56px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
}

.city-select-label-text {
    font-size: 1.9rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .city-select-label {
        padding: 12px 14px;
    }

    .city-select-label::before,
    .city-select-label::after {
        width: 44px;
    }

    .city-select-label-text {
        font-size: 1.6rem;
    }
}

.form-select-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-select-custom:focus {
    border-color: #AD2425;
    box-shadow: 0 0 0 0.2rem rgba(173, 36, 37, 0.25);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.form-select-custom option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.stores-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(173, 36, 37, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.store-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(173, 36, 37, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(173, 36, 37, 0.3);
}

@media (max-width: 991.98px) {
    .store-card:active {
        transform: scale(0.98);
    }
}

.store-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.store-address {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.store-phone {
    color: #ffffff;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #111111;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(173, 36, 37, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(173, 36, 37, 0.6);
    box-shadow: 0 4px 15px rgba(173, 36, 37, 0.2);
}

.faq-item.active {
    border-color: #AD2425;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question span {
    text-transform: uppercase;
}

.faq-question:hover {
    background: rgba(173, 36, 37, 0.15);
}

.faq-question.active {
    background: rgba(173, 36, 37, 0.25);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .faq-question:active {
        transform: scale(0.99);
    }
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(245, 196, 0, 0.3);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 1rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        min-height: 48px; /* Better touch target */
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .store-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
        min-height: 48px; /* Better touch target */
    }
    
    .faq-answer-content {
        padding: 1rem;
    }
    
    /* Better mobile image handling */
    .hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Better mobile container padding */
    .city-selection-section,
    .faq-section {
        padding: 60px 0;
    }
    
    /* Regulamento section mobile adjustments */
    .regulamento-contato {
        font-size: 18px;
        padding: 0 1rem;
        margin-top: 2rem !important;
    }
    
    .regulamento-contato > div {
        word-break: break-all;
        overflow-wrap: anywhere;
        padding: 0.5rem 0;
    }
    
    .regulamento-contato a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
        -webkit-tap-highlight-color: rgba(173, 36, 37, 0.2);
    }
    
    .regulamento-contato a:active {
        color: #AD2425;
    }
    
    .regulamento-info {
        margin-top: 2rem !important;
        padding: 0 1rem;
    }
    
    .regulamento-info p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .city-selector {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .navbar-custom .container {
        padding: 0 0.75rem;
    }
    
    .navbar-mobile-logo {
        max-height: 30px;
        max-width: 120px;
    }
    
    .navbar-toggler {
        min-width: 40px;
        min-height: 40px;
        padding: 11px !important;
    }
    
    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 18px !important;
    }
    
    .form-select-custom {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .store-card {
        padding: 1.25rem;
    }
    
    .store-name {
        font-size: 1.1rem;
    }
    
    .store-address,
    .store-phone {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
    
    .city-selection-section,
    .faq-section {
        padding: 50px 0 !important;
    }
    
    /* Regulamento section extra small mobile */
    .regulamento-contato {
        font-size: 16px;
        padding: 0 0.75rem;
    }
    
    .regulamento-contato > div {
        word-break: break-all;
        overflow-wrap: anywhere;
    }
    
    .regulamento-info {
        padding: 0 0.75rem;
    }
    
    .regulamento-info p {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* User name truncation - shows "..." when name exceeds 15 characters */
.user-name-truncated {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(173, 36, 37, 0.3);
    border-top: 3px solid #AD2425;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions for all interactive elements */
button,
a,
.btn,
input,
select,
textarea {
    transition: all 0.3s ease;
}

/* Improve tap highlight color on mobile */
* {
    -webkit-tap-highlight-color: rgba(173, 36, 37, 0.3);
}

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #AD2425;
    outline-offset: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 70px;
    }
}

/* CSS específico para desktop - estrutura .card .card-body .row .col-md-5 */
@media (min-width: 992px) {
    .card .card-body .row .col-md-5 {
        min-height: 526px;
        display: flex;
        align-items: center;
    }
}

/* Botão FALE CONOSCO */
.btn-fale-conosco {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2rem !important;
    border-radius: 28px !important;
    border: 2px solid #ffffff !important;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    width: auto !important;
    display: inline-block !important;
}

.btn-fale-conosco:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-fale-conosco:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .btn-fale-conosco {
        padding: 0.7rem 1.5rem !important;
        font-size: 1rem;
    }
}

