/* ============================================================
   Grupo Bahia - Custom Styles (Tailwind-compatible)
   Core visual effects live in template's <style> tag
   ============================================================ */

/* ---------- Line Clamp fallback ---------- */
body{
    font-family: 'Hanken Grotesk', sans-serif;
    color:#777;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'EB Garamond', serif;
    color: #0A0A0A;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- Selection ---------- */
::selection {
    background-color: #DAC375;
    color: #0A0A0A;
}

/* ---------- Focus visible ---------- */
:focus-visible {
    outline: 2px solid #DAC375;
    outline-offset: 2px;
}

/* ---------- Page Content from CMS (TinyMCE) ---------- */
.pagina-content h2 {
    font-family: 'EB Garamond', serif;
    margin-bottom: 15px;
    margin-top: 15px;
}
.pagina-content h3 {
    font-family: 'EB Garamond', serif;
    margin-bottom: 15px;
    margin-top: 15px;
}
.pagina-content p {
    font-family: 'Hanken Grotesk', sans-serif;
    margin-bottom: 15px;
}
.pagina-content a {
    color: #6e5d1a;
    transition: color .3s;
}
.pagina-content a:hover {
    color: #DAC375;
}
.pagina-content ul,
.pagina-content ol {
    font-family: 'Hanken Grotesk', sans-serif;
    margin-bottom: 15px;
    padding-left: 24px;
}
.pagina-content img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.pagina-content blockquote {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    line-height: 1.4;
    font-style: italic;
    color: #6e5d1a;
    border-left: 3px solid #DAC375;
    padding-left: 24px;
    margin: 32px 0;
}
.pagina-content hr {
    border: none;
    height: 1px;
    background: #E0E0E0;
    margin: 48px 0;
}
.pagina-content .grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 32px 0;
}
@media (min-width: 768px) {
    .pagina-content .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}
.pagina-content .grid-2 img {
    margin: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.pagina-content .area-section {
    padding: 48px 0;
    border-bottom: 1px solid #E0E0E0;
}
.pagina-content .area-section:last-child {
    border-bottom: none;
}
.pagina-content .area-section h2 {
    margin-top: 0;
}
.pagina-content .area-icon {
    color: #DAC375;
    font-size: 32px;
    vertical-align: middle;
    margin-right: 8px;
    line-height: 1;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f3ede4;
}
::-webkit-scrollbar-thumb {
    background: #cec6b4;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b0a894;
}

.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .hero-gradient {
            background: linear-gradient(to right, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
        }
        .text-glow {
            text-shadow: 0 0 20px rgba(218, 195, 117, 0.15);
        }