/* Importando a fonte Montserrat, marca registrada da Dell Anno */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap');

/* Variáveis do Sistema de Design (Clean Light Theme - Cores de nacional.html/style.css) */
:root {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f5f5f5; /* Cinza claro das seções alternadas do nacional */
    --color-bg-tertiary: #ececec;
    --color-text-primary: #161616; /* Texto escuro do nacional */
    --color-text-secondary: #666666;
    --color-text-muted: #888888;
    --color-accent: #000000; 
    --color-accent-hover: #2f2f2f;
    --color-border: #ececec;
    --color-btn-hover: #424242;
    --font-primary: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --shadow-premium: 0 15px 30px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.05);
}

/* Reset Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    scrollbar-width: thin;
    scrollbar-color: var(--color-text-muted) var(--color-bg-secondary);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-bg-primary);
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-text-muted);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-primary);
}

/* Links & Botões */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Layout Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-accent);
}

/* Títulos Premium */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--color-text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: var(--color-text-primary);
    margin: 1.5rem auto 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    letter-spacing: 1px;
}

/* Header & Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header .logo-img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo branca no topo transparente sobre a imagem */
    transition: var(--transition-smooth);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-city {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 0.75rem;
    line-height: 1.1;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-city {
    border-left-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.btn-login-shortcut {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.btn-login-shortcut:hover {
    background-color: #ffffff;
    color: #000000;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Menu Deslizante a partir da Esquerda (Global) */
#nav-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid var(--color-border);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem;
    transition: var(--transition-smooth);
    z-index: 1050;
}

#nav-menu-wrapper.active {
    left: 0;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    list-style: none;
    padding: 0;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-primary);
    transition: var(--transition-quick);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Cor do sanduíche quando aberto sobre o fundo branco */
.menu-toggle.active span {
    background-color: var(--color-text-primary) !important;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Header Scrolled (Black Mode) */
.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
}

.header.scrolled .logo-img {
    filter: brightness(0) invert(1);
}

.header.scrolled .logo-city {
    border-left-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.header.scrolled .menu-toggle span {
    background-color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-title .text-accent {
    color: #ffffff;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.hero .btn-primary {
    background-color: #ffffff;
    color: #000000;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.hero .btn-primary:hover {
    background-color: #ececec;
    transform: translateY(-2px);
}

.hero .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.hero .btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section: Sobre */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--color-text-primary);
}

.about-desc {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.about-highlights {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.about-image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.about-image-info {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 2;
    color: #ffffff;
}

.about-image-info .badge {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.about-image-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Section: Ambientes */
.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ambiente-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}

.ambiente-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.ambiente-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.95;
    transition: var(--transition-smooth);
    color: #ffffff;
}

.ambiente-badge {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.ambiente-name {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.ambiente-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 450px;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition-smooth);
    line-height: 1.5;
}

/* Hover Effects no Card */
.ambiente-card:hover .ambiente-img {
    transform: scale(1.03);
}

.ambiente-card:hover .ambiente-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.ambiente-card:hover .ambiente-badge,
.ambiente-card:hover .ambiente-name {
    transform: translateY(0);
}

.ambiente-card:hover .ambiente-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Section: Visite / Showroom */
.local-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: stretch;
}

.local-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 4rem;
    box-shadow: var(--shadow-premium);
}

.info-item {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 3rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--color-text-secondary);
    font-weight: 300;
    font-size: 0.95rem;
    white-space: pre-line;
}

.map-wrapper {
    position: relative;
    min-height: 450px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1); /* Mapa em tons cinza clean */
}

/* Section: Orçamento / Contato */
.contact-section {
    background-color: var(--color-bg-secondary);
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.budget-form {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 4rem;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-primary);
}

.form-input,
.form-select,
.form-textarea {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    color: var(--color-text-primary);
    padding: 1rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-text-primary);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23161616' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: flex-start;
    background-color: var(--color-text-primary);
    color: #ffffff;
    font-weight: 700;
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

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

/* Lightbox / Modal de Imagem */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-quick);
}

.lightbox-close:hover {
    color: var(--color-text-secondary);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Cor padrão do WhatsApp aceita mundialmente */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: #20ba5a;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Footer (Mantido escuro como no nacional) */
.footer {
    border-top: 1px solid #2f2f2f;
    padding: 5rem 0 3rem 0;
    background-color: #000000;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 16px;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #999999;
    font-size: 0.9rem;
    font-weight: 300;
    max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu-link {
    color: #999999;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-menu-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #2f2f2f;
    color: #999999;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #2f2f2f;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888888;
}

.footer-signature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 100% Responsivo: Ajustes Gerais e Breakpoints */
@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-card {
        aspect-ratio: 16/9;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .local-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .hero .btn-primary, .hero .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 2rem;
    }
    
    .ambientes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ambiente-card {
        aspect-ratio: 16/11;
    }
    
    .ambiente-overlay {
        padding: 2rem;
    }
    
    .ambiente-desc {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.9rem;
    }
    
    .local-info-box {
        padding: 3rem 2rem;
    }
    
    .budget-form {
        padding: 3rem 1.5rem;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .btn-submit {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
    

    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        font-size: 0.75rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .local-info-box {
        padding: 2rem 1.5rem;
    }
    
    .info-item {
        padding-left: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .map-wrapper {
        min-height: 320px;
    }

    .header-left {
        gap: 0.75rem;
    }

    .btn-login-shortcut {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .logo-city {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding-left: 0.5rem;
    }
}
