/* ============================================================
   PULINO ADVOGADOS — Design System (White + Blue + Gold)
   Base: GOMES & AMARO 3.0 adapted to Pulino palette
   ============================================================ */

/* --- Custom Properties --- */
:root {
    --blue-900: #33241A;
    --blue-800: #3D2C20;
    --blue-700: #4B392B;
    --blue-600: #5C4737;
    --blue-500: #33241A;
    --blue-primary: #33241A;
    --blue-primary-rgb: 51, 36, 26;
    --blue-accent: #B89761;
    --blue-accent-light: #E0C895;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebd5a;
    --text-dark: #2c241b;
    --text-muted: #4d4439;
    --text-light: #8a7f72;
    --bg-light: #E6D6C6;
    /* Cor única de fundo */
    --bg-white: rgba(255, 255, 255, 0.45);
    /* Lighter card background to differentiate */
    --glass-bg: rgba(230, 214, 198, 0.95);
    --glass-bg-dark: rgba(51, 36, 26, 0.98);

    --green-primary: #128C7E;
    --green-accent: #25D366;
    --green-dark: #075E54;

    --gold-400: #d4af37;
    --gold-500: #b89761;
    --gold-600: #8a6a36;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

::selection {
    background: var(--blue-accent);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f4f4f5;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-accent);
}

/* --- Typography --- */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.section-tag {
    color: var(--blue-accent);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    line-height: 1.15;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
}

.section-description {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-accent) 50%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 0.15em;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }
}

.nav-link {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    transition: color 0.3s ease;
    opacity: 0.8;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--blue-accent);
    opacity: 1;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    z-index: 99;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-900);
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../imagem/backg01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: none !important;
    opacity: 1 !important;
}

@media (max-width: 1023px) {
    .hero-bg {
        background: url('../imagem/backg01Fundomobile.webp');
        background-size: cover;
        background-position: center;
        margin-top: 30px;
        filter: none !important;
        opacity: 1 !important;
    }
}

.hero-bg::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        padding: 5rem 1.5rem;
    }
}

.hero-mobile-person {
    display: none;
}

@media (max-width: 1023px) {
    .hero {
        padding: 90px 0px 0px 0px;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        padding: 1.5rem 0 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex: 1;
        width: 100%;
    }

    .hero-text {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-description {
        margin-bottom: 1.5rem;
        /* Reduced */
    }

    .hero-mobile-person {
        display: block;
        margin-top: -50px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        align-self: center;
        margin-bottom: 0;
        position: relative;
        z-index: 3;
    }

    /* Target the button specifically to remove bottom margin if any */
    .hero-text .btn-premium-outer {
        margin-bottom: 0;
    }

    .hero-mobile-person img {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: -1px;
    }
}

.hero-text .section-tag {
    color: var(--blue-accent);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 680px;
}

.hero-title .gold {
    background: linear-gradient(135deg, #ffffff 0%, var(--blue-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: italic;
    padding-right: 0.15em;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
    border-left: 2px solid var(--blue-accent);
    padding-left: 1.25rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 0.95rem;
    }
}

/* --- Hero Form --- */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-form-wrapper p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-accent);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--blue-900);
    color: #fff;
}

.form-submit-btn {
    width: 100%;
}

/* --- Uniform Pill Buttons (Reference Image Style) --- */
.btn-premium-outer {
    display: inline-flex;
    text-decoration: none;
    width: fit-content;
    background: transparent;
    border: none;
    padding: 0;
}

.btn-premium-inner,
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #9C7D4D 0%, #D5B98B 100%);
    color: #fff;
    padding: 1.1rem 1.5rem;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {

    .btn-premium-inner,
    .form-submit-btn {
        padding: 1.25rem 3.5rem;
        font-size: 15px;
    }
}

.btn-premium-outer:hover .btn-premium-inner,
.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(156, 125, 77, 0.3);
    background: linear-gradient(90deg, #A88856 0%, #E4C696 100%);
}

.btn-premium-inner svg,
.form-submit-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.btn-premium-outer:hover .btn-premium-inner svg,
.form-submit-btn:hover svg {
    transform: scale(1.1);
}

/* Clear old variants */
.btn-premium-outer.light-bg,
.btn-premium-outer.green {
    background: transparent;
    border: none;
}


/* --- Marquee / Ticker --- */
.marquee-section {
    padding: 1.25rem 0;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-accent) 50%, var(--blue-primary) 100%);
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 3rem;
}

.marquee-item svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    flex-shrink: 0;
}

/* --- Sections Common --- */
.section {
    padding: 3.5rem 1.5rem;
}

