/* ==========================================================================
   SANTA CASA DE SANTA CRUZ — Design System & Variáveis
   Versão 32 — Otimização Completa (Layout, Contraste, Responsividade, SEO)
   ========================================================================== */
:root {
    /* Paleta Principal */
    --navy-dark:    #0D3E70;
    --navy-medium:  #124B85;
    --navy-light:   #1A5FA8;
    --navy-pale:    #F0F4FA;
    /* Dourado */
    --gold:         #D4AF37;
    --gold-light:   #E7C970;
    --gold-dark:    #B5932A;
    /* Neutros */
    --white:        #FFFFFF;
    --cream:        #FAFAFA;
    --text-dark:    #1E293B;
    --text-body:    #374151;
    --text-muted:   #6B7280;
    /* Utilitários */
    --border-color: rgba(212, 175, 55, 0.18);
    --accent-glow:  rgba(212, 175, 55, 0.2);
    --navy-glow:    rgba(10, 25, 47, 0.85);
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg:    0 20px 50px rgba(0,0,0,0.12);
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast:   all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: block;
    flex-shrink: 0;
}

/* Container Global */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilitários */
.text-center { text-align: center; }
.hide-mobile { display: flex; }

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    outline: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Primário: fundo dourado, texto azul escuro */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--navy-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
}

/* Outline: borda azul, texto azul — funciona sobre fundos claros */
.btn-outline {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}
.btn-outline:hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Outline claro: para uso sobre fundos escuros */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}
.btn-outline-light:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Telefone no header */
.btn-phone {
    background: transparent;
    color: var(--navy-dark);
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 4px 0;
    box-shadow: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}
.btn-phone:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
    transform: none;
}

/* CTA emergencial verde */
.btn-emergency-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    overflow: hidden;
    position: relative;
}
.btn-emergency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 140%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}
.btn-emergency-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.45);
    color: var(--white);
}
.btn-emergency-cta:hover::before { left: 110%; }

/* Link simples */
.btn-link {
    background: none;
    border: none;
    color: var(--gold-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.btn-link:hover { color: var(--navy-dark); }
.btn-link svg { transition: var(--transition-fast); }
.btn-link:hover svg { transform: translateX(4px); }

/* Focus visível para acessibilidade */
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ==========================================================================
   Componentes Compartilhados: Badges & Títulos
   ========================================================================== */
.section-badge {
    display: inline-block;
    color: var(--gold-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--navy-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 48px auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 48px;
}

/* ==========================================================================
   Animações Globais
   ========================================================================== */
@keyframes pulsate {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }

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

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.header-logo-img:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.45);
}

/* Ações do Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Botão hambúrguer — sempre visível */
.mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--navy-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Drawer de navegação */
.nav-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -8px 0 40px rgba(13, 62, 112, 0.12);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 120px 44px 44px 44px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    margin: 0 0 32px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100%;
}

.nav-menu ul li {
    width: 100%;
    border-bottom: 1px solid rgba(13, 62, 112, 0.07);
}

.nav-menu ul li a,
.nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark) !important;
    text-decoration: none;
    transition: all 0.25s ease;
    display: block;
    width: 100%;
    padding: 14px 0;
}

.nav-menu ul li a:hover,
.nav-link:hover {
    color: var(--gold-dark) !important;
    padding-left: 8px;
}

/* Info extra no rodapé do drawer */
.nav-menu::after {
    content: 'Plantão 24h: (21) 97631-0050\ASanta Casa de Santa Cruz';
    white-space: pre-wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: auto;
    border-top: 1px solid rgba(13, 62, 112, 0.1);
    padding-top: 20px;
    font-family: 'Inter', sans-serif;
}

/* Overlay do menu (fundo escuro ao abrir) */
.nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 16, 32, 0);
    pointer-events: none;
    transition: background 0.4s ease;
    z-index: -1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--navy-dark);
    display: flex;
    flex-direction: column;
    padding-top: 96px; /* Compensa header fixo */
    overflow: hidden;
    width: 100%;
}

