/* ============================================================
   RESET & VARIÁVEIS
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da logo */
    --blue-dark: #0F2B4A;
    --blue-mid: #1A3D5C;
    --blue-vibrant: #1E5AA8;
    --blue-light: #3A7BC8;
    --blue-bg: #E8F0FE;
    --gold: #d4a847;
    --gold-light: #f0d080;
    --gold-dark: #b8922f;
    --gold-gradient: linear-gradient(135deg, #d4a847 0%, #f5d78e 40%, #b8922f 100%);

    /* Fundos e superfícies */
    --bg-body: #ffffff;
    --bg-card: #f8faff;
    --bg-surface: #f2f6fc;
    --bg-blue-light: #e6f0fa;  /* Azul claro para seções */
    --bg-dark: #eef2f7;

    /* Textos */
    --text-primary: #0F2B4A;
    --text-secondary: #1A3D5C;
    --text-muted: #3A5A7A;
    --text-light: #6A8AAA;
    --white: #ffffff;

    /* Sombras e bordas */
    --shadow: 0 25px 60px rgba(15, 43, 74, 0.12);
    --radius: 16px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-color: #D0DDE8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Classes para alternância de fundo */
.bg-white {
    background: #ffffff;
}
.bg-blue {
    background: var(--bg-blue-light);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: #0d395e;
    border-radius: 10px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-block;
    padding: 15px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn-gold {
    background: #0d395e;
    color: var(--white);
}
.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn-outline {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
}
.btn-outline:hover {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(30, 90, 168, 0.2);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 45px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 40px rgba(15, 43, 74, 0.06);
    padding: 10px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo .brand {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: #0d395e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .sub-brand {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: -2px;
}

.logo .sub-brand span {
    color: #0d395e;
    font-weight: 700;
    -webkit-text-fill-color: #0d395e;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

header .btn.btn-gold {
    color: #fff;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d395e;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--blue-vibrant);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn {
    padding: 10px 28px;
    font-size: 15px;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--blue-dark);
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(145deg, #e6f0fa 0%, #ffffff 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.04"><polygon points="50,2 98,30 98,70 50,98 2,70 2,30" fill="%231E5AA8"/></svg>') repeat;
    background-size: 180px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text .premium-badge {
    display: inline-block;
    background: rgba(30, 90, 168, 0.10);
    border: 1px solid #0d395e;
    padding: 6px 22px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0d395e;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 63px;
    font-weight: 800;
    line-height: 65px;
    margin-bottom: 8px;
    color: var(--blue-dark);
}

.hero-text h1 .highlight {
    background: #0d395e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .sub-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hero-text .sub-title span {
    color: var(--blue-vibrant);
    font-weight: 600;
}

.hero-text .tagline {
    font-size: 20px;
    margin: 20px 0px;
    line-height: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .diamond-icon {
    font-size: 14rem;
    color: #0d395e;
    filter: drop-shadow(0 0 60px rgba(212, 168, 71, 0.2));
    animation: float 6s ease-in-out infinite;
    background: radial-gradient(circle at 30% 30%, rgba(212, 168, 71, 0.1), transparent 70%);
    padding: 40px;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

/* ============================================================
   SOBRE
   ============================================================ */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 50px;
    color: #0d395e;
}

.about-text h2 span {
    background: #0d395e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #0d395e;
}

.about-text p {
    color: var(--text-secondary);
    margin: 20px 0;
}

.about-text p.label {
    margin: 0px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #0d395e;
}

.about-list li i {
    color: #0d395e;
    font-size: 1.2rem;
    width: 28px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(212,168,71,0.06), transparent 70%);
}

.about-image .big-diamond {
    font-size: 10rem;
    color: #0d395e;
    opacity: 0.4;
}

/* ============================================================
   SERVIÇOS – 8 CARDS
   ============================================================ */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header .label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d395e;
    font-weight: 700;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #0d395e;
    line-height: 50px;
}

.section-header h2 span {
    background: #0d395e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #0d395e;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-vibrant);
    box-shadow: 0 20px 50px rgba(30, 90, 168, 0.08);
}

.service-card .icon {
    font-size: 2.8rem;
    color: #0d395e;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0d395e;
    line-height: 25px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
    padding: 80px 0;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diferenciais-item {
    text-align: center;
}

.diferenciais-item .icon {
    font-size: 2.4rem;
    color: var(--blue-vibrant);
    margin-bottom: 5px;
}

.diferenciais-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d395e;
    margin-bottom: 8px;
    line-height: 23px;
}

.diferenciais-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.testimonial-card:hover {
    border-color: var(--blue-vibrant);
    box-shadow: 0 12px 30px rgba(30, 90, 168, 0.06);
}

.testimonial-card .stars {
    color: #0d395e;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-vibrant);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.testimonial-card .author .name {
    font-weight: 600;
    color: #0d395e;
}
.testimonial-card .author .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0d395e;
    line-height: 50px;
}

.cta h2 span {
    background: #0d395e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 16px auto 16px;
    font-size: 1.1rem;
}

.cta .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ============================================================
   FOOTER – AZUL CLARO
   ============================================================ */
footer {
    background: #d4e2f0;
    color: #1A3D5C;
    padding: 60px 0 20px;
    border-top: 3px solid #0d395e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d395e;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #0d395e;
    margin-top: 8px;
    border-radius: 4px;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 280px;
    margin-bottom: 20px;
    color: #1A3D5C;
}

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 57, 94, 0.10);
    color: #0d395e;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 57, 94, 0.15);
    text-decoration: none;
}

.footer-social a:hover {
    background: #0d395e;
    color: #fff;
    transform: translateY(-4px);
    border-color: #0d395e;
    box-shadow: 0 8px 25px rgba(13, 57, 94, 0.15);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #1A3D5C;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #0d395e;
    font-weight: 700;
    transition: margin 0.3s ease;
}

.footer-links a:hover {
    color: #0d395e;
    padding-left: 6px;
}

.footer-links a:hover::before {
    margin-right: 14px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #1A3D5C;
}

.footer-contact li i {
    width: 20px;
    color: #0d395e;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(13, 57, 94, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.8;
    color: #1A3D5C;
}

.footer-bottom p {
    margin: 0;
}

.footer-credits i {
    color: #d4a847;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 2.2rem;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================================
   GALERIA – ANTES E DEPOIS
   ============================================================ */
.galeria-antes-depois {
    padding: 80px 0;
}

.galeria-antes-depois .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.galeria-antes-depois .section-header {
    text-align: center;
}

.galeria-antes-depois .section-header .label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d395e;
    font-weight: 700;
}

.galeria-antes-depois .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 8px;
    color: #0d395e;
}