@media (min-width: 768px) {
    .section {
        padding: 4.5rem 1.5rem;
    }
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    /* Center for formal high-end look */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(178, 149, 94, 0.12);
}

.service-card .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    opacity: 0.06;
    color: var(--gold-500);
    position: absolute;
    top: 15px;
    right: 15px;
    transition: all 0.4s ease;
}

.service-card:hover .step-number {
    opacity: 0.18;
    transform: scale(1.15) rotate(-5deg);
}

.service-card .card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: #fff;
    border: 1px solid rgba(184, 151, 97, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, #9C7D4D 0%, #D5B98B 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 151, 97, 0.3);
}

.service-card .card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--blue-accent);
    transition: all 0.4s ease;
}

.service-card:hover .card-icon svg {
    fill: #fff;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--gold-500);
}

.service-card p {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}

/* --- About Section --- */
.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-text .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--blue-900);
    border-bottom: 1px solid rgba(178, 149, 94, 0.2);
    padding-bottom: 0.75rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-text .body-text {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.about-text .oab-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-600);
    font-weight: 700;
    margin-top: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.about-image-wrapper .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 5;
}

.about-image-wrapper .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(30%);
    transition: all 0.7s ease;
}

.about-image-wrapper:hover .image-frame img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-image-wrapper .accent-border {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 1px solid var(--gold-500);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
}

/* --- Diferenciais / Differentials Section --- */
.differentials-section {
    background: var(--bg-light);
    color: var(--text-dark);
    position: relative;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.diff-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 3px solid var(--gold-500);
    border-radius: 4px;
    background: var(--bg-white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.diff-card:hover {
    background: var(--bg-white);
    border-color: var(--gold-400);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(178, 149, 94, 0.1);
}

.diff-card .diff-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1.5rem;
    color: var(--gold-500);
}

.diff-card .diff-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gold-500);
}

.diff-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.diff-card p {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

/* --- Identification CTA Layout --- */
.identification-cta {
    background: var(--bg-light);
    padding: 2rem 0 6rem 0;
}

.ident-top-box {
    display: flex;
    flex-direction: column;
    background: #947a54;
    /* Dark gold/brown matching reference */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 900px) {
    .ident-top-box {
        flex-direction: row;
    }
}

.ident-image-col {
    flex: 1;
    min-height: 350px;
    position: relative;
}

.ident-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px 12px 0 0;
}

@media (min-width: 900px) {
    .ident-image-col img {
        border-radius: 12px 0 0 12px;
    }
}

.ident-content-col {
    flex: 1.2;
    padding: 3rem 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 900px) {
    .ident-content-col {
        padding: 4rem 3rem;
    }
}

.ident-dots {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.ident-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #fff;
}

@media (min-width: 768px) {
    .ident-title {
        font-size: 2.25rem;
    }
}

.ident-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ident-list li {
    background: var(--bg-light);
    /* Matching the light background of bottom box */
    border-radius: 99px;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ident-icon {
    background: #4a3e2e;
    /* dark circle */
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.ident-text {
    font-size: 13px;
    line-height: 1.3;
    color: #4a3e2e;
    font-weight: 500;
}

.ident-bottom-box {
    background: #ffffff;
    /* White background */
    border-radius: 12px;
    padding: 3rem 2rem 5rem 2rem;
    text-align: center;
    max-width: 85%;
    margin: -3rem auto 0 auto;
    /* Overlap the top box */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ident-bottom-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #4a3e2e;
    /* dark brown */
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .ident-bottom-title {
        font-size: 2rem;
    }
}

.ident-bottom-desc {
    color: #6b5d4b;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.ident-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.ident-btn:hover {
    transform: translate(-50%, 45%);
}

@media (max-width: 768px) {
    .ident-bottom-box {
        max-width: 95%;
        margin-top: -2rem;
        padding: 2.5rem 1.5rem 4rem 1.5rem;
    }

    .ident-text {
        font-size: 12px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    color: var(--gold-500);
}

.faq-item .faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item .faq-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--gold-500);
    stroke-width: 2;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1rem;
    font-weight: 300;
}

/* --- Reviews Section --- */
.reviews-section {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
}

.review-card .review-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-author .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.review-author .author-info strong {
    font-size: 13px;
    color: var(--text-dark);
    display: block;
}

.review-author .author-info span {
    font-size: 11px;
    color: var(--text-light);
}

/* Google badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 99px;
    padding: 0.5rem 1rem;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.google-badge svg {
    width: 18px;
    height: 18px;
}

/* --- Location / Map Section --- */
.location-section {
    background: var(--bg-light);
    /* Kept solid for sections */
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.location-section {
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--gold-400);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(var(--gold-500-rgb, 178, 149, 94), 0.08);
    /* Using a fallback if rgb var is missing */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: var(--blue-900);
}

.card-content h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 400;
}

