/* ============================================
   TEMPLATE V2 - CSS MODERNO
   Font: Inter
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Tipografia */
    --font-family-v2: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Sombras */
    --shadow-sm-v2: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md-v2: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg-v2: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl-v2: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Animações */
    --transition-fast-v2: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base-v2: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow-v2: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Borders */
    --border-radius-sm-v2: 8px;
    --border-radius-md-v2: 12px;
    --border-radius-lg-v2: 16px;
    --border-radius-xl-v2: 20px;
    --border-radius-full-v2: 50px;
}

body.template-v2 {
    font-family: var(--font-family-v2);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 0;
}

/* ============================================
   ESTILOS BASE DO TEMPLATE (do template-style.css)
   ============================================ */

/* SEO H1 oculto */
.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Banner base - imagem de fundo e overlay */
.section-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.section-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.section-banner .container {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* ============================================
   NAVBAR V2 - Mantém classes Bootstrap mas adiciona estilo moderno
   ============================================ */
.template-v2 .navbar-v2 {
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md-v2);
    height: 75px;
    transition: all var(--transition-base-v2);
}

.navbar-brand {
    width: 250px;
    padding: 0;
}

.navbar-v2 .logo {
    max-height: 51px;
    width: auto;
    max-width: 100%;
}

.navbar-v2 .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-base-v2);
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.navbar-v2 .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--header-foreground, currentColor);
    transition: width var(--transition-base-v2);
}

.navbar-v2 .nav-link:hover::after {
    width: 100%;
}

.navbar-v2 .nav-link-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--ms-radius);
    transition: all var(--transition-base-v2);
    margin-left: 1rem;
}

.navbar-v2 .nav-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Menu mobile collapse - mesma cor do header */
@media (max-width: 991.98px) {

    .navbar-toggler {
        background-color: var(--ms-header-foreground) !important;
    }

    .navbar-v2 .navbar-collapse {
        background-color: var(--ms-primary);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--border-radius-md-v2);
    }
    
    .navbar-v2 .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-v2 .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-v2 .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-v2 .nav-link-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}

/* ============================================
   BANNER V2
   ============================================ */
.banner-v2 {
    margin-top: 75px;
}

/*
.banner-v2.section-banner::before {
    background-color: rgba(0, 0, 0, 0.5);
}
*/

.banner-v2 .container {
    position: relative;
    z-index: 1;
}

.banner-content-v2 {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.banner-title-v2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-subtitle-v2 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.banner-buttons-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.btn-banner-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--ms-radius);
    transition: all var(--transition-base-v2);
}

.btn-banner-whatsapp {
    background: var(--ms-secondary);
    border-color: var(--ms-secondary);
    color: white;
}

.btn-banner-v2:hover {
    background: var(--ms-secondary);
    border-color: var(--ms-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    transition: transform var(--transition-base-v2);
}

.btn-banner-v2:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   SOBRE V2
   ============================================ */
.sobre-v2 {
    padding: var(--spacing-xl) 0;
    background: #ffffff;
}

.sobre-image-wrapper-v2 {
    position: relative;
    border-radius: var(--border-radius-xl-v2);
    overflow: hidden;
    width: 100%;
}

.sobre-image-v2,
.sobre-image-wrapper-v2 img[id^="img-"] {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--ms-radius);
    box-shadow: var(--shadow-xl-v2);
    display: block;
}

.section-label-v2 {
    display: inline-block;
    padding: 0.2rem 1rem;
    background: #f1f1f1;
    background: color-mix(in srgb, var(--ms-primary) 10%, transparent);
    color: var(--ms-primary);
    font-weight: 600;
    font-size: 0.7rem;
    border-radius: var(--ms-radius);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sobre-title-v2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sobre-text-v2 {
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.btn-sobre-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--ms-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--ms-radius);
    transition: all var(--transition-base-v2);
}

.btn-sobre-v2:hover {
    background: var(--ms-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile: Inverte ordem - imagem primeiro, texto depois */
@media (max-width: 767px) {
    .sobre-v2 .row {
        display: flex;
        flex-direction: column;
    }
    
    .sobre-v2 .col-12.col-md-5 {
        order: 1;
    }
    
    .sobre-v2 .col-12.col-md-7 {
        order: 2;
    }
}

/* ============================================
   DIFERENCIAIS V2
   ============================================ */
.diferenciais-v2 {
    padding: var(--spacing-xl) 0;
    background: #f7f7f7;
}


/* ============================================
   SECTION HEADER V2 (USADO EM VÁRIAS SEÇÕES)
   ============================================ */

.section-header-v2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title-v2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-v2 {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.diferencial-card-v2 {
    background: white;
    border-radius: var(--ms-radius);
    padding: 2.5rem;
    height: 100%;
    transition: all var(--transition-base-v2);
    border: 1px solid #e2e8f0;
}

.diferencial-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl-v2);
    border-color: var(--ms-secondary);
}

.diferencial-icon-wrapper-v2 {
    width: 70px;
    height: 70px;
    background: var(--ms-secondary);
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base-v2);
}

.diferencial-card-v2:hover .diferencial-icon-wrapper-v2 {
    transform: scale(1.1) rotate(5deg);
}

.diferencial-icon-v2 {
    font-size: 2rem;
    color: white;
}