.hero-banner-wrapper {
    width: 100%;
    height: 580px;
    position: relative;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,62,112,0.15) 0%, rgba(13,62,112,0.45) 100%);
    z-index: 2;
}

/* Brand overlay sobre o banner */
.hero-brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 2px solid var(--gold);
    z-index: 3;
    padding: 22px 0;
    color: var(--navy-dark);
}

.hero-brand-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.hero-brand-text {
    max-width: 680px;
}

.hero-brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.hero-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.15;
    margin-bottom: 8px;
}

.hero-brand-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    font-weight: 400;
    line-height: 1.5;
}

.hero-brand-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Barra CTA abaixo do banner */
.hero-cta-bar {
    background-color: #F0F4FA;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-container {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pulse-dot {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #10B981;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, 0.5);
    animation: pulsate 1.8s ease-out infinite;
}

/* CORREÇÃO: era cor branca sobre fundo claro */
.hero-cta-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-phone-link {
    color: var(--navy-dark) !important;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 6px;
    transition: var(--transition-fast);
}
.hero-phone-link:hover {
    color: var(--gold-dark) !important;
}

.hero-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Partículas canvas (mantido) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

/* Componentes antigos de hero (mantidos por compat.) */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,25,47,0.82), rgba(10,25,47,0.55) 50%, rgba(10,25,47,0.10));
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-call-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    font-weight: 700;
    display: block;
    transition: var(--transition-fast);
}
.hero-call-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* ==========================================================================
   Quem Somos Section
   ========================================================================== */
.quem-somos-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-visual { position: relative; }

.collage-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.main-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 400px;
    background-image: url('../assets/about_team_official.jpg?v=4');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.secondary-frame {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 230px;
    background-image: url('../assets/about_comfort.jpg?v=4');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-experience {
    position: absolute;
    bottom: 36px;
    right: -12px;
    background: var(--navy-dark);
    border: 2px solid var(--gold);
    padding: 20px 28px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* CORREÇÃO: era branco sobre branco */
.about-text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.75;
}

.about-text strong {
    color: var(--navy-dark);
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
    margin-bottom: 32px;
}

.value-item {
    background-color: var(--cream);
    padding: 22px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.value-icon { margin-bottom: 14px; }

.value-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-dark);
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CORREÇÃO: era cor branca sobre fundo branco */
.human-care-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: var(--navy-pale);
    padding: 22px 26px;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
}

.human-care-card svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.human-care-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--navy-dark); /* CORREÇÃO: era var(--white) */
}

.human-care-card p {
    font-size: 0.88rem;
    color: var(--text-muted); /* CORREÇÃO: era rgba(255,255,255,0.75) */
    line-height: 1.6;
}

/* ==========================================================================
   Serviços Section
   ========================================================================== */
.servicos-section {
    padding: 100px 0;
    background-color: var(--navy-pale);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 58px;
    height: 58px;
    background-color: rgba(212, 175, 55, 0.09);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 22px;
    transition: var(--transition-fast);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    flex-grow: 1;
    line-height: 1.65;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.28);
}

.service-card:hover .service-card-icon {
    background-color: rgba(212, 175, 55, 0.18);
    color: var(--gold);
}

/* ==========================================================================
   Diferenciais Section
   ========================================================================== */
.diferenciais-section {
    padding: 100px 0;
    background-color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.diferencial-item {
    text-align: center;
    padding: 16px 8px;
}

.diff-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px auto;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    background-color: var(--cream);
    transition: var(--transition-smooth);
}

.diferencial-item h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.diferencial-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.diferencial-item:hover .diff-icon {
    background-color: var(--navy-pale);
    border-color: var(--navy-dark);
    color: var(--gold);
    transform: rotate(360deg);
}

/* ==========================================================================
   Nossos Produtos Section
   ========================================================================== */
.produtos-section {
    padding: 100px 0;
    background-color: #F7F5F0;
    border-top: 1px solid var(--border-color);
}