.map-wrapper {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 9;
    position: relative;
    background: #eee;
}

.map-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, var(--gold-500) 50%);
    opacity: 0.15;
    pointer-events: none;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.1) brightness(0.95);
    transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1) brightness(1);
}

/* --- Footer --- */
.footer {
    background: var(--blue-900);
    color: #fff;
    padding: 5rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
    margin-top: 1.25rem;
    font-weight: 300;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.35rem 0;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.footer-contact .contact-item svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-bottom .mega-ads-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom .mega-ads-link span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-style: italic;
}

.footer-bottom .mega-ads-link img {
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.footer-bottom .mega-ads-link:hover img {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.whatsapp-balloon {
    background: #fff;
    color: var(--text-dark);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    width: 290px;
    max-width: 290px;
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none;
}

.whatsapp-balloon.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-balloon.hidden-force {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.wa-header {
    background: #075e54;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wa-info {
    flex-grow: 1;
    min-width: 0;
}

.wa-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.wa-status-dot {
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #25d366;
}

.wa-status-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
}

.whatsapp-balloon .close-balloon {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s ease;
    margin-top: -12px;
    margin-right: -5px;
    position: static;
}

.whatsapp-balloon .close-balloon:hover {
    color: #fff;
    transform: scale(1.1);
}

.wa-chat-body {
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: contain;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.wa-msg-bubble {
    background: #fff;
    border-radius: 0px 10px 10px 10px;
    padding: 10px 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    max-width: 90%;
    align-self: flex-start;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.wa-msg-bubble:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: #f7f7f7;
}

.wa-msg-bubble:hover::before {
    border-right-color: #f7f7f7;
}

.wa-msg-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
}

.wa-msg-text {
    margin: 0;
    font-size: 12.5px;
    color: #262626;
    line-height: 1.4;
    padding-right: 0;
    font-family: var(--font-primary), sans-serif;
}

.wa-msg-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
}

.wa-msg-time {
    font-size: 10px;
    color: #999;
}

.wa-cta-btn {
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border: none;
    font-family: var(--font-primary), sans-serif;
}

.wa-cta-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* WhatsApp hover tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    background: var(--blue-900);
    color: #fff;
    font-size: 10px;
    padding: 0.5rem 0.75rem;
    border-radius: 99px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Mobile-only: only show the mini balloon on hover/active state */
@media (max-width: 1023px) {
    .whatsapp-float .whatsapp-balloon {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(10px) !important;
    }
    
    .whatsapp-float:hover .whatsapp-balloon,
    .whatsapp-float:active .whatsapp-balloon,
    .whatsapp-float:focus-within .whatsapp-balloon {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* --- Back to Top Button (in footer) --- */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--gold-400);
}

.back-to-top .arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.back-to-top:hover .arrow-circle {
    background: var(--gold-600);
}

.back-to-top .arrow-circle svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

/* --- CTA Redesign --- */
.cta-section {
    padding: 6rem 1.5rem;
    background: var(--bg-light);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 4px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gold-400);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(178, 149, 94, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.cta-box>* {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--blue-900) !important;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    max-width: 800px;
}

.cta-title span {
    display: block;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-accent) 50%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
    margin-top: 0.5rem;
}

.cta-box .section-description {
    color: var(--text-dark) !important;
    margin: 0 auto 2.5rem !important;
    max-width: 600px !important;
    text-align: center !important;
    font-size: 1.1rem !important;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 10px;
    }

    .cta-box {
        padding: 4rem 1.5rem;
        border-radius: 4px;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
}

/* --- Overlapping About Images --- */
.about-image-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-img {
    position: absolute;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-img-1 {
    width: 65%;
    height: 65%;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.comp-img-2 {
    width: 65%;
    height: 65%;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 8px solid #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.about-image-composition:hover .comp-img-1 {
    transform: translate(-50%, -50%) scale(0.98) rotate(-2deg);
}

.about-image-composition:hover .comp-img-2 {
    transform: translate(-50%, -50%) scale(1.02) rotate(2deg);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
    .about-image-composition {
        height: 500px;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .about-image-composition {
        height: 400px;
    }
}

/* --- Premium About Section Styling --- */
.about-text-container {
    padding-left: 2rem;
}

.about-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--blue-accent);
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-brand-wrapper {
    margin-bottom: 2.5rem;
}

.about-premium-logo {
    max-height: 50px;
    width: auto;
}

.about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-500);
}

.about-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--gold-400);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-weight: 300;
}

.about-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.about-legal-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.oab-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}