/* ================================================================
   GUIA COMERCIAL - ALCOBAÇA
   Arquivo: css/estilos.css
   ================================================================ */

/* ================= RESET BÁSICO ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
html { scroll-behavior: auto; } /* deixa o JS controlar */

/* ================================================================
   ANIMAÇÕES (KEYFRAMES)
   ================================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInHero {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================================================
   CABEÇALHO (HEADER)
   ================================================================ */
header {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.logo img { 
    max-height: 50px; 
    width: auto; 
    animation: scaleIn 0.8s ease-out;
}

.nav-center {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    animation: fadeIn 1s ease-out 0.3s both;
}

.nav-links a {
    font-size: 0.95rem; 
    font-weight: 400; 
    padding-bottom: 5px;
    border-bottom: 2px solid transparent; 
    transition: border-color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active { 
    border-bottom: 2px solid #fff; 
}

.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    animation: fadeIn 1s ease-out 0.4s both;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
}

.header-icons { 
    display: flex; 
    gap: 15px; 
    font-size: 1.3rem; 
    align-items: center; 
    animation: fadeIn 1s ease-out 0.5s both;
}

.header-icons a { 
    cursor: pointer; 
    transition: opacity 0.3s; 
    color: #fff; 
}

.header-icons a:hover { opacity: 0.7; }

/* ================================================================
   MENU MOBILE (HAMBURGER)
   ================================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================================================
   HERO SECTION (PÁGINA INICIAL)
   ================================================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-media-fade {
    opacity: 0;
    animation: fadeInHero 1.8s ease-out forwards;
}

.video-bg {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    z-index: -2;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: 
        linear-gradient(to top, rgba(255, 140, 0, 0.35) 0%, rgba(255, 140, 0, 0) 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(255,255,255,0.09) 2px,
            rgba(255,255,255,0.09) 4px
        );
    z-index: -1;
}

.hero-content { 
    z-index: 10; 
    padding: 0 20px; 
}

/* TÍTULO ALCOBAÇA */
.outline-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800; 
    color: transparent;
    -webkit-text-stroke: 6px #ffffff;
    letter-spacing: 2px; 
    margin-bottom: 10px; 
    text-transform: uppercase;
    filter: brightness(1.2);
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.outline-subtitle{
    font-size: clamp(4rem, 2vw, 4rem);
    font-weight: 900; 
    color: transparent;
    -webkit-text-stroke: 3px #ffffff;
    letter-spacing: 5px; 
    margin-bottom: 10px; 
    text-transform: uppercase;
    filter: brightness(1.2);
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    margin-top: -60px !important;
}

/* SUBTÍTULO */
.hero-subtitle {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 
        0 0 20px rgba(0,0,0,0.8),
        2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 40px;
    filter: brightness(1.15);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* SEARCH BAR */
.search-container {
    display: flex;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto 30px;
    z-index: 10;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255,255,255,0.95);
    color: #333;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.search-input::placeholder { color: #999; }

.search-btn {
    padding: 14px 30px;
    border: 1px solid #fff;
    border-radius: 50px;
    background: #0284c7;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.search-btn:hover {
    background: #026aa6;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.6);
}

/* BOTÕES DO HERO */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-hero {
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-hero:hover {
    background: #fff;
    color: #0284c7;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

.btn-hero.primary {
    background: #0284c7;
    border-color: #0284c7;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.5);
}

.btn-hero.primary:hover {
    background: #fff;
    color: #0284c7;
    box-shadow: 0 12px 32px rgba(2, 132, 199, 0.6);
}

/* ANIMAÇÕES - HERO PÁGINAS INTERNAS */
.hero .hero-content .hero-subtitle { animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero .hero-content h1 { animation: fadeInUp 0.9s ease-out 0.4s both; }

/* ================================================================
   DIVISOR ONDULADO (WAVE DIVIDER) - Padrão do Hero
   ================================================================ */
.wave-divider {
    position: absolute; 
    bottom: -2px; 
    left: 0; 
    width: 100%;
    overflow: hidden; 
    line-height: 0; 
    z-index: 20;
}

.wave-divider svg { 
    display: block; 
    width: calc(150% + 1.3px); 
    height: 120px; 
}

.wave-foam { fill: rgba(255, 255, 255, 0.6); }
.wave-sand { fill: #f3e5d8; }

/* ================================================================
   SEÇÃO DE CATEGORIAS
   ================================================================ */
.categories-section {
    background-color: #f3e5d8;
    padding: 80px 5% 100px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0284c7;
}

.btn-all {
    border: 2px solid #0284c7;
    padding: 12px 28px;
    border-radius: 30px;
    color: #0284c7;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-all:hover { background: #0284c7; color: #fff; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.category-card:hover img { transform: scale(1.1); }

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: #fff;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* ================================================================
   SEÇÃO COMO CHEGAR
   ================================================================ */
.how-to-arrive-section {
    position: relative;
    background: linear-gradient(135deg, #0284c7 0%, #026aa1 100%);
    color: #fff;
    padding: 100px 5% 80px;
    text-align: center;
    overflow: visible;
}

.wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #0284c7 0%, #026aa1 100%);
    z-index: 1;
}

.wave-divider-top svg {
    display: block;
    width: 120%;
    height: 80px;
    transform: scaleY(-1);
    margin-left: -10%;
}

.wave-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #0284c7 0%, #026aa1 100%);
    z-index: 1;
}

.wave-divider-bottom svg {
    display: block;
    width: 120%;
    height: 80px;
    margin-left: -10%;
}

.how-to-arrive-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.how-to-arrive-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-to-arrive-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.how-to-arrive-divider {
    width: 100px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    margin: 30px auto;
}

.how-to-arrive-section strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 30px;
    font-weight: 600;
}

.arrival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
    text-align: left;
}

.arrival-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.arrival-item i {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 10px;
    display: block;
}

.arrival-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.arrival-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ================================================================
   SEÇÃO INFORMAÇÕES E EVENTOS
   ================================================================ */
.events-section {
    background-color: #f3e5d8;
    padding: 80px 5% 100px;
}

.events-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4a3627;
    margin-bottom: 50px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.evento-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.evento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25) !important;
}

.evento-card img {
    transition: transform 0.5s ease;
}

.evento-card:hover img {
    transform: scale(1.1);
}

/* Controles do Carrossel */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #4a3627;
    background: transparent;
    color: #4a3627;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: #4a3627;
    color: #fff;
}

/* ================================================================
   SEÇÃO CADASTUR (COM ONDA NO TOPO E NA BASE)
   ================================================================ */
.secao-cadastur {
    position: relative;
    background-color: #ffffff;
    padding: 10px 5% 60px;
    margin-bottom: 0;
}

/* Onda Superior (Virada de cabeça para baixo para encaixar) */
.onda-cadastur-topo {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    transform: rotate(180deg);
}

/* Onda Inferior */
.onda-cadastur-base {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.onda-cadastur-topo svg,
.onda-cadastur-base svg {
    display: block;
    width: 100%;
    height: 60px; /* Altura da onda */
}

.cadastur-simples {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cadastur-simples p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cadastur-simples strong {
    color: #0284c7;
    font-weight: 700;
}

/* ================================================================
   LETRA CAPITULAR (ESTILO MATÉRIA/JORNAL)
   ================================================================ */
.drop-cap::first-letter {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0284c7;
    float: left;
    line-height: 0.8;
    margin-top: 0.35rem;
    margin-right: 0.9rem;
}

/* ================================================================
   FOOTER COMPLETO
   ================================================================ */
.footer-completo {
    position: relative;
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 60px;
    overflow: hidden;
    border-top: none;
    margin-top: -12px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0284c7;
    border-radius: 2px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0284c7;
    transform: translateY(-3px);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.75rem;
    color: #0284c7;
    width: 14px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact li i {
    color: #0284c7;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit {
    color: #666 !important;
    font-size: 0.75rem !important;
}

/* ================================================================
   RESPONSIVIDADE - DESKTOP/TABLET (HEADER)
   ================================================================ */
@media (max-width: 900px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: rgba(0,0,0,0.9);
        position: fixed;
        width: 100%;
        height: 90px;
        left: 0;
        top: 0;
        box-sizing: border-box;
    }

    .logo {
        flex: none;
        display: flex;
        justify-content: flex-start;
    }

    .logo img { max-height: 50px; }

    /* HAMBURGER */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        position: absolute !important;
        top: 50% !important;
        right: 55px !important;
        transform: translateY(-50%) !important;
        width: 35px !important;
        height: 30px !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 999 !important;
        gap: 6px !important;
        cursor: pointer;
    }

    .hamburger span {
        display: block !important;
        width: 30px !important;
        height: 3px !important;
        background-color: #fff !important;
        border-radius: 2px !important;
        flex-shrink: 0 !important;
    }

    .nav-center {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        align-items: stretch;
        display: none;
        z-index: 100;
    }

    .nav-center.active { display: flex; }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .nav-links a { font-size: 1rem; padding: 10px 0; }
    .language-selector { width: 100%; gap: 8px; padding-top: 20px; justify-content: flex-start; }
    .lang-btn { padding: 8px 12px; font-size: 0.85rem; }
    .header-icons { display: none; }
    .hero { margin-top: 80px; padding-top: 20px; }

    .outline-title {
        font-size: 60px !important;
        font-weight: 900;
        color: transparent;
        -webkit-text-stroke: 3px #ffffff;
        letter-spacing: 2px;
        margin-bottom: 10px;
        text-transform: uppercase;
        filter: brightness(1.2);
        text-shadow: 0 0 30px rgba(255,255,255,0.3);
        animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .outline-subtitle{
        font-size: 30px !important;
        font-weight: 900; 
        color: transparent;
        -webkit-text-stroke: 2px #ffffff;
        letter-spacing: 5px; 
        margin-bottom: 10px; 
        text-transform: uppercase;
        filter: brightness(1.2);
        text-shadow: 0 0 30px rgba(255,255,255,0.3);
        animation: fadeInUp 1s ease-out 0.2s both;
        margin-top: -30px !important;
    }

    .hero-subtitle { font-size: 1rem; }
    .search-container { flex-direction: column; max-width: 90%; }
    .search-input, .search-btn { width: 100%; }
    
    .hero-buttons {
        flex-direction: column;
        width: 90%;
        max-width: 320px;
        gap: 12px;
        align-items: center;
        margin: 0 auto;
    }

    .btn-hero { width: 100%; padding: 10px 25px; font-size: 0.9rem; justify-content: center; }
    .search-btn { padding: 14px 30px; font-size: 1rem; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .section-header h2 { font-size: 1.8rem; }
    .categories-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
    .category-card { height: 240px; }
    .how-to-arrive-section h2, .events-section h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ================================================================
   RESPONSIVIDADE - MOBILE
   ================================================================ */
@media (max-width: 600px) {
    header { padding: 12px 5%; }
    .logo img { max-height: 55px; }
    .hero { margin-top: 85px; }
    .outline-title { font-size: clamp(2rem, 6vw, 4rem); }
    .hero-subtitle { font-size: 0.9rem; }
    .search-container { margin: 0 auto 20px; width: 100%; }
    .hero-buttons { max-width: 280px; }
    .btn-hero { padding: 9px 20px; font-size: 0.85rem; }
    .nav-links a { font-size: 0.9rem; }
    .lang-btn { padding: 6px 10px; font-size: 0.75rem; }
    .categories-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.5rem; }
    .arrival-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-links a, .footer-contact li { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}