.categoria-wrapper {
    margin-bottom: 72px;
}
.categoria-wrapper:last-child {
    margin-bottom: 0;
}

.categoria-header {
    margin-bottom: 40px;
    text-align: center;
}

.categoria-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy-dark);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 16px;
    display: inline-block;
}

.categoria-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.categoria-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.65;
}

/* ========================================================
   Grid de Urnas Funerárias — 5 colunas simétricas
   Imagens reais em formato retrato (portrait) de alta qualidade
   ======================================================== */
.urnas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

/* Grid de Coroas — 4 colunas (imagens quadradas/landscape) */
.coroas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* ========================================================
   Cards do catálogo — moldura premium
   ======================================================== */
.coroa-card, .urna-card {
    background-color: var(--white);
    border: 1px solid rgba(13, 62, 112, 0.07);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    /* Garante que todos os cards tenham a mesma altura */
    height: 100%;
}

.coroa-card:hover, .urna-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 16px 40px rgba(13, 62, 112, 0.1);
}

/* ========================================================
   Wrapper da imagem de CAIXÃO — retrato alto
   Fundo branco neutro = idêntico ao fundo das fotos
   Ratio forçado para simetria perfeita entre todos os cards
   ======================================================== */
.urna-img-wrapper {
    background-color: #FAFAFA;
    border-radius: 8px;
    border: 1px solid rgba(13, 62, 112, 0.05);
    /* Ratio 3:5 (portrait) — idêntico em todos os cards */
    aspect-ratio: 3 / 5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.urna-img {
    width: 100%;
    height: 100%;
    /* contain: exibe o caixão inteiro sem cortar nada */
    object-fit: contain;
    object-position: center bottom;
    /* Padding sutil para o caixão não encostar nas bordas */
    padding: 8px 6px 4px 6px;
    transition: transform 0.5s ease;
    display: block;
}

.urna-card:hover .urna-img {
    transform: scale(1.04);
}

/* ========================================================
   Wrapper da imagem de COROA — quadrado (formato original)
   ======================================================== */
.coroa-img-wrapper {
    background-color: #F4F5F7;
    border-radius: 8px;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.coroa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.coroa-card:hover .coroa-img {
    transform: scale(1.06);
}

/* ========================================================
   Info do card (título, descrição, botão)
   ======================================================== */
.coroa-info, .urna-info {
    padding: 14px 4px 4px 4px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.urna-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--navy-dark);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.coroa-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--navy-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.coroa-info p, .urna-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
    flex-grow: 1;
}

/* Botão sempre no final do card, largura total */
.coroa-info .btn, .urna-info .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    padding: 9px 12px;
}

/* ==========================================================================
   Como Funciona Section (Timeline)
   ========================================================================== */
.como-funciona-section {
    padding: 100px 0;
    background-color: var(--navy-pale);
    border-top: 1px solid var(--border-color);
}

.timeline-container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.2));
    z-index: 1;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 36px;
    margin-bottom: 44px;
    z-index: 2;
}
.timeline-step:last-child { margin-bottom: 0; }

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    color: var(--gold-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.step-content {
    background-color: var(--white);
    padding: 28px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
    width: 100%;
    align-self: center;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-dark);
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.timeline-step:hover .step-number {
    background-color: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.08);
}
.timeline-step:hover .step-content {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gold);
}

/* ==========================================================================
   Depoimentos Section
   ========================================================================== */
.depoimentos-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 16px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 44px 40px;
    background-color: var(--cream);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 22px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy-dark);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--navy-pale);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-dark);
}

.author-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    background-color: var(--white);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.slider-arrow:hover {
    background-color: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
}

.slider-dots { display: flex; gap: 8px; }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(13, 62, 112, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

/* CORREÇÃO: era branco sobre fundo branco */
.dot.active {
    background-color: var(--navy-dark);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--cream);
    border-top: 1px solid var(--border-color);
}

.faq-info { padding-right: 36px; }