.galeria-antes-depois .section-header h2 span {
    color: #0d395e;
}

.galeria-antes-depois .section-header p {
    color: #1A3D5C;
    max-width: 600px;
    margin: 12px auto 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.galeria-item {
    background: #f8faff;
    border-radius: 16px;
    border: 1px solid #D0DDE8;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.galeria-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 57, 94, 0.10);
    border-color: #0d395e;
}

.galeria-fotos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #D0DDE8;
}

.galeria-fotos .foto {
    position: relative;
    overflow: hidden;
    background: #f2f6fc;
}

.galeria-fotos .foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.galeria-item:hover .foto img {
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
}

.badge.antes {
    background: rgba(200, 50, 50, 0.88);
}

.badge.depois {
    background: rgba(37, 211, 102, 0.88);
}

.galeria-info {
    padding: 20px 24px 24px;
    text-align: center;
}

.galeria-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d395e;
    margin-bottom: 6px;
    line-height: 20px;
}

.galeria-info p {
    color: #3A5A7A;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================================
   GALERIA DE SERVIÇOS REALIZADOS
   ============================================================ */
.galeria-servicos-realizados {
    padding: 40px 0 80px;
}

.galeria-servicos-realizados .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.galeria-servicos-realizados .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.galeria-servicos-realizados .section-header .label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0d395e;
    font-weight: 700;
}

.galeria-servicos-realizados .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 8px;
    color: #0d395e;
}

.galeria-servicos-realizados .section-header h2 span {
    color: #0d395e;
}

.galeria-servicos-realizados .section-header p {
    color: #1A3D5C;
    max-width: 600px;
    margin: 12px auto 0;
}

.servicos-realizados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.servico-realizado-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ffffff;
    border: 1px solid #D0DDE8;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.servico-realizado-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 57, 94, 0.12);
    border-color: #0d395e;
}

.servico-realizado-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.servico-realizado-item:hover img {
    transform: scale(1.05);
}

.servico-realizado-item .servico-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px 14px;
    background: linear-gradient(transparent, rgba(13, 57, 94, 0.85));
    color: #fff;
    transform: translateY(40%);
    transition: transform 0.4s ease;
}

.servico-realizado-item:hover .servico-overlay {
    transform: translateY(0);
}