.diferencial-title-v2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ms-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.diferencial-text-v2 {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ============================================
   SERVIÇOS V2
   ============================================ */
.servicos-v2 {
    padding: var(--spacing-xl) 0;
    background: var(--ms-primary);
}

/* Centralizar grid */
.servicos-v2 .row {
    justify-content: center;
}

/* 1 item: 100% de largura */
.servicos-v2 .row:has(.duplicacao-exclusao:only-child) .duplicacao-exclusao {
    flex: 0 0 100%;
    max-width: 100%;
}

/* 2 itens: 50% cada no desktop */
@media (min-width: 992px) {
    .servicos-v2 .row:has(.duplicacao-exclusao:nth-child(2):last-child) .duplicacao-exclusao {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* 4 itens: 50% cada no desktop */
@media (min-width: 992px) {
    .servicos-v2 .row:has(.duplicacao-exclusao:nth-child(4):last-child) .duplicacao-exclusao {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.servico-card-v2 {
    position: relative;
    background: white;
    border-radius: var(--ms-radius);
    padding: 2.5rem;
    height: 100%;
    transition: all var(--transition-base-v2);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.servico-icon-bg-v2 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--ms-secondary-translucent);
    border-radius: 50%;
    opacity: 0.05;
    transition: all var(--transition-slow-v2);
    opacity: 0.1;
}

.servico-card-v2:hover .servico-icon-bg-v2 {
    transform: scale(1.5);
    opacity: 0.2;
}

.servico-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl-v2);
    border-color: var(--ms-secondary);
}

.servico-content-v2 {
    position: relative;
    z-index: 1;
}

.servico-icon-wrapper-v2 {
    margin-bottom: 1.5rem;
}

.servico-icon-v2 {
    font-size: 3rem;
    color: var(--ms-secondary);
}

.servico-title-v2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ms-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.servico-text-v2 {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.btn-servico-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--ms-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--ms-radius);
    transition: all var(--transition-base-v2);
    margin-top: auto;
    justify-content: center;
}

.btn-servico-whatsapp:hover {
    background: var(--ms-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.servico-content-v2 {
    flex-direction: column;
    height: 100%;
}

/* ============================================
   CONTATO V2
   ============================================ */
.section-contato {
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.75;
    z-index: 0;
}

.contato-v2 {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.contato-v2 .container {
    position: relative;
    z-index: 1;
}

.contato-bg-shape-1,
.contato-bg-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

.contato-bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.contato-bg-shape-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -200px;
}

.contato-header-v2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contato-title-v2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contato-subtitle-v2 {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contato-form-v2 {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: var(--ms-radius);
    padding: 3rem;
    box-shadow: var(--shadow-xl-v2);
}

.form-group-v2 {
    margin-bottom: 1rem;
}

.form-label-v2 {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-wrapper-v2 {
    position: relative;
}

.input-icon-v2 {
    position: absolute;
    left: 1rem;
    top: 30px;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.25rem;
    pointer-events: none;
}

.form-textarea-v2 + .input-icon-v2 {
    top: 1rem;
    transform: none;
}

.form-input-v2 {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--ms-radius);
    font-family: var(--font-family-v2);
    font-size: 1rem;
    transition: all var(--transition-base-v2);
    background: white;
}

.form-input-v2:focus {
    outline: none;
    border-color: var(--ms-secondary);
    box-shadow: 0 0 0 3px rgba(168, 168, 168, 0.1);
}

.form-textarea-v2 {
    resize: vertical;
    min-height: 120px;
}

.form-check-v2 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox-v2 {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-label-v2 {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.privacy-link-v2 {
    color: var(--ms-secondary);
    text-decoration: underline;
}

.btn-submit-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem;
    background: var(--ms-secondary);
    color:var(--ms-secondary-foreground);
    border: none;
    border-radius: var(--ms-radius);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--transition-base-v2);
    font-family: var(--font-family-v2);
}

.btn-submit-v2:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg-v2);
}

.btn-submit-v2:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon {
    transition: transform var(--transition-base-v2);
}

.btn-submit-v2:not(:disabled):hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   LOCALIZAÇÃO V2
   ============================================ */
.localizacao-v2 {
    padding: var(--spacing-xl) 0;
    background: #f7f7f7;
}

.localizacao-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.localizacao-card-v2 {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: var(--ms-radius);
    border: 1px solid #e2e8f0;
    transition: all var(--transition-base-v2);
}

.localizacao-card-v2:hover {
    box-shadow: var(--shadow-md-v2);
    transform: translateX(8px);
}

.localizacao-icon-wrapper-v2 {
    width: 60px;
    height: 60px;
    background: var(--ms-secondary);
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.localizacao-icon-v2 {
    font-size: 1.75rem;
    color: var(--ms-secondary-foreground);
}

.localizacao-details-v2 {
    flex: 1;
}

.localizacao-label-v2 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.localizacao-address-v2 {
    font-size: 1.125rem;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

.localizacao-link-v2 {
    font-size: 1.125rem;
    color: var(--ms-secondary-color);
    text-decoration: none;
    transition: color var(--transition-base-v2);
}

.localizacao-link-v2:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

.map-wrapper-v2 {
    border-radius: var(--border-radius-xl-v2);
    overflow: hidden;
    box-shadow: var(--shadow-lg-v2);
    height: 100%;
}

.map-iframe-v2 {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* ============================================
   FOOTER V2
   ============================================ */
.footer-v2 {
    background: var(--ms-primary);
    color: var(--ms-primary-foreground);
    padding: var(--spacing-lg) 2rem;
}

.footer-brand-v2 {
    margin-bottom: 1.5rem;
}

.footer-logo-v2 {
    max-width: 220px;
    max-height: 130px;
    margin-bottom: 1rem;
    padding: 20px;
    background: var(--ms-header);
    border-radius: var(--ms-radius);
    border: 1px solid #cccccc63;
}

.footer-title-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description-v2 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-section-v2 {
    margin-bottom: 2rem;
}

.footer-heading-v2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon-v2 {
    font-size: 1.25rem;
    color: var(--ms-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-link-v2 {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base-v2);
    line-height: 1.6;
}

.footer-link-v2:hover {
    color: white;
}

.footer-text-v2 {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-social-v2 {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-wrap: wrap;
}

.footer-social-link-v2 {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base-v2);
}

.footer-social-link-v2:hover {
    background: var(--ms-secondary);
    transform: translateY(-4px);
}

.social-icon-v2 {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-whatsapp-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: var(--ms-radius);
    font-weight: 600;
    transition: all var(--transition-base-v2);
}

.footer-whatsapp-btn-v2:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg-v2);
    color: white;
}

.footer-bottom-v2 {
    margin-top: 3rem;
}

.footer-divider-v2 {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-copyright-v2 {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright-v2 p {
    margin: 0;
}

.footer-copyright-v2 a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* WhatsApp Float Button */
.whatsapp-float-v2 {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0.75rem 1.25rem;
    background: #25D366;
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base-v2);
    animation: pulse 2s infinite;
}

.whatsapp-float-v2 i {
    font-size: 1.5rem;
    font-weight: normal;
}

.whatsapp-float-text {
    white-space: nowrap;
}

.whatsapp-float-v2:hover {
    background: #20BA5A;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.made-advpage-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    border-radius: 30px;
    z-index: 1000;
    padding: 10px 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 3px 9px #0000002b;
    /* Adicionar transição para suavidade se for aparecer/desaparecer */
    /* transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; */
}

/* Se você adicionar .d-none para esconder via JS, pode querer uma transição */
.made-advpage-container.d-none {
    opacity: 0;
    visibility: hidden;
}

.made-advpage-container span {
    font-weight: 600;
    font-size: 14px;
    padding-right: 5px;
    color: #333;
    /* Exemplo de cor para contraste */
}

.made-advpage-container img {
    width: 85px;
    height: auto;
    vertical-align: middle;
    /* Bom para alinhar com texto */
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-v2 {
        padding: 0.75rem 0;
    }
    
    .banner-title-v2 {
        font-size: 2.5rem;
    }
    
    .sobre-v2,
    .diferenciais-v2,
    .servicos-v2,
    .servico-unico-v2,
    .contato-v2,
    .localizacao-v2 {
        padding: 4rem 0;
    }
    
    .section-header-v2 {
        margin-bottom: 3rem;
    }
    
    .sobre-image-wrapper-v2,
    .servico-image-wrapper-v2 {
        margin-bottom: 2rem;
    }
    
    .sobre-content-v2 {
        padding: 0;
    }
    
    .stat-divider-v2 {
        display: none;
    }
    
    .contato-form-v2 {
        padding: 2rem;
    }
    
    .map-wrapper-v2 {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .banner-title-v2 {
        font-size: 2rem;
    }
    
    .banner-subtitle-v2 {
        font-size: 1rem;
    }
    
    .section-title-v2 {
        font-size: 2rem;
    }
    
    .sobre-title-v2,
    .servico-title-v2 {
        font-size: 1.75rem;
    }
    
    .diferencial-card-v2,
    .servico-card-v2 {
        padding: 2rem;
    }
    
    .contato-form-v2 {
        padding: 1.5rem;
    }
    
    .whatsapp-float-v2 {
        padding: 10px 10px 10px 15px;
        font-size: 0.9rem;
    }

    .whatsapp-float-v2 i {
        font-size: 21px;
    }

    .whatsapp-float-text {
        max-width: 65px;
        white-space: normal;
        line-height: 1.1;
        font-size: 13px;
    }
    
    .footer-v2 {
        padding: 3rem 0;
    }
}

@media (max-width: 575px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .btn-banner-v2 {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .diferencial-card-v2,
    .servico-card-v2 {
        padding: 1.5rem;
    }
    
    .localizacao-card-v2 {
        flex-direction: column;
        align-items: flex-start;
    }
}



.equipeescritorio-section {
    background-color: var(--ms-primary);
    padding: 96px 0;
    color: #fff;
}

.equipeescritorio-title {
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.125rem);
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 64px;
}

.equipeescritorio-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    margin: 0 auto;
}

.equipeescritorio-card {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 32px;
    text-align: center;
    border-radius: var(--ms-radius);
}

.equipeescritorio-avatar {
    width: 248px;
    height: 248px;
    border-radius: var(--ms-radius);
    margin-bottom: 32px;
}

.equipeescritorio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-row {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 120px;
    justify-content: center;
  }

.equipe-avatar {
    width: 360px;
    height: 360px;
    border-radius: var(--ms-radius);
    margin-bottom: 140px;
}

.equipe-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipeescritorio-name {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 32px;
    color: #262E39;
    margin: 0 0 4px 0;
}

.equipeescritorio-oab {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 32px;
    color: var(--ms-secondary);
    margin: 0 0 24px 0;
}

.equipeescritorio-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 28px;
    color: #4C4C4C;
    margin: 0 0 32px 0;
    max-width: 320px;
}

.equipeescritorio-button {
    font-weight: 500;
    font-size: 1rem;
    line-height: 27px;
    color: #FFFFFF;
    background: var(--ms-secondary);
    padding: 16px 88px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    border-radius: var(--ms-radius);
}

.equipeescritorio-button:hover {
    background: var(--ms-secondary);
}

.sobre2-section {
    width: 100%;
    height: calc(800px - 96px);
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 0 24px;
}

.sobre2-background {
    position: relative;
    z-index: 0;
    width: 632px;
    height: 574px;
    border-radius: var(--ms-radius);
    flex-shrink: 0;
}

.sobre2-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--ms-radius);
}

.sobre2-content {
    position: relative;
    z-index: 1;
    width: 672px;
    height: 422px;
    flex-shrink: 0;
    margin-right: -172px;
    display: flex;
    align-items: center;
}

.sobre2-card {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgba(26, 26, 26, 0.1);
    border-radius: var(--ms-radius);
    padding: 95px 46px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none !important;
}

.sobre2-card-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sobre2-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 24px;
    color: var(--ms-primary);
    margin: 0;
}

.sobre2-subtitle {
    font-weight: 300;
    font-size: 19px;
    line-height: 24px;
    color: var(--ms-secondary);
    padding-top: 2px;
}

.sobre2-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #4C4C4C;
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
}