.faq-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.faq-support-box {
    background-color: var(--white);
    padding: 28px;
    border-radius: 6px;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.faq-support-box h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--navy-dark);
}

.faq-support-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-trigger {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}
.faq-trigger:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
}

.faq-trigger span:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-dark);
    line-height: 1.4;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold-dark);
    transition: var(--transition-fast);
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.active .faq-icon::after  { transform: rotate(90deg); opacity: 0; }
.faq-item.active .faq-icon::before { transform: rotate(180deg); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-content p {
    padding: 0 24px 22px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(0,0,0,0.04);
}

/* ==========================================================================
   Contato Section & Formulário
   ========================================================================== */
.contato-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.contact-form-container {
    background-color: var(--navy-pale);
    padding: 44px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid rgba(10, 25, 47, 0.12);
    border-radius: 4px;
    background-color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-status {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 8px;
    display: none;
    padding: 12px;
    border-radius: 4px;
}
.form-status.success {
    display: block;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
}
.form-status.error {
    display: block;
    color: #DC2626;
    background: rgba(220, 38, 38, 0.08);
}

.contact-info-container { padding-left: 16px; }

.contact-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.info-item h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--navy-dark);
}

.info-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.contact-link {
    font-weight: 600;
    color: var(--navy-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.contact-link:hover { color: var(--gold-dark); }

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-map {
    height: 280px;
    width: 100%;
    background-color: var(--white);
    filter: invert(90%) hue-rotate(190deg) brightness(85%) contrast(110%);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 0 0;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    /* Grid simétrico e equilibrado */
    grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.footer-socials { display: flex; gap: 14px; }

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.social-icon:hover {
    background-color: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-links h3,
.footer-contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: var(--gold-light);
    position: relative;
    padding-bottom: 8px;
}
.footer-links h3::after,
.footer-contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}
.footer-links ul a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
    line-height: 1.55;
    /* Conserta a fonte numérica (evita variação de tamanho entre números) */
    font-variant-numeric: tabular-nums;
}

.footer-phone-cta {
    /* Fonte sem serifa ideal para números, substituindo a serifada irregular */
    font-family: 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 1.4rem;
    color: var(--navy-dark) !important;
    background-color: var(--white);
    border: 2px solid var(--gold);
    font-weight: 800;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-phone-cta:hover {
    background-color: var(--gold);
    color: var(--navy-dark) !important;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    background-color: #061020;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.45); }
.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.88); }

/* ==========================================================================
   Modais de Serviços
   ========================================================================== */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(6, 16, 32, 0.82);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.service-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-box {
    background-color: var(--white);
    border-top: 4px solid var(--gold);
    border-radius: 8px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.service-modal-overlay.active .service-modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-dark);
    line-height: 1;
    transition: var(--transition-fast);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modal-close:hover {
    color: var(--gold-dark);
    background: var(--navy-pale);
}

.modal-body { padding: 48px 44px; }

.modal-header-container {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.modal-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-header-container h2 {
    font-size: 1.7rem;
    color: var(--navy-dark);
}

.modal-detail-text {
    font-size: 0.98rem;
    color: var(--text-body);
    margin-bottom: 28px;
    line-height: 1.72;
}

.modal-features-list {
    background-color: var(--navy-pale);
    padding: 22px 28px;
    border-radius: 4px;
    margin-bottom: 28px;
}

.modal-features-list h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-dark);
    margin-bottom: 14px;
}

.modal-features-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--navy-dark);
    line-height: 1.5;
}
.modal-features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   WhatsApp Flutuante
   ========================================================================== */
.btn-whatsapp-floating {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition-smooth);
}
.btn-whatsapp-floating:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #1ebe5a;
    color: var(--white);
}

.floating-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(37, 211, 102, 0.45);
    z-index: -1;
    animation: pulsate 2s ease-out infinite;
}

/* ==========================================================================
   RESPONSIVIDADE — Media Queries
   ========================================================================== */

