﻿:root {
    --color-primary: #b59d6a;
    --color-primary-dark: #9a8155;
    --color-secondary: #1b2c3c;
    --color-light: #ffffff;
    --color-muted: #798595;
    --color-background: #f7f8fb;
    --font-family: "Montserrat", "Segoe UI", sans-serif;
    --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.08);
    --color-navy: #0f2840;
    --color-navy-dark: #0b1c2c;
    --color-sand: #d8c7a4;
    --color-sand-light: #efe6d2;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--color-secondary);
    background: var(--color-background);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1100px, 90vw);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    background: var(--color-secondary);
    color: var(--color-light);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: #14202e;
    transform: translateY(-1px);
}

.btn-light {
    background: var(--color-light);
    color: var(--color-secondary);
}

.btn-light:hover {
    background: #eef1f5;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-secondary);
}

/* Top navigation */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-primary);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-light);
    font-weight: 700;
    text-transform: uppercase;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    font-weight: 700;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    color: var(--color-light);
}

.nav a:hover {
    opacity: 0.8;
}

.social {
    display: flex;
    gap: 0.75rem;
    color: var(--color-light);
    font-weight: 600;
}

.social .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-light);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.topbar.menu-open .nav-toggle span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .nav-toggle span:nth-of-type(3) {
    opacity: 0;
}

.topbar.menu-open .nav-toggle span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--color-light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(27, 44, 60, 0.85), rgba(27, 44, 60, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    max-width: 580px;
    padding: 5rem 0;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--color-light);
}

.about .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.about-badge {
    position: absolute;
    top: -32px;
    left: -32px;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: var(--shadow-soft);
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 1.5rem;
}

.about-text p + p {
    margin-top: 1rem;
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    list-style: none;
}

.pillars li {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(181, 157, 106, 0.18);
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
}

/* Promo */

.promo {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: var(--color-light);
}

.promo-sg {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    background: url('../images/photodump/IMG_5675.jpg') center/cover no-repeat;
    color: var(--color-light);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 44, 60, 0.7);
}

.promo .container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.promo-sg .container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.promo h3 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
}

.promo-sg h3 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 700;
}

/* Units */
.units {
    padding: 6rem 0;
    background: url('data:image/svg+xml,%3Csvg width="160" height="160" viewBox="0 0 160 160" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e7eaef" fill-opacity="0.6"%3E%3Cpath d="M160 160h-40v-40h40v40zm-80 0H40v-40h40v40zm40-40h-40V80h40v40zM40 120H0V80h40v40zm40-40H40V40h40v40zM40 80H0V40h40v40zm40-40H40V0h40v40zm80 120h-40v-40h40v40zm-40-40h-40V80h40v40zm40-40h-40V40h40v40z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.unit-card {
    background: var(--color-light);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.unit-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(181, 157, 106, 0.12);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 1.25rem;
}

.unit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.unit-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.unit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.unit-link::after {
    content: "?";
    transition: transform 0.2s ease;
}

.unit-link:hover::after {
    transform: translateX(4px);
}

/* Join us */
.join-us {
    position: relative;
    padding: 6rem 0;
    background: var(--color-secondary);
    color: var(--color-light);
}

.join-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(27, 44, 60, 0.92), rgba(27, 44, 60, 0.75));
}

.join-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.join-content {
    display: grid;
    gap: 1.5rem;
}

.join-form {
    display: grid;
    gap: 1rem;
}

.join-form label {
    display: grid;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.join-form input,
.join-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    font-family: var(--font-family);
}