.sobre2-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 192px;
    height: 46px;
    background-color: var(--ms-secondary);
    border-radius: var(--ms-radius);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 12px;
    cursor: pointer;
}

.sobre3-section {
    width: 100%;
    height: calc(800px - 96px);
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 0 24px;
    padding-bottom: 134px;
}

.sobre3-background {
    position: relative;
    z-index: 0;
    width: 632px;
    height: 574px;
    flex-shrink: 0;
    margin-right: -172px;
}

.sobre3-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre3-content {
    position: relative;
    width: 672px;
    height: 422px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sobre3-card {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgba(26, 26, 26, 0.1);
    border-radius: var(--ms-radius);
    padding: 95px 46px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre3-card-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sobre3-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 24px;
    color: #262E39;
    margin: 0;
}

.sobre3-subtitle {
    font-weight: 300;
    font-size: 19px;
    line-height: 24px;
    color: var(--ms-secondary);
    padding-top: 2px;
}

.sobre3-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #4C4C4C;
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
}

.sobre3-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 192px;
    height: 46px;
    background-color: var(--ms-secondary);
    border-radius: var(--ms-radius);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 12px;
    cursor: pointer;
}

.sobre4-section {
    width: 100%;
    height: calc(900px - 96px);
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 0 24px;
}

.sobre4-background {
    position: relative;
    z-index: 0;
    width: 632px;
    height: 574px;
    border-radius: var(--ms-radius);
    flex-shrink: 0;
}