/* === Desktop médio (1200px): Urnas 5→53 | Coroas 4→2 === */
@media (max-width: 1200px) {
    .urnas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .coroas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* === Tablet largo / Notebook pequeno (1024px): Urnas 3→3 | Coroas 4→2 === */
@media (max-width: 1024px) {
    .urnas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .coroas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .section-grid-2 {
        gap: 48px;
    }
}

/* === Tablet (992px) === */
@media (max-width: 992px) {
    html { font-size: 15px; }

    .header-logo-img { height: 70px; }

    .hero-banner-wrapper { height: 480px; }
    .hero-brand-overlay { padding: 18px 0; }
    .hero-brand-title { font-size: 2.2rem; }
    .hero-brand-logo { height: 90px; }

    .section-grid-2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .urnas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .coroas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .timeline-line { left: 28px; }
    .step-number { width: 56px; height: 56px; font-size: 1.3rem; }
    .timeline-step { gap: 20px; }
}

/* === Tablet estreito / Mobile large (768px) === */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }

    .header-logo-img { height: 60px; }

    .hero-section { padding-top: 76px; }
    .hero-banner-wrapper { height: 380px; }
    .hero-brand-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 12px;
    }
    .hero-brand-text {
        text-align: center;
        max-width: 100%;
    }
    .hero-brand-title { font-size: 1.8rem; }
    .hero-brand-subtitle { font-size: 0.75rem; }
    .hero-brand-desc { font-size: 0.95rem; }
    .hero-brand-logo { height: 70px; }
    .hero-brand-overlay { padding: 14px 0; }

    .hero-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .hero-cta-left {
        flex-direction: column;
        gap: 6px;
    }
    .hero-cta-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title { font-size: 1.8rem; }

    .btn { padding: 10px 20px; }
    .btn-lg { padding: 12px 26px; font-size: 0.95rem; }

    .values-grid { grid-template-columns: 1fr; }

    .collage-container { height: 340px; }
    .main-frame { height: 280px; }
    .secondary-frame { height: 150px; border-width: 4px; }
    .about-experience {
        right: 8px;
        bottom: 16px;
        padding: 12px 16px;
    }
    .exp-number { font-size: 2rem; }

    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Urnas: 2 colunas simétricas no mobile */
    .urnas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    /* Coroas: 2 colunas */
    .coroas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form-container { padding: 28px 22px; }
    .contact-info-container { padding-left: 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-container {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .modal-body { padding: 30px 22px; }
    .modal-header-container h2 { font-size: 1.4rem; }
    .modal-actions { flex-direction: column; }

    .faq-info { padding-right: 0; margin-bottom: 28px; }

    .nav-menu { width: 100%; right: -100%; }
}

/* === Mobile pequeno (576px) === */
@media (max-width: 576px) {
    .container { padding: 0 16px; }

    .hero-banner-wrapper { height: 280px; }

    /* Urnas: 2 colunas (portrait mais estreitas mas simétricas) */
    .urnas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    /* Coroas: 1 coluna */
    .coroas-grid { grid-template-columns: 1fr; }

    /* Não usar height fixa no wrapper do caixão (usa aspect-ratio) */
    /* .urna-img-wrapper height é controlada por aspect-ratio: 3/5 */
    .coroa-img-wrapper { height: 180px; }

    .produtos-section { padding: 72px 0; }
    .categoria-header h3 { font-size: 1.6rem; }

    .diferenciais-grid { grid-template-columns: 1fr; }

    .hero-cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-phone-cta { font-size: 1.7rem; padding: 8px 20px; }

    .testimonial-card { padding: 30px 20px; }
    .testimonial-text { font-size: 1.1rem; }
}

/* === Mobile mínimo (380px): 1 coluna cada === */
@media (max-width: 380px) {
    .header-logo-img { height: 52px; }
    /* Em telas muito pequenas, 1 coluna para melhor legibilidade */
    .urnas-grid { grid-template-columns: 1fr; }
    .coroas-grid { grid-template-columns: 1fr; }
    .hero-brand-title { font-size: 1.5rem; }
}