.servico-realizado-item .servico-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.servico-realizado-item .servico-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.servico-realizado-item .zoom-icon-servico {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d395e;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.servico-realizado-item:hover .zoom-icon-servico {
    opacity: 1;
    transform: scale(1);
}

/* Modal */
.modal-servico-galeria {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    animation: fadeInModal 0.3s ease;
    box-sizing: border-box;
}

.modal-servico-galeria.active {
    display: flex;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-servico-galeria .modal-servico-content {
    max-width: 900px;
    max-height: 85vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.modal-servico-galeria .modal-servico-content img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    display: block;
    background: #111;
}

.modal-servico-galeria .modal-servico-info {
    padding: 20px 28px 24px;
    background: #fff;
}

.modal-servico-galeria .modal-servico-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d395e;
    margin-bottom: 6px;
}

.modal-servico-galeria .modal-servico-info p {
    color: #1A3D5C;
    font-size: 1rem;
    margin: 0;
}

.modal-servico-galeria .close-modal-servico {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    transition: transform 0.2s;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.modal-servico-galeria .close-modal-servico:hover {
    transform: rotate(90deg);
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text .tagline {
        border-left: none;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 3.6rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .servicos-realizados-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-body);
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 40px;
        transition: var(--transition);
        border-left: 2px solid #0d395e;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text .sub-title {
        font-size: 1rem;
    }

    .hero-image .diamond-icon {
        font-size: 8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 2.2rem;
        line-height: 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-col h4::after {
        margin: 8px auto 0;
    }
    .footer-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .galeria-fotos {
        grid-template-columns: 1fr;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .servicos-realizados-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .badge {
        font-size: 0.55rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
   .hero-text h1 {
        font-size: 2.2rem;
        line-height: 36px;
    }
    .diferenciais-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .btn {
        padding: 12px 28px;
        font-size: 16px;
    }
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 170px;
    }
}

header .btn.btn-gold:hover {
    color: #fff;
}
/* Estilos gerais da seção */
    .trust-stats {
        background-color: #f8f9fa;
        padding: 4rem 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
        align-items: stretch;
    }

    .stat-item {
        background: #fff;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-value {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1a2b4a;
        line-height: 1.2;
    }

    .stat-stars {
        color: #f5b342;
        font-size: 1.4rem;
        margin: 0.5rem 0;
    }

    .stat-label {
        font-weight: 600;
        color: #333;
    }

    .stat-item small {
        display: block;
        color: #777;
        font-size: 0.85rem;
    }

    /* Estilos do slider */
    .testimonial-slider {
        position: relative;
        overflow: hidden;
        min-height: 220px;
    }

    .slider-wrapper {
        width: 100%;
        position: relative;
    }

    .slide {
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 0 0.5rem;
        animation: fade 0.8s ease-in-out;
    }

    .slide.active {
        display: flex;
    }

    @keyframes fade {
        0% { opacity: 0; transform: translateY(10px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .slide blockquote {
        font-style: italic;
        font-size: 1.1rem;
        color: #444;
        margin: 0.5rem 0 0.5rem;
        line-height: 25px;
        quotes: "“" "”" "‘" "’";
        max-width: 90%;
    }

    .slide blockquote::before {
        content: "“";
        font-size: 1.8rem;
        color: #1a2b4a;
        margin-right: 4px;
    }

    .slide blockquote::after {
        content: "”";
        font-size: 1.8rem;
        color: #1a2b4a;
        margin-left: 4px;
    }

    .slide cite {
        color: #666;
        font-size: 0.9rem;
        font-style: normal;
        font-weight: 500;
        margin-top: 0.2rem;
    }

    /* Dots / indicadores */
    .slider-dots {
        display: flex;
        gap: 8px;
        margin: 0.8rem 0 0.2rem;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background 0.3s;
        border: none;
        padding: 0;
    }

    .slider-dots .dot.active {
        background-color: #1a2b4a;
        width: 14px;
        border-radius: 8px;
    }

    /* Responsividade */
    @media (max-width: 992px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stat-item:last-child {
            grid-column: span 2;
        }
    }

    @media (max-width: 600px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }
        .stat-item:last-child {
            grid-column: span 1;
        }
        .slide blockquote {
            font-size: 1rem;
        }
    }
.mb-10 {margin-bottom: 10px;}
.mt-10 {margin-top: 10px;}

/* ============================================
   FAQ DIAMOND - ESTILOS EXCLUSIVOS
   ============================================ */
.faq-diamond {
    background-color: #ffffff;
    padding: 5rem 0;
}


.faq-diamond .faq-header .label {
    color: #1a2b4a;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: #eef2f7;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
}

/* Lista */
.faq-diamond .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Cada item */
.faq-diamond .faq-item {
    background: #f8f9fc;
    border-radius: 12px;
    border: 1px solid #e9edf4;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-diamond .faq-item:hover {
    border-color: #c0cbd8;
}

/* Pergunta (clicável) */

.faq-diamond .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: #1a2b4a;
    transition: background 0.2s;
    user-select: none;
}

.faq-diamond .faq-question:hover {
    background: #f0f3f9;
}

.faq-diamond .faq-question span:first-child {
    flex: 1;
    margin-right: 1rem;
}

/* Botão + / - */
.faq-diamond .faq-toggle {
    font-size: 1.6rem;
    line-height: 1;
    color: #1a2b4a;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

/* Resposta */
.faq-diamond .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.8rem;
    background: #ffffff;
    border-top: 1px solid transparent;
}

.faq-diamond .faq-answer p {
    margin: 0;
    padding: 1.2rem 0;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

/* Estado aberto (active) */
.faq-diamond .faq-item.active {
    border-color: #1a2b4a;
    box-shadow: 0 8px 20px rgba(26, 43, 74, 0.08);
}

.faq-diamond .faq-item.active .faq-answer {
    max-height: 1000px; /* valor alto o bastante para qualquer resposta */
    border-top-color: #e9edf4;
}

/* Responsividade */
@media (max-width: 600px) {
    .faq-diamond {
        padding: 3rem 0;
    }
    .faq-diamond .faq-header h2 {
        font-size: 2rem;
    }
    .faq-diamond .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }
    .faq-diamond .faq-answer {
        padding: 0 1.2rem;
    }
    .faq-diamond .faq-item.active .faq-answer {
        padding: 0 1.2rem 0.5rem 1.2rem;
    }
}

.pt-0 {
    padding-top: 0px;
}