.sobre4-background .carousel-inner{
    padding: 1.3rem;
}

.sobre4-background .carousel-inner,
.sobre4-background .carousel-item {
    width: 100%;
    height: 100%;
}

.sobre4-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--ms-radius);
}

/* Round carousel indicators */
.sobre4-background .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: var(--ms-radius);
    margin: 0 5px;
}

.sobre4-content {
    position: relative;
    z-index: 1;
    width: 632px;
    height: 574px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
}

.sobre4-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.sobre4-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    color: #262E39;
    margin: 0;
}

.sobre4-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #4C4C4C;
    margin: 0;
}

.sobre4-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 0 24px;
    height: 46px;
    background-color: var(--ms-secondary);
    border-radius: var(--ms-radius);
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.servico-unico-content {
    padding: 0 40px;
}

.bg-dark-custom {
    background-color: var(--ms-primary);
    position: relative;
}

.text-gold {
    color: #B8A07A;
}

.btn-gold {
    background-color: #B8A07A;
    color: #14192B;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
}

.btn-gold:hover {
    background-color: #9c8661;
    color: #14192B;
}

.service-icon2 {
    width: 48px;
    height: 48px;
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background-color: var(--ms-secondary);
    color: var(--ms-primary);
    width: 32px;
    height: 32px;
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.parceiros-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.parceiros-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.parceiros-header {
    margin-bottom: 40px;
}

.parceiros-title {
    font-weight: 700;
    font-size: 2.625rem;
    color: #242D4C;
    margin-bottom: 16px;
}

.parceiros-lead {
    font-weight: 600;
    font-size: 1.125rem;
    color: #6c757d;
    margin: 0;
}

.parceiros-carousel-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    position: relative;
    padding: 1rem;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 20px,
        black calc(100% - 20px),
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 20px,
        black calc(100% - 20px),
        transparent
    );
}

.parceiros-carousel-track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 10px 0;
    animation: scrollAnimation 30s linear infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.parceiros-carousel-slide {
    scroll-snap-align: start;
    height: 300px;
    width: 300px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: var(--ms-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.parceiros-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hide scrollbar but keep functionality */
.parceiros-carousel-container::-webkit-scrollbar {
    display: none;
}

.parceiros-carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Pause animation on hover */
.parceiros-carousel-container:hover .parceiros-carousel-track {
    animation-play-state: paused;
}

.depoimentos-bg-white {
    background-color: #FFFFFF;
}

.depoimentos-py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.depoimentos-mb-5 {
    margin-bottom: 3rem;
}

.depoimentos-section-title {
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 4rem;
}

.depoimentos-text-primary-custom {
    color: #242D4C;
}

.depoimentos-lead {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 2rem;
}

.depoimentos-text-muted {
    color: #6c757d;
}

.depoimentos-position-relative {
    position: relative;
}

.depoimentos-justify-content-center {
    justify-content: center;
}

.depoimentos-card {
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.depoimentos-h-100 {
    height: 100%;
}

.depoimentos-border {
    border: 1px solid;
}

.depoimentos-border-2 {
    border-width: 2px;
}

.depoimentos-border-primary-custom {
    border-color: var(--ms-primary);
}

.depoimentos-rounded-3 {
    border-radius: 0.5rem;
}

.depoimentos-p-4 {
    padding: 1.5rem;
}

.depoimentos-mb-3 {
    margin-bottom: 1rem;
}

.depoimentos-me-3 {
    margin-right: 1rem;
}

.depoimentos-bg-primary-custom {
    background-color: var(--ms-primary);
}

.depoimentos-text-white {
    color: #FFFFFF;
}

.depoimentos-rounded-circle {
    border-radius: 50%;
}

.depoimentos-initials {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

.depoimentos-mb-1 {
    margin-bottom: 0.25rem;
}

.depoimentos-text-warning {
    color: #FFC107;
}

.depoimentos-card-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #495057;
    flex-grow: 1;
}

.video-section {
    width: 100%;
    padding: 80px 0;
    background-color: var(--ms-primary);
    color: #FFFFFF;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.video-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.video-text-content {
    flex: 1;
    min-width: 300px;
}

.video-embed-container {
    flex: 1;
    min-width: 300px;
}

.video-subtitle {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.video-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-extra-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bg-primary-custom-atuacao {
    background-color: var(--ms-primary) !important;
    position: relative;
    width: 100%;
    padding: 96px 0;
}

.section-title {
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 4rem;
    color: var(--ms-primary-foreground) !important;
}

.divider {
    width: 4px;
    height: 140px;
    background: var(--ms-secondary) !important;
    transform: rotate(90deg);
}

.lead {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 2rem;
    color: var(--ms-primary-foreground) !important;
    max-width: 100%;
}

.card-area {
    background: rgb(0 0 0 / 45%);
    border-radius: 15px;
    padding: 48px;
    transition: transform 0.3s ease;
}

.card-area:hover {
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 24px;
}

#areas-de-atuacao .row {
    display: flex;
    flex-wrap: wrap;
}

#areas-de-atuacao .col-lg-4 {
    display: flex;
}

#areas-de-atuacao .card-area {
    flex: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--ms-secondary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 60%;
    height: 60%;
    color: var(--ms-primary) !important;
}

.card-title {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--ms-primary-foreground) !important;
    margin-bottom: 24px;
}

.card-text {
    font-weight: 300;
    font-size: 1rem;
    line-height: 2rem;
    color: var(--ms-primary-foreground) !important;
}

button:disabled,
.btn:disabled {
  opacity: 1 !important;
  cursor: not-allowed; /* mantém o cursor visualmente bloqueado */
}

/* .copyright-text-content {

} */

footer #copyright {
    text-align: center;
}

footer .copyright,
footer .copyright-text-content {
    text-align: center;
}

