:root {
    --bg-dark: #00101F;
    --blue-dark: #00182C;
    --blue-medium: #103252;
    --blue-light: #6E94B8;
    --blue-pale: #BCD4EB;
    --gold: #CBB06B;
    --gold-light: #F3E5AB;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .acc-btn, .section-title, .footer-col h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background-color: #103252;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--gold-light);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    padding: 30px 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 460px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 40px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 700;
}

.hero-content h1 span {
    font-style: normal;
}

.hero-content p {
    color: #E2ECF5;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

/* ==========================================================================
   DIVISOR DOURADO HORIZONTAL
   ========================================================================== */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    position: relative;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(203,176,107,0.1) 0%, rgba(203,176,107,0.8) 50%, rgba(203,176,107,0.1) 100%);
}

.divider-diamond {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.divider-diamond.left {
    margin-right: -3px;
}

.divider-diamond.right {
    margin-left: -3px;
}

/* ==========================================================================
   BOTÃO DOURADO
   ========================================================================== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #F3E5AB 0%, #CBB06B 100%);
    color: #3D2E06;
    padding: 8px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   SEÇÃO COMO PODEMOS TE AJUDAR
   ========================================================================== */
.help-section {
    padding: 20px 0 40px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.accordion-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.display-panel {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.default-content {
    position: relative;
    text-align: center;
}

.default-content img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.btn-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.text-content {
    background: linear-gradient(135deg, rgba(16, 50, 82, 0.5) 0%, rgba(0, 16, 31, 0.8) 100%);
    border: 1px solid var(--gold);
    padding: 30px 25px;
    border-radius: 0 0 8px 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
}

.text-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--white);
}

.text-content .cta-bold {
    font-weight: bold;
    color: var(--gold-light);
    margin-bottom: 25px;
}

.hidden {
    display: none !important;
}

.accordion-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.acc-btn {
    background-color: rgba(0, 16, 31, 0.6);
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acc-btn.active {
    background-color: var(--blue-dark);
    box-shadow: 0 0 12px rgba(203, 176, 107, 0.3);
    border-bottom: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    color: var(--gold-light);
}

.acc-btn:hover:not(.active) {
    background-color: var(--blue-medium);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide {
    animation: slideInFromRight 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ==========================================================================
   SEÇÃO NOSSOS ESCRITÓRIOS
   ========================================================================== */
.offices-section {
    padding: 20px 0 40px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.office-card {
    background-color: #0B253E;
    border: 1px solid rgba(203, 176, 107, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

.office-card h3 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2px;
}

.office-card .subtitle {
    display: block;
    color: var(--blue-pale);
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.phone-link:hover {
    background-color: var(--blue-medium);
}

.address {
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 180px;
    border: none;
}

/* ==========================================================================
   SEÇÃO AVALIAÇÕES
   ========================================================================== */
.reviews-section {
    padding: 20px 0 40px;
}

.reviews-card {
    background-color: #0B121B;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 35px 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-height: 220px;
    display: flex;
    align-items: center;
}

.review-content {
    width: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #1A2B3C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
}

.author-meta {
    display: block;
    font-size: 0.8rem;
    color: #9AA8B7;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.stars {
    color: #FFC107;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.review-date {
    color: #9AA8B7;
    font-size: 0.85rem;
}

.badge-novo {
    border: 1px solid #708090;
    color: #FFFFFF;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.review-text {
    color: #E2ECF5;
    line-height: 1.6;
    font-size: 0.95rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    color: var(--gold-light);
    transform: translateY(-50%) scale(1.2);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(203, 176, 107, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
}

/* ==========================================================================
   ESTILIZAÇÃO DA PÁGINA BLOG (EM PRODUÇÃO - COMPATÍVEL E DEDICADA)
   ========================================================================== */
.blog-main {
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.blog-container {
    max-width: 850px;
    text-align: center;
}

.blog-title-gold {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #FFF0B8 0%, #D4AF37 50%, #8E6F22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.blog-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
}

.blog-text strong {
    font-weight: 700;
    color: var(--white);
}

/* ==========================================================================
   RODAPÉ / FOOTER
   ========================================================================== */
.footer {
    background-color: #0E2A47;
    padding: 50px 0;
    margin-top: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-col h3 {
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-vertical-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120px;
}

.v-line {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(203,176,107,0.1) 0%, rgba(203,176,107,0.8) 50%, rgba(203,176,107,0.1) 100%);
}

.v-diamond {
    width: 5px;
    height: 5px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.social-item:hover {
    opacity: 0.8;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background-color: var(--blue-medium);
    color: var(--white);
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-vertical-divider {
        display: none;
    }

    .social-item {
        justify-content: center;
    }

    .phone-btn {
        justify-content: center;
    }

    .blog-title-gold {
        font-size: 3rem;
    }

    .blog-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        flex-direction: column;
    }

    .hero-bg-img {
        position: relative;
        height: 250px;
    }

    .hero-content {
        padding: 20px 15px;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .accordion-container, 
    .offices-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reviews-card {
        padding: 25px 40px;
    }

    .nav-menu a {
        margin: 0 8px;
        font-size: 0.85rem;
    }
}