.join-form input:focus,
.join-form textarea:focus {
    outline: 3px solid rgba(255, 255, 255, 0.25);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.checkbox input {
    margin-top: 0.2rem;
}

.join-image {
    border-radius: 24px;
    background: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* Clients */
.clients {
    padding: 6rem 0;
    background: var(--color-light);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.client-card {
    height: 100px;
    border-radius: 16px;
    background: #eef1f5;
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--color-muted);
    box-shadow: inset 0 0 0 1px rgba(27, 44, 60, 0.05);
}

/* Footer */
.footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.95);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer h3 {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: inherit;
}

.footer a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .social {
    gap: 1.25rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .topbar-links {
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .topbar .container {
        gap: 1.5rem;
    }

    .nav {
        gap: 1rem;
    }

    .about .container,
    .join-wrapper {
        grid-template-columns: 1fr;
    }

    .about-badge {
        position: static;
        margin-bottom: 1.5rem;
        display: inline-block;
    }

    .join-image {
        min-height: 320px;
    }
    .client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .topbar-links {
        position: fixed;
        inset: 72px 0 0 0;
        width: 100%;
        background: rgba(27, 44, 60, 0.97);
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 1.75rem 3rem;
        gap: 2rem;
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
        z-index: 99;
    }

    .topbar.menu-open .topbar-links {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 1.5rem;
        font-size: 1.1rem;
    }

    .social {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }

    .social .icon {
        border-color: rgba(255, 255, 255, 0.4);
    }

    .unit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 576px) {
    .unit-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 60vh;
    }

    .btn {
        width: 100%;
    }
    .client-grid {
        grid-template-columns: 1fr;
    }

}




/* --------------------------------------------------
   Security page styles
-------------------------------------------------- */
.security-page {
    background: var(--color-background);
    color: var(--color-secondary);
}

.security-page .topbar {
    background: var(--color-navy);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.security-page .logo-icon {
    color: var(--color-navy);
}

.security-page .topbar .nav a,
.security-page .topbar .social {
    color: var(--color-light);
}

.security-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../images/photodump/IMG_5482.jpg') center/cover no-repeat;
    color: var(--color-light);
}

.events-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../images/photodump/WhatsAppImage2024-10-05at15.13.38.jpeg') center/cover no-repeat;
    color: var(--color-light);
}


.security-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 28, 44, 0.9), rgba(11, 28, 44, 0.6));
}

.security-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
    max-width: 540px;
    padding: 5rem 0;
}

.security-hero__content h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.scroll-indicator {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.scroll-indicator span {
    width: 14px;
    height: 14px;
    border-left: 2px solid var(--color-light);
    border-bottom: 2px solid var(--color-light);
    transform: rotate(-45deg);
    margin-top: -4px;
}

.scroll-indicator:hover {
    transform: translateY(4px);
    border-color: var(--color-light);
}

.security-overview {
    padding: 6rem 0;
    background: var(--color-light);
}

.security-overview .overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.overview-media {
    display: grid;
    gap: 1.5rem;
}

.media-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: var(--color-light);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
}

.media-card--outline {
    background: transparent;
    border: 2px solid var(--color-navy);
    box-shadow: none;
}

.media-card img {
    width: 100%;
    height: auto;
}

.overview-copy {
    display: grid;
    gap: 1.25rem;
}

.overview-copy h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.security-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f4f6fb 0%, #fefaf3 100%);
}

.security-services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    border-radius: 28px;
    padding: 3rem 2.5rem;
    display: grid;
    gap: 1.5rem;
    min-height: 320px;
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.service-card--events {
    background: var(--color-sand-light);
    color: var(--color-navy-dark);
}

.service-card--patrimonial {
    background: #eceff4;
    color: var(--color-secondary);
}

.service-tag {
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(27, 44, 60, 0.65);
}

.security-testimonials {
    position: relative;
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1520392664888-6efc3fddab18?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: var(--color-light);
}

.security-testimonials__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 44, 0.82);
}

.testimonials-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    text-align: center;
}

.testimonials-wrapper h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonial-carousel {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    backdrop-filter: blur(6px);
    min-width: 220px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.carousel-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--color-light);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.security-gallery {
    padding: 5rem 0;
    background: var(--color-navy);
    color: var(--color-light);
}