@media (max-width: 991.98px) {

    .equipeescritorio-cards {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .equipeescritorio-card {
        max-width: 90%;
    }

    .equipeescritorio-avatar {
        width: 200px;
        height: 200px;
    }

    .equipe-avatar {
        width: 200px;
        height: 200px;
    }

    .equipeescritorio-name {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }

    .equipeescritorio-oab {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
    }

    .equipeescritorio-text {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
    }

    .equipeescritorio-button {
        padding: 13px 64px;
        font-size: clamp(0.875rem, 3.5vw, 1rem);
    }

    .sobre2-section {
        flex-direction: column;
        height: auto;
        min-height: unset;
        padding: 20px 10px;
        padding-bottom: 40px;
    }

    .sobre2-background {
        width: 90vw;
        max-width: 600px;
        height: auto;
        margin: 0 auto 20px auto;
        order: 1;
    }

    .sobre2-background img {
        object-fit: contain;
    }

    .sobre2-content {
        width: 90vw;
        max-width: 600px;
        height: auto;
        margin-right: 0;
        order: 2;
    }

    .sobre2-card {
        padding: 40px;
        width: 100%;
        height: auto;
    }

    .sobre2-card-content {
        align-items: center;
    }

    .sobre2-title {
        font-size: clamp(1.75rem, 4vw, 3rem);
        text-align: center;
        line-height: 1.1;
    }

    .sobre2-subtitle {
        font-size: clamp(1rem, 3.75vw, 2rem);
        line-height: 1.1;
        margin-top: 0.3rem;
        text-align: center;
    }

    .sobre2-text {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.1;
        margin-top: 1rem;
        text-align: center;
    }

    .sobre2-button {
        width: 200px;
        height: 45px;
        margin-top: 1.5rem;
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 27px;
        border-radius: var(--ms-radius);
    }

    .sobre3-section {
        flex-direction: column;
        height: auto;
        min-height: unset;
        padding: 20px 10px;
        padding-bottom: 40px;
    }

    .sobre3-background {
        width: 90vw;
        max-width: 600px;
        height: auto;
        margin: 0 auto 20px auto;
        order: 1;
    }

    .sobre3-background img {
        object-fit: contain;
    }

    .sobre3-content {
        width: 90vw;
        max-width: 600px;
        height: auto;
        order: 2;
    }

    .sobre3-card {
        padding: 40px;
        width: 100%;
        height: auto;
    }

    .sobre3-card-content {
        align-items: center;
    }

    .sobre3-title {
        font-size: clamp(1.75rem, 4vw, 3rem);
        text-align: center;
        line-height: 1.1;
    }

    .sobre3-subtitle {
        font-size: clamp(1rem, 3.75vw, 2rem);
        line-height: 1.1;
        margin-top: 0.3rem;
        text-align: center;
    }

    .sobre3-text {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.1;
        margin-top: 1rem;
        text-align: center;
    }

    .sobre3-button {
        width: 200px;
        height: 45px;
        margin-top: 1.5rem;
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 27px;
        border-radius: var(--ms-radius);
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }


    .escritorio-equipe-avatar {
        width: 200px;
        height: 200px;
    }

    .escritorio-equipe-text {
        max-width: 90%;
    }

    .sobre4-section {
        flex-direction: column;
        height: auto;
        min-height: unset;
        padding: 40px;
        gap: 30px;
    }

    .sobre4-background {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0;
    }

    .sobre4-content {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .sobre4-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .sobre4-text {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
    }

    .sobre4-button {
        width: 100%;
        max-width: 250px;
        margin: 20px auto 0;
    }

    .parceiros-section {
        padding: 60px 0;
    }
    
    .parceiros-title {
        font-size: 2rem;
    }
    
    .parceiros-lead {
        font-size: 1rem;
    }
    
    .parceiros-carousel-slide {
        height: 250px;
        width: 250px;
    }

    .depoimentos-section-title {
        font-size: clamp(1.5rem, 5vw, 2.625rem);
        line-height: clamp(2rem, 6vw, 4rem);
    }

    .depoimentos-lead {
        font-size: clamp(0.9rem, 4vw, 1.125rem);
        line-height: clamp(1.4rem, 5vw, 2rem);
    }

    .depoimentos-card-text {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: clamp(1.5rem, 5vw, 1.75rem);
    }

    .depoimentos-initials {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

     .video-section {
        padding: 60px 0;
    }
    
    .video-content-wrapper {
        gap: 30px;
    }
    
    .video-subtitle {
        font-size: 28px;
    }
    
    .video-description {
        font-size: 16px;
    }
    
    .video-extra-text {
        font-size: 15px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.625rem);
        line-height: clamp(2rem, 6vw, 4rem);
    }

    .divider {
        height: 60px;
    }

    .lead {
        font-size: clamp(0.9rem, 4vw, 1.125rem);
        line-height: clamp(1.4rem, 5vw, 2rem);
    }

    .card-area {
        padding: 32px;
    }

    .card-title {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
        line-height: clamp(1.4rem, 5vw, 1.75rem);
        margin-bottom: 16px;
    }

    .card-text {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: clamp(1.5rem, 5vw, 2rem);
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {

    footer .copyright,
    footer .copyright-text-content {
        font-size: 12px !important;
    }

    .h1,
    h1,
    .h2,
    h2 {
        font-size: calc(1.375rem + 1vw) !important;
    }

    .h3,
    h3 {
        font-size: calc(1.3rem + 0.2vw) !important;
    }

    p {
        font-size: 0.9rem !important;
    }

    .container {
        padding-right: calc(var(--bs-gutter-x) * 1);
        padding-left: calc(var(--bs-gutter-x) * 1);
    }

    .navbar-v2 .logo {
        max-width: 165px;
    }

    .section-banner {
        min-height: 84vh;
        padding: 80px 0;
    }

    .section-banner h2 {
        font-size: 1.9rem !important;
    }

    .section-banner h3 {
        font-size: 0.9rem !important;
    }

    .section-sobre,
    .section-diferenciais,
    .section-servicos,
    .section-contato {
        padding: 60px 0 !important;
    }

    .section-sobre .lh-lg {
        line-height: 1.4 !important;
    }

    .section-area .lh-lg {
        line-height: 1.4 !important;
    }

    .section-area .img-container {
        margin-bottom: 30px;
    }

    .material-symbols-outlined {
        font-size: 2rem !important;
    }

    /* .section-diferenciais .material-symbols-outlined {
        float: left;
    }

    .section-diferenciais .card .card-title {
        text-align: left;
        padding-left: 45px;
        padding-top: 2px;
        font-size: 17px !important;
    }

    .section-diferenciais .card .card-body {
        padding: 20px;
    }

    .section-diferenciais .card .card-body .card-description {
        font-size: 12px !important;
        font-weight: 400;
        text-align: left;
        padding-left: 45px;
    } */

    .section-servicos .card {
        padding: 10px !important;
    }

    .section-sobre .img-container {
        margin-bottom: 30px;
    }

    .parceiros-carousel-slide {
        height: 200px;
        width: 200px;
    }
    
    .parceiros-carousel-track {
        gap: 15px;
    }
    
    .parceiros-carousel-container {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 10px,
            black calc(100% - 10px),
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 10px,
            black calc(100% - 10px),
            transparent
        );
    }

    .video-section {
        padding: 40px 0;
    }
    
    .video-content-wrapper {
        flex-direction: column;
    }
    
    .video-text-content {
        order: 1;
        text-align: center;
    }
    
    .video-embed-container {
        order: 2;
        width: 100%;
    }
    
    .video-subtitle {
        font-size: 24px;
    }
    
    .video-description,
    .video-extra-text {
        font-size: 15px;
    }

     .depoimentos-g-4 {
        --bs-gutter-y: 1.5rem;
    }
    
    .col-md-6 {
        padding-bottom: 0.5rem;
    }

    .service-icon2 {
        width: 40px;
        height: 40px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 0.5rem;
    }

}


/***** HEADER V2 *****/
.custom-navbar-menu {
    display: block;
}

/* Animação de slide down */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Mobile - menu oculto por padrão */
@media (max-width: 991.98px) {
    .custom-navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--ms-header) !important;
        padding: 1rem;
        box-shadow: var(--shadow-lg-v2);
        z-index: 1000;
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
    }
    
    .custom-navbar-menu.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        max-height: 90vh;
        overflow-y: visible;
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .custom-navbar-menu.closing {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
        animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .custom-navbar-menu .navbar-nav {
        flex-direction: column;
    }
    
    .custom-navbar-menu .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .custom-navbar-menu .nav-item:last-child {
        border-bottom: none;
    }
    
    .custom-navbar-menu .nav-link {
        padding: 0.75rem 1rem !important;
        display: block;
    }
    
    .custom-navbar-menu .nav-link-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .custom-navbar-menu {
        display: block !important;
    }
}


/***** BANNER LANDING V2 *****/
.banner-v2.banner-landing {
    margin-top: 0;
    height: 100vh;
    position: relative;
}

.banner-v2.banner-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}

.banner-v2.banner-landing .container {
    position: relative;
    z-index: 2;
}

.banner-v2.banner-landing .logo {
    min-width: 210px;
    max-width: 320px;;
    margin-bottom: 25px;
}

.banner-v2.banner-landing .banner-content-v2 {
    text-align: left;
}

.banner-v2.banner-landing .banner-buttons-v2 {
    justify-content: left;
}


/***** FAQ V2 *****/
.faq-v2 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-accordion-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-v2 {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item-v2:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    user-select: none;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.faq-question-text-v2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ms-primary, #2d3748);
    flex: 1;
    padding-right: 20px;
    cursor: text;
}

.faq-toggle-btn {
    cursor: pointer;
}

.faq-icon-v2 {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--ms-secondary, #3d86f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon-v2 svg {
    position: absolute;
    color: white;
    transition: all 0.3s ease;
}

.faq-icon-closed-v2 {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-icon-open-v2 {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item-v2.active .faq-icon-v2 {
    transform: rotate(180deg);
}

.faq-item-v2.active .faq-icon-closed-v2 {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item-v2.active .faq-icon-open-v2 {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-v2.active .faq-answer-v2 {
    max-height: 500px;
}

.faq-answer-content-v2 {
    padding: 0 24px 24px 24px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-v2 {
        padding: 60px 0;
    }
    
    .faq-question-text-v2 {
        font-size: 16px;
    }
    
    .faq-answer-content-v2 {
        font-size: 14px;
    }
    
    .faq-question-v2 {
        padding: 20px;
    }

    /* Diferenciais V2 - Mobile */
    .diferencial-card-v2 {
        padding: 1.5rem;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0 1rem;
        align-items: start;
    }

    .diferencial-icon-wrapper-v2 {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .diferencial-icon-v2 {
        font-size: 1.5rem;
    }

    .diferencial-title-v2 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        text-align: left;
        grid-column: 2;
        grid-row: 1;
    }

    .diferencial-text-v2 {
        font-size: 0.9rem;
        text-align: left;
        grid-column: 2;
        grid-row: 2;
    }
}



/* ============================================
   SERVIÇO ÚNICO V2 (LANDING PAGE)
   ============================================ */
.servico-unico-v2 {
    padding: var(--spacing-xl) 0;
}

.servico-unico-v2 .servico-image-wrapper-v2 {
    position: relative;
    border-radius: var(--border-radius-xl-v2);
    overflow: hidden;
    width: 100%;
}

.servico-unico-v2 .servico-image-v2,
.servico-unico-v2 .servico-image-wrapper-v2 img[id^="img-"] {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--ms-radius);
    box-shadow: var(--shadow-xl-v2);
    display: block;
}

.servico-unico-v2 .servico-title-v2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.servico-unico-v2 .servico-text-v2 {
    font-size: 1rem;
}


/* ============================================
   SERVIÇO ÚNICO COM TÓPICOS V2
   ============================================ */

.servico-topicos-v2 {
    padding: 5rem 0;
    background-color: var(--ms-primary);
    color: #ffffff;
}

.servico-topicos-content-v2 {
    padding-right: 2rem;
}

.servico-topicos-title-v2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.servico-topicos-subtitle-v2 {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Items com ícones */
.servico-topicos-item-v2 {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.servico-topicos-icon-v2 {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--ms-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.servico-topicos-icon-v2:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.servico-topicos-icon-v2 .material-symbols-outlined {
    font-size: 2rem;
    color: #ffffff;
}

.servico-topicos-text-v2 {
    flex: 1;
}

.servico-topicos-item-title-v2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.servico-topicos-item-desc-v2 {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Box de processo */
.servico-topicos-box-v2 {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: calc(var(--ms-radius) * 1.5);
    height: 100%;
}

.servico-topicos-box-title-v2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Steps do processo */
.servico-topicos-step-v2 {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.servico-topicos-step-v2:last-child {
    margin-bottom: 0;
}

.servico-topicos-step-number-v2 {
    width: 48px;
    height: 48px;
    background-color: var(--ms-secondary);
    color: var(--ms-secondary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.servico-topicos-step-content-v2 {
    flex: 1;
}

.servico-topicos-step-title-v2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.servico-topicos-step-desc-v2 {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .servico-topicos-v2 {
        padding: 4rem 0;
    }

    .servico-topicos-content-v2 {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .servico-topicos-title-v2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .servico-topicos-box-v2 {
        padding: 2rem;
    }

    .servico-topicos-item-v2,
    .servico-topicos-step-v2 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .servico-topicos-v2 {
        padding: 3rem 0;
    }

    .servico-topicos-icon-v2 {
        width: 50px;
        height: 50px;
    }

    .servico-topicos-icon-v2 .material-symbols-outlined {
        font-size: 1.75rem;
    }

    .servico-topicos-box-v2 {
        padding: 1.5rem;
    }

    .servico-topicos-step-number-v2 {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .servico-topicos-item-v2,
    .servico-topicos-step-v2 {
        gap: 1rem;
    }
}


/* ============================================
   EQUIPE V2 (DESIGN SIMPLES)
   ============================================ */

.equipe-v2 {
    padding: 5rem 0;
    background-color: #ffffff;
}

.equipe-card-v2 {
    text-align: center;
    transition: all 0.3s ease;
}

.equipe-card-v2:hover .equipe-image-wrapper-v2 {
    transform: translateY(-8px);
}

.equipe-image-wrapper-v2 {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.equipe-card-v2:hover .equipe-image-wrapper-v2 {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.equipe-image-v2 {
    width: 100%;
    height: 100%;
}

.equipe-info-v2 {
    padding: 0 1rem;
}

.equipe-name-v2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ms-header);
}

.equipe-oab-v2 {
    font-size: 0.9375rem;
    color: var(--ms-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.equipe-bio-v2 {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .equipe-v2 {
        padding: 4rem 0;
    }

    .equipe-name-v2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .equipe-v2 {
        padding: 3rem 0;
    }

    .equipe-name-v2 {
        font-size: 1.125rem;
    }

    .equipe-oab-v2 {
        font-size: 0.875rem;
    }

    .equipe-bio-v2 {
        font-size: 0.875rem;
    }
}


/* ============================================
   EQUIPE ESCRITÓRIO V2 (COM FUNDO PRIMÁRIO)
   ============================================ */

.equipe-escritorio-v2 {
    padding: 5rem 0;
    background-color: var(--ms-primary);
}

.equipe-escritorio-card-v2 {
    background-color: #ffffff;
    border-radius: calc(var(--ms-radius) * 1.5);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.equipe-escritorio-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.equipe-escritorio-image-wrapper-v2 {
    overflow: hidden;
    background: linear-gradient(135deg, var(--ms-primary) 0%, var(--ms-primary-hover) 100%);
}

.equipe-escritorio-image-wrapper-v2 img {
    width: 100%;
}

.equipe-escritorio-content-v2 {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipe-escritorio-name-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ms-header);
}

.equipe-escritorio-oab-v2 {
    font-size: 0.9375rem;
    color: var(--ms-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.equipe-escritorio-bio-v2 {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .equipe-escritorio-v2 {
        padding: 4rem 0;
    }

    .equipe-escritorio-content-v2 {
        padding: 1.75rem 1.5rem;
    }

    .equipe-escritorio-name-v2 {
        font-size: 1.375rem;
    }
}

@media (max-width: 576px) {
    .equipe-escritorio-v2 {
        padding: 3rem 0;
    }

    .equipe-escritorio-content-v2 {
        padding: 1.5rem 1.25rem;
    }

    .equipe-escritorio-name-v2 {
        font-size: 1.25rem;
    }

    .equipe-escritorio-oab-v2 {
        font-size: 0.875rem;
    }

    .equipe-escritorio-bio-v2 {
        font-size: 0.875rem;
    }
}


/* ============================================
   PERFIL DIREITA V2
   ============================================ */

.perfil-direita-v2 {
    padding: 5rem 0;
    background-color: #ffffff;
}

.perfil-content-v2 {
    padding: 0 1rem;
}

.perfil-title-v2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ms-primary);
    line-height: 1.2;
}

.perfil-oab-v2 {
    font-size: 1.125rem;
    color: var(--ms-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.perfil-bio-v2 {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
}

.perfil-image-wrapper-v2 {
    position: relative;
    border-radius: calc(var(--ms-radius) * 1.5);
    overflow: hidden;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.perfil-image-wrapper-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.perfil-image-v2 {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .perfil-direita-v2,
    .perfil-esquerda-v2 {
        padding: 4rem 0;
    }

    .perfil-title-v2 {
        font-size: 2rem;
    }

    .perfil-oab-v2 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .perfil-direita-v2 .row,
    .perfil-esquerda-v2 .row {
        display: flex;
        flex-direction: column;
    }
    
    .perfil-direita-v2 .col-12.col-md-5,
    .perfil-esquerda-v2 .col-12.col-md-5 {
        order: 1;
    }
    
    .perfil-direita-v2 .col-12.col-md-7,
    .perfil-esquerda-v2 .col-12.col-md-7 {
        order: 2;
    }
}

@media (max-width: 576px) {
    .perfil-direita-v2,
    .perfil-esquerda-v2 {
        padding: 3rem 0;
    }

    .perfil-title-v2 {
        font-size: 1.75rem;
    }

    .perfil-oab-v2 {
        font-size: 0.9375rem;
    }

    .perfil-bio-v2 {
        font-size: 0.9375rem;
    }
}


/* ============================================
   PERFIL ESQUERDA V2
   ============================================ */

.perfil-esquerda-v2 {
    padding: 5rem 0;
    background-color: #f8fafc;
}


/* ============================================
   GALERIA V2
   ============================================ */

.galeria-v2 {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.galeria-item-v2 {
    width: 100%;
    overflow: hidden;
    border-radius: var(--ms-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #e2e8f0;
}

.galeria-item-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.galeria-image-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Lightbox para zoom */
.galeria-lightbox-v2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-lightbox-v2.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.galeria-lightbox-content-v2 {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-lightbox-image-v2 {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--ms-radius);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.galeria-lightbox-v2.active .galeria-lightbox-image-v2 {
    opacity: 1;
    transform: scale(1);
}

.galeria-lightbox-image-v2.slide-left {
    animation: slideLeft 0.4s ease;
}

.galeria-lightbox-image-v2.slide-right {
    animation: slideRight 0.4s ease;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.galeria-lightbox-close-v2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.galeria-lightbox-close-v2:hover {
    background: #fff;
    transform: rotate(90deg);
}

.galeria-lightbox-prev-v2,
.galeria-lightbox-next-v2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.galeria-lightbox-prev-v2 {
    left: 20px;
}

.galeria-lightbox-next-v2 {
    right: 20px;
}

.galeria-lightbox-prev-v2:hover,
.galeria-lightbox-next-v2:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .galeria-v2 {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .galeria-v2 {
        padding: 3rem 0;
    }

    .galeria-lightbox-prev-v2,
    .galeria-lightbox-next-v2 {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .galeria-lightbox-prev-v2 {
        left: 10px;
    }

    .galeria-lightbox-next-v2 {
        right: 10px;
    }

    .galeria-lightbox-close-v2 {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ============================================
   AVALIAÇÕES V2
   ============================================ */
.avaliacoes-v2 {
    padding: var(--spacing-xl) 0;
}

.avaliacoes-v2 .depoimentos-card {
    border-radius: var(--ms-radius);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base-v2);
    border: 1px solid #ccc;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
}

.avaliacoes-v2 .depoimentos-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl-v2);
    border-color: var(--ms-secondary) !important;
}

.avaliacoes-v2 .depoimentos-initials {
    width: 60px;
    height: 60px;
    background: var(--ms-primary) !important;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all var(--transition-base-v2);
}

.avaliacoes-v2 .depoimentos-card:hover .depoimentos-initials {
    background: var(--ms-secondary) !important;
    transform: scale(1.1);
}

.avaliacoes-v2 h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ms-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.avaliacoes-v2 .depoimentos-text-warning {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
}

.avaliacoes-v2 .depoimentos-text-warning i {
    color: #fbbf24;
}

.avaliacoes-v2 .depoimentos-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ms-primary);
}

.avaliacoes-v2 .depoimentos-lead {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Efeito hover nas estrelas */
.avaliacoes-stars-v2.editable i:hover,
.avaliacoes-stars-v2.editable i.hover-active {
    color: #fbbf24 !important;
}

.avaliacoes-text-v2 {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .avaliacoes-v2 {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .avaliacoes-v2 {
        padding: 3rem 0;
    }

    .avaliacoes-card-v2 {
        padding: 1.5rem;
    }

    .avaliacoes-avatar-v2 {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .avaliacoes-name-v2 {
        font-size: 1rem;
    }

    .avaliacoes-stars-v2 {
        font-size: 0.875rem;
    }

    .avaliacoes-text-v2 {
        font-size: 0.875rem;
    }
}

/* ============================================
   VIDEO V2
   ============================================ */
.video-v2 {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--ms-primary) 0%, var(--ms-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.video-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.video-v2 .container {
    position: relative;
    z-index: 1;
}

.video-v2 .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-v2 .video-content {
    padding-right: 2rem;
}

.video-v2 .video-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-v2 .video-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.video-v2 .video-extra {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 0;
}

.video-v2 .video-player {
    position: relative;
}

.video-v2 .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg-v2);
    box-shadow: var(--shadow-xl-v2);
    background: rgba(0,0,0,0.2);
    transition: all var(--transition-base-v2);
}

.video-v2 .video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-v2 .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-lg-v2);
}

/* Controle do botão de edição do vídeo */
.ms-video-editor-toolbar {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-wrapper:hover .ms-video-editor-toolbar {
    opacity: 1 !important;
    visibility: visible !important;
}


/* Mobile responsive */
@media (max-width: 991px) {
    .video-v2 .video-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .video-v2 .video-content {
        padding-right: 0;
        text-align: center;
    }

    .video-v2 .video-title {
        font-size: 2rem;
    }

    .video-v2 .video-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .video-v2 {
        padding: 3rem 0;
    }

    .video-v2 .video-grid {
        gap: 2rem;
    }

    .video-v2 .video-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .video-v2 .video-description {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .video-v2 .video-extra {
        font-size: 0.875rem;
    }
}

/* ============================================
   ATUAÇÃO V2
   ============================================ */
.atuacao-v2 {
    padding: var(--spacing-xl) 0;
    background: var(--ms-primary);
    position: relative;
    overflow: hidden;
}

.atuacao-v2 .section-title-v2,
.atuacao-v2 .section-subtitle-v2 {
    color: white;
}

.atuacao-v2 .atuacao-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ms-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all var(--transition-base-v2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.atuacao-v2 .atuacao-card:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--ms-secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl-v2);
}

.atuacao-v2 .atuacao-icon {
    width: 100px;
    height: 100px;
    background: var(--ms-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base-v2);
    box-shadow: var(--shadow-md-v2);
}

.atuacao-v2 .atuacao-card:hover .atuacao-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg-v2);
}

.atuacao-v2 .atuacao-icon .material-symbols-outlined {
    font-size: 3.5rem;
    color: white;
}

.atuacao-v2 .atuacao-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.atuacao-v2 .atuacao-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.atuacao-v2 .atuacao-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .atuacao-v2 {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .atuacao-v2 {
        padding: 3rem 0;
    }

    .atuacao-v2 .atuacao-card {
        padding: 2rem 1.5rem;
    }

    .atuacao-v2 .atuacao-icon {
        width: 80px;
        height: 80px;
    }

    .atuacao-v2 .atuacao-icon .material-symbols-outlined {
        font-size: 2.75rem;
    }

    .atuacao-v2 .atuacao-card-title {
        font-size: 1.25rem;
    }

    .atuacao-v2 .atuacao-card-text {
        font-size: 0.9375rem;
    }
}