.gallery-wrapper {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.gallery-frame {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

.gallery-frame img {
    width: 100%;
    height: auto;
    display: none;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.gallery-frame img.active {
    display: block;
    opacity: 1;
}

.gallery-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
}

.gallery-dots .dot.is-active {
    width: 14px;
    height: 14px;
    background: var(--color-light);
}

.security-page .footer {
    background: var(--color-navy-dark);
    padding-top: 5rem;
}

.security-page .footer-lead {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.security-page .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.75rem;
}

@media (max-width: 1100px) {
    .security-testimonials .testimonial-carousel {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .security-overview .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-media {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        justify-items: center;
    }

    .security-services .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .security-hero {
        min-height: 60vh;
        text-align: center;
    }

    .security-hero__content {
        justify-items: center;
    }

    .testimonial-carousel {
        flex-direction: column;
    }

    .carousel-arrow {
        display: none;
    }

    .testimonial-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .media-card {
        padding: 1.75rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .gallery-frame {
        border-radius: 20px;
    }

    .scroll-indicator {
        width: 44px;
        height: 44px;
    }
}
/* --------------------------------------------------
   Frangalhas page styles
-------------------------------------------------- */
.frangalhas-page {
    background: #fff8f2;
    color: var(--color-secondary);
}

.frangalhas-page .topbar {
    background: #c95a1a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.frangalhas-page .logo-icon {
    color: #c95a1a;
}

.frangalhas-page .topbar .nav a,
.frangalhas-page .topbar .social {
    color: var(--color-light);
}

.frangalhas-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    background: url('../images/photodump/bomgourmet_2023_07_28172400_bigstock-Delicious-Golden-Brown-Rotisse-472766859.jpg') center/cover no-repeat;
    color: var(--color-light);
}

.frangalhas-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 13, 0, 0.35) 0%, rgba(24, 11, 0, 0.75) 100%);
}

.frangalhas-hero__content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 5rem;
    max-width: 640px;
}

.frangalhas-hero__content h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 800;
}

.frangalhas-about {
    padding: 5.5rem 0 5rem;
    background: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-logo img {
    width: 100%;
    max-width: 360px;
}

.about-content {
    display: grid;
    gap: 1.25rem;
}

.about-content h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.frangalhas-story {
    padding: 5rem 0;
    background: linear-gradient(90deg, #eee2d4 0%, #f5f2ed 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.story-card {
    border-radius: 24px;
    padding: 2.75rem 2.5rem;
    display: grid;
    gap: 1.25rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.story-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(32, 20, 8, 0.92);
}

.story-card .story-highlight {
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c95a1a;
}

.story-card--left {
    background: rgba(201, 90, 26, 0.12);
}

.story-card--right {
    background: #c95a1a;
    color: var(--color-light);
}

.story-card--right .story-highlight {
    color: var(--color-light);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    color: var(--color-light);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-light);
}

.frangalhas-gallery {
    padding: 5rem 0 4rem;
    background: var(--color-navy);
    color: var(--color-light);
}

.gallery-content {
    display: grid;
    gap: 2.5rem;
    justify-items: center;
}

.gallery-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
}

.gallery-image img {
    width: 100%;
    display: none;
    height: auto;
}

.gallery-image img.active {
    display: block;
    opacity: 1;
}


.gallery-dots {
    display: flex;
    gap: 0.6rem;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.gallery-dots .dot.is-active {
    width: 14px;
    border-radius: 999px;
    background: var(--color-light);
}

.frangalhas-page .footer {
    background: var(--color-navy);
    padding-top: 5rem;
}

.frangalhas-page .footer-lead {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-logo {
        justify-self: center;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .frangalhas-hero {
        min-height: 55vh;
        text-align: center;
    }

    .frangalhas-hero__content {
        padding-bottom: 4rem;
    }

    .story-card {
        padding: 2.25rem 2rem;
    }
}

@media (max-width: 576px) {
    .frangalhas-hero__content h1 {
        font-size: 1.9rem;
    }

    .about-content {
        text-align: left;
    }

    .gallery-image {
        border-radius: 20px;
    }
}
