/*
Theme Name: Luminare ContÃƒÂ¡bil
Theme URI: https://luminarecontabil.com.br
Author: Murilo Manoel Mello
Author URI: https://luminarecontabil.com.br
Description: Tema institucional personalizado para Luminare ContÃƒÂ¡bil
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luminare
*/
/* Paleta de Cores Oficial - Luminare ContÃƒÂ¡bil */
:root {
    --gold-primary: #D4A63A;
    --gold-hover: #B88922;
    --gold-light: #F4E3B2;
    --blue-primary: #0F3557;
    --blue-light: #1F4E79;
    --blue-dark: #0A2740;
    --gray-light: #F4F6F8;
    --gray-text: #6B7280;
    --white: #FFFFFF;
    --black: #000000;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--blue-primary);
    background-color: var(--white);
    text-align: justify;
    text-justify: inter-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* padding-bottom: 40px; */
}

/* Header Transparente e Banner */
.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-transparent.scrolled {
    position: fixed;
    background: #0f3557f2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-header {
    background-color: #d4a63a;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 166, 58, 0.3);
}

.btn-header:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 166, 58, 0.4);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 166, 58, 0.3);
}

.header-transparent .logo {
    color: var(--white);
}

.header-transparent .logo span {
    color: var(--gold-primary);
}

.header-transparent nav a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-transparent nav a:hover {
    color: var(--gold-primary);
}

/* Banner Principal */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 825px;
    background: linear-gradient(135deg, rgba(15, 53, 87, 0.8), rgba(212, 166, 58, 0.6)), url('images/banner-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 53, 87, 0.7), rgba(212, 166, 58, 0.4));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-text {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    text-align: left;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-title span {
    color: var(--gold-primary);
    text-shadow: 2px 2px 8px rgba(212, 166, 58, 0.5);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-banner {
    background-color: var(--gold-primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 166, 58, 0.3);
    display: inline-block;
}

.btn-banner:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 166, 58, 0.4);
    color: var(--white);
}

.btn-banner-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-banner-secondary:hover {
    background-color: var(--white);
    color: var(--blue-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Ajuste para pÃƒÂ¡gina inicial com banner */
body.home .section-gray {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    background-color: var(--white);
}

/* AnimaÃƒÂ§ÃƒÂµes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Reveal global (leve) */
.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: saturate(0.98);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
    will-change: transform, opacity;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
}

/* Efeito de partÃƒÂ­culas animadas no banner */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 166, 58, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(15, 53, 87, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo span {
  color: var(--gold-primary);
}

nav ul, .main-menu {
    display: flex !important;
    list-style: none !important;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
}

nav a, .main-menu a {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, .main-menu a:hover {
    color: var(--gold-primary);
}

/* Metodologia Criativa - Timeline Flow */
.section-metodologia-creative {
    background: linear-gradient(135deg, #0a2740 0%, #0f3557 30%, #1f4e79 70%, #0f3557 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-metodologia-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 166, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.section-metodologia-creative h2 {
    color: var(--white) !important;
    text-align: center;
}

.section-metodologia-creative .section-description {
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center;
}

.metodologia-flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.flow-line {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.6) 25%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.6) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
    animation: flowGradient 3s ease-in-out infinite;
}

@keyframes flowGradient {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.metodologia-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.metodologia-step.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.metodologia-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(15, 53, 87, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgb(255 193 7 / 57%), transparent);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metodologia-step:hover .step-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.step-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(15, 53, 87, 0.5);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.metodologia-step:nth-child(even) .step-content {
    text-align: right;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 78, 121, 0.1), transparent);
    transition: left 0.6s ease;
}

.metodologia-step:hover .step-content::before {
    left: 100%;
}

.metodologia-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    border-color: var(--blue-light);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    text-align: left;
}

.metodologia-step:nth-child(even) .step-content h3 {
    /* text-align: center; */
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--blue-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.metodologia-step:nth-child(even) .step-content h3::after {
    /* left: auto; */
    right: 0;
}

.metodologia-step:hover .step-content h3::after {
    width: 100px;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.metodologia-step:nth-child(even) .step-content p {
    /* text-align: right; */
}

/* Responsivo */
@media (max-width: 768px) {
    .metodologia-flow {
        padding: 0 1rem;
    }
    
    .flow-line {
        display: none;
    }
    
    .metodologia-step {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .step-marker {
        align-self: center;
    }
    
    .step-number {
        top: -20px;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-content {
        padding: 1.5rem;
        text-align: center !important;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        text-align: center !important;
    }
    
    .step-content h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .step-content p {
        font-size: 1rem;
        text-align: center !important;
    }
}

/* SeÃƒÂ§ÃƒÂ£o Diferenciais Moderna */
.section-diferenciais {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-diferenciais::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 166, 58, 0.06) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 1;
}

.section-diferenciais .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-diferenciais h2 {
    font-size: 2.8rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-diferenciais .section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.diferenciais-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(374px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.diferencial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(15, 53, 87, 0.08);
    border: 1px solid rgba(212, 166, 58, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.diferencial-card.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.diferencial-card:hover::before {
    transform: scaleX(1);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 53, 87, 0.12);
    border-color: var(--gold-primary);
}

.diferencial-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(15, 53, 87, 0.02), rgba(212, 166, 58, 0.02));
    position: relative;
}

.diferencial-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 166, 58, 0.3);
    transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 166, 58, 0.4);
}

.diferencial-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.diferencial-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(15, 53, 87, 0.1);
    line-height: 1;
}

.diferencial-content {
    padding: 1.5rem 2rem 2rem 2rem;
}

.diferencial-content h3 {
    font-size: 1.4rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.diferencial-content p {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.diferencial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-badge {
    background: linear-gradient(135deg, rgba(15, 53, 87, 0.08), rgba(15, 53, 87, 0.04));
    color: var(--blue-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(15, 53, 87, 0.15);
    transition: all 0.3s ease;
}

.diferencial-card:hover .feature-badge {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-img {
        height: 68px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid, .metodologia, .diferenciais-list, .para-quem-e-list {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .step-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step-header h2 {
        text-align: center;
    }
    
    .main-diff-features {
        grid-template-columns: 1fr;
    }
    
    .results-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Banner responsivo */
    .banner-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-banner, .btn-banner-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    
    .header-actions {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .btn-header {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    nav {
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .header-transparent nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .header-transparent nav a {
        font-size: 0.9rem;
    }
    
    .section-diferenciais h2 {
        font-size: 2.2rem;
    }
    
    .section-diferenciais .section-subtitle {
        font-size: 1.1rem;
    }
    
    .diferenciais-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diferencial-visual {
        padding: 1.5rem;
    }
    
    .diferencial-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .diferencial-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .diferencial-number {
        font-size: 2rem;
    }
    
    .diferencial-content {
        padding: 1.5rem;
    }
    
    .diferencial-content h3 {
        font-size: 1.3rem;
    }
    
    .diferencial-content p {
        font-size: 0.95rem;
    }
    
    .section-metodologia-creative h2 {
        font-size: 2.2rem;
    }
    
    .section-metodologia-creative .section-description {
        font-size: 1.1rem;
    }
    
    .metodologia-flow {
        padding: 0 1rem;
    }
    
    .flow-line {
        display: none;
    }
    
    .metodologia-step {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .step-marker {
        align-self: center;
    }
    
    .step-number {
        top: -20px;
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

   .page-id-21 .step-number {
    display: none!important;
}
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-content {
        padding: 1.5rem;
        text-align: center !important;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        text-align: center !important;
    }
    
    .step-content h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .step-content p {
        font-size: 1rem;
        text-align: center !important;
    }
}

/* Para Quem Ãƒâ€° - ÃƒÂcones */
.para-quem-e-list h3 i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.para-quem-e-list h3 {
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    text-align: center;
}

/* Metodologia Simplificada */
.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.metodologia-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metodologia-item {
    text-align: center;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 166, 58, 0.1);
}

.metodologia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--gold-primary);
}

.metodologia-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.metodologia-icon:hover {
    transform: scale(1.1);
}

.metodologia-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.metodologia-item h3 {
    font-size: 1.3rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.metodologia-item p {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .metodologia-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metodologia-item {
        padding: 2rem 1.5rem;
    }
    
    .metodologia-icon {
        width: 60px;
        height: 60px;
    }
    
    .metodologia-icon i {
        font-size: 1.5rem;
    }
}

/* SeÃƒÂ§ÃƒÂ£o Metodologia Profissional */
.section-metodologia {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-metodologia::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 166, 58, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.metodologia-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.metodologia-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 53, 87, 0.08);
    border: 1px solid rgba(212, 166, 58, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metodologia-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metodologia-step:hover::before {
    opacity: 1;
}

.metodologia-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(15, 53, 87, 0.12);
    border-color: rgba(212, 166, 58, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 166, 58, 0.3);
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-content h3 {
    font-size: 1.8rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(212, 166, 58, 0.1), rgba(212, 166, 58, 0.05));
    color: var(--blue-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 166, 58, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsivo */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .metodologia-step {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        /* justify-content: center; */
        margin: 0 auto;
    }
    
    .step-icon i {
        font-size: 1.5rem;
        /* max-width: 120px; */
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

/* SeÃƒÂ§ÃƒÂ£o Sobre com Gradiente Azul */
.section-about {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 50%, rgba(212, 166, 58, 0.1) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(212, 166, 58, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: justify;
}

.about-content .large-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 749px;
}

.about-content .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.about-content .btn-secondary:hover {
    background-color: var(--white);
    color: var(--blue-primary);
    transform: translateY(-2px);
}

.about-image {
    text-align: center;
    /* width: 410px; */
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: translateY(-10px);
}

/* Responsivo */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
        color: black;
        /* justify-content: center; */
        text-align: center;
    }

    .about-content .large-text {
        font-size: 1.1rem;
    }

    .section-about::before {
        display: none;
    }
}

/* Estilos para ÃƒÂ­cones do Font Awesome */
.card-icon i, .differential-icon i, .step-icon i, .feature-icon i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 2.5rem;
}

.service-category h2 i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Garantir que o menu apareÃƒÂ§a no header transparente */
.header-transparent nav {
    display: block !important;
}

.header-transparent nav ul, .header-transparent .main-menu {
    display: flex !important;
}

.header-transparent nav a, .header-transparent .main-menu a {
    color: var(--white) !important;
}

.header-transparent nav a:hover, .header-transparent .main-menu a:hover {
    color: var(--gold-primary) !important;
}

/* BotÃƒÂµes */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* BotÃƒÂ£o totalmente redondo */
.btn-rounded {
    border-radius: 30px !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(212, 166, 58, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-rounded:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 166, 58, 0.4) !important;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #FF9800;
}

.btn-secondary:hover {
    background-color: var(--blue-primary);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
}

/* SeÃƒÂ§ÃƒÂµes */
section {
    padding: 80px 0;
}

.section-gray {
    /* background-color: #0f3557; */
    /* background: linear-gradient(135deg, #0f3557, #1b3f60); */
    /* background: linear-gradient(135deg, #0f3557 0%, #1b3f60 50%, #2a5c85 100%); */
    /* background: linear-gradient(to right, #0f3557, #184a73); */
    background: linear-gradient(130deg, rgb(15 53 87 / 85%) 0%, rgb(15 53 87 / 25%) 40%, rgb(212 166 58 / 46%) 100%);
}

.section-dark {
    background-color: #0f3557;
    color: var(--white);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

.hero h1 span {
    color: var(--gold-primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* TÃƒÂ­tulos */
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;

    /* Borda sutil dourada */
    border: 1px solid #0f355773;

    /* Sombra minimalista elegante */
    box-shadow: 
        0 8px 25px rgba(15, 53, 87, 0.15),
        0 2px 6px rgba(212, 166, 58, 0.25);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px #d4a63a2b, 0 5px 12px #0f355742;
}

.card-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Grid de ServiÃƒÂ§os */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(451px, 2fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Metodologia */
.metodologia {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metodologia-item {
    text-align: center;
    padding: 2rem;
}

.metodologia-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.metodologia h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Diferenciais */
.diferenciais-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.diferencial-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

/* Para Quem Ãƒâ€° */
.para-quem-e {
    margin-top: 3rem;
}

.para-quem-e-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.para-quem-e-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.para-quem-e-item h3 {
    font-size: 0.9rem;
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* PÃƒÂ¡gina Sobre - ÃƒÂcones */
.identity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--blue-primary);
    box-shadow: 0 8px 25px rgba(212, 166, 58, 0.3);
    transition: all 0.3s ease;
}

.identity-icon i {
    animation: none;
}

.identity-card:hover .identity-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 166, 58, 0.4);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(15, 53, 87, 0.3);
    transition: all 0.3s ease;
}

.commitment-icon i {
    animation: none;
}

.commitment-item:hover .commitment-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(15, 53, 87, 0.4);
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
}

/* BotÃƒÂ£o Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float i {
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsivo WhatsApp Float */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Footer */
footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(257px, 2fr));
    gap: 12rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    /* filter: brightness(0) invert(1); */
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-social .social-icon {
    background-color: rgba(255, 255, 255, 0.12);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: rgb(212 166 58);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* Responsivo Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
}

.footer-section h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section ul {
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mantem os textos da pagina Sobre justificados */
.about-text,
.about-text p,
.about-content .large-text,
.about-identity-section .identity-card p,
.about-identity-section .identity-card li,
.commitment-item p {
    /* text-align: center; */
    text-justify: inter-word;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.identity-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-5px);
}

.identity-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.identity-card h3 {
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.identity-card ul {
    text-align: left;
    list-style: none;
}

.identity-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.identity-card li:before {
    content: "Ã¢â‚¬Â¢";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* PÃƒÆ’Ã‚Â¡gina Sobre - SeÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o Nossa Identidade */
.about-identity-section {
    position: relative;
    background: linear-gradient(130deg, rgb(15 53 87 / 85%) 0%, rgb(15 53 87 / 25%) 40%, rgb(212 166 58 / 46%) 100%);
    overflow: hidden;
}

.about-identity-section::before,
.about-identity-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-identity-section::before {
    top: -90px;
    left: -100px;
    background: radial-gradient(circle, rgb(15 53 87 / 9%) 0%, rgba(15, 53, 87, 0) 72%);
}

.about-identity-section::after {
    right: -90px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(212, 166, 58, 0.24) 0%, rgba(212, 166, 58, 0) 75%);
}

.about-identity-section .container {
    position: relative;
    z-index: 1;
}

.about-identity-section h2 {
    margin-bottom: 0.5rem;
}

.about-identity-section .identity-grid {
    gap: 1.5rem;
}

.about-identity-section .identity-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 53, 87, 0.1);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(10, 39, 64, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-identity-section .identity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(10, 39, 64, 0.18);
    border-color: rgba(212, 166, 58, 0.55);
}

.about-identity-section .identity-card h3 {
    margin-bottom: 0.8rem;
}

.about-identity-section .identity-card p,
.about-identity-section .identity-card li {
    color: #23435f;
}

.about-identity-section .identity-card ul {
    margin-top: 0.35rem;
    margin-bottom: 0;
    padding-left: 0;
}

.about-identity-section .identity-card li {
    margin-bottom: 0.7rem;
    line-height: 1.55;
    padding-left: 1.15rem;
}

.about-identity-section .identity-card li:last-child {
    margin-bottom: 0;
}

.about-identity-section .identity-card li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    top: 0.7em;
}

.commitment-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.commitment-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

/* Services Page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
}

.service-category {
    margin-bottom: 4rem;
}

.service-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0;
    max-width: 600px;
}

/* Mantem os textos da pagina Servicos justificados */
.services-intro .large-text,
.services-intro-card .large-text,
.service-description,
.service-item p,
.services-kpi-item span {
    text-align: justify;
    text-justify: inter-word;
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.services-detailed > .service-item:nth-child(5):last-child {
    grid-column: 1 / -1;
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(10, 39, 64, 0.08);
    border: 1px solid rgba(15, 53, 87, 0.08);
    border-top: 4px solid var(--service-accent, var(--gold-primary));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(15, 53, 87, 0.035), rgba(212, 166, 58, 0.055));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(10, 39, 64, 0.14);
    border-color-top: rgb(27 63 96);
    border-top-color: rgb(27, 63, 96);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--service-accent-light, rgba(212, 166, 58, 0.2)), rgba(255, 255, 255, 0.95));
    color: var(--service-accent, var(--gold-primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.95rem;
}

.service-item h3 {
    color: var(--blue-primary);
    margin-bottom: 0.8rem;
}

.service-item p {
    margin-bottom: 0;
    color: #2a4b67;
}

.services-page-header {
    position: relative;
}

.services-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: radial-gradient(circle at 15% 20%, rgba(212, 166, 58, 0.22), transparent 42%), radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.14), transparent 48%); */
}

.services-page-header .container {
    position: relative;
    z-index: 1;
}

.services-overview-section {
    padding-bottom: 2.5rem;
    /* background:
        radial-gradient(circle at 12% 18%, rgba(212, 166, 58, 0.18), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(15, 53, 87, 0.12), transparent 44%),
        linear-gradient(135deg, rgba(15, 53, 87, 0.06), rgba(212, 166, 58, 0.1)); */
}

.services-intro-card {
    /* background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95)); */
    border-radius: 20px;
    /* border: 1px solid rgba(15, 53, 87, 0.14); */
    /* box-shadow: 0 18px 44px rgba(10, 39, 64, 0.11); */
    padding: 2.4rem;
    max-width: 980px;
    position: relative;
    overflow: hidden;
}

.services-intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
}

.services-intro-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.services-intro-card .large-text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: #365670;
}

.services-kpis {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 1rem;
}

.services-kpi-item {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 53, 87, 0.12);
    border-radius: 14px;
    padding: 1.1rem 1.15rem;
    text-align: left;
    box-shadow: 0 8px 20px rgba(10, 39, 64, 0.08);
    position: relative;
}

.services-kpi-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: var(--blue-primary);
}

.services-kpi-item:nth-child(2)::before {
    background: var(--gold-primary);
}

.services-kpi-item:nth-child(3)::before {
    background: #29648f;
}

.services-kpi-item strong {
    display: block;
    color: var(--blue-primary);
    margin-bottom: 0.4rem;
    font-size: 1.22rem;
    line-height: 1.15;
}

.services-kpi-item span {
    color: #2f546f;
    font-size: 1rem;
    line-height: 1.45;
}

.services-category-section {
    position: relative;
    padding: 2.75rem 0;
}

.services-category-section .service-category {
    --service-accent: var(--gold-primary);
    --service-accent-light: rgba(212, 166, 58, 0.25);
}

.service-category-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-category-copy .service-description {
    margin-top: 0.6rem;
}

.service-category-copy h2{
    text-align: left;
}

.service-category-media img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(10, 39, 64, 0.14);
    border: 1px solid rgba(15, 53, 87, 0.12);
}

.service-theme-accounting {
    --service-accent: #1f4e79;
    --service-accent-light: rgba(31, 78, 121, 0.23);
}

.service-theme-tax {
    --service-accent: #d4a63a;
    --service-accent-light: rgba(212, 166, 58, 0.28);
}

.service-theme-people {
    --service-accent: #0f3557;
    --service-accent-light: rgba(15, 53, 87, 0.2);
}

.service-theme-consulting {
    --service-accent: #b88922;
    --service-accent-light: rgba(184, 137, 34, 0.24);
}

.service-theme-corporate {
    --service-accent: #29648f;
    --service-accent-light: rgba(41, 100, 143, 0.22);
}

/* Methodology Page */
.methodology-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.methodology-intro-grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    text-align: justify;
}

.methodology-intro-content h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

.methodology-intro-content .large-text {
    margin-bottom: 1rem;
}

.methodology-intro-content .large-text:last-child {
    margin-bottom: 0;
}

/* Mantem os textos da pagina Metodologia justificados */
.methodology-intro-content .large-text,
.step-text p,
.step-text li,
.step-result p {
    text-align: justify;
    text-justify: inter-word;
}

.methodology-intro-media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(15, 53, 87, 0.12);
    box-shadow: 0 16px 34px rgba(10, 39, 64, 0.16);
}

.methodology-step {
    margin-bottom: 4rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--gold-primary);
    line-height: 1;
}

.step-header h2 {
    text-align: left;
    margin: 0;
}

.step-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.step-text h3 {
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.step-text h4 {
    color: var(--blue-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.step-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.step-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-text li:before {
    content: "+";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
}

.step-result {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
}

.step-visual {
    text-align: center;
}

.step-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differential-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.differential-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

/* Pagina Diferenciais - Compromissos Diferenciais */
.differentials-commitments-section .differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.differentials-commitments-section .differential-card {
    border: 1px solid rgba(15, 53, 87, 0.1);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(10, 39, 64, 0.1);
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
}

.differentials-commitments-section .differential-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
}

.differentials-commitments-section .differential-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 166, 58, 0.18), rgba(15, 53, 87, 0.12));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
}

.differentials-commitments-section .differential-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.differentials-commitments-section .differential-card p {
    color: #2f4f69;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.differentials-commitments-section .differential-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.differentials-commitments-section .differential-card li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.55rem;
    color: #1e4463;
    line-height: 1.5;
}

.differentials-commitments-section .differential-card li:last-child {
    margin-bottom: 0;
}

.differentials-commitments-section .differential-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
}

/* Differentials Page */
.differentials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-differential {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.main-diff-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.main-diff-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.main-diff-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.main-diff-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-highlight {
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
}

.feature-highlight h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.feature-highlight h3 i {
    margin-right: 0.45rem;
}

.results-commitment {
    text-align: center;
    margin-top: 3rem;
}

.commitment-statement {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

/* Pagina Diferenciais - Compromisso com Resultados */
.differentials-results-section {
    background:
        radial-gradient(circle at 12% 15%, rgba(15, 53, 87, 0.1), transparent 42%),
        radial-gradient(circle at 90% 85%, rgba(212, 166, 58, 0.16), transparent 48%),
        linear-gradient(145deg, rgba(15, 53, 87, 0.04), rgba(212, 166, 58, 0.08));
}

.differentials-results-section .results-commitment {
    margin-top: 0;
}

.differentials-results-section .commitment-statement {
    max-width: 880px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 53, 87, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 12px 30px rgba(10, 39, 64, 0.08);
}

.differentials-results-section .results-metrics {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.differentials-results-section .metric-item {
    text-align: left;
    border-radius: 14px;
    border: 1px solid rgba(15, 53, 87, 0.1);
    box-shadow: 0 10px 26px rgba(10, 39, 64, 0.1);
    position: relative;
    overflow: hidden;
}

.differentials-results-section .metric-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--gold-primary));
}

.differentials-results-section .metric-number {
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.differentials-results-section .metric-label {
    margin-bottom: 0.75rem;
}

.differentials-results-section .metric-description {
    color: #35556f;
    line-height: 1.6;
}

.differentials-results-section .metric-item:nth-child(2) .metric-number,
.differentials-results-section .metric-item:nth-child(4) .metric-number {
    color: var(--blue-primary);
}

.testimonials-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--gold-primary);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Pagina Diferenciais - textos justificados */
.differentials-intro .large-text,
.main-diff-content .main-diff-description,
.main-diff-content .feature-highlight p,
.differentials-commitments-section .differential-card p,
.differentials-commitments-section .differential-card li,
.differentials-results-section .commitment-statement .large-text,
.differentials-results-section .metric-description,
.testimonials-placeholder .testimonial-content p {
    text-align: justify;
    text-justify: inter-word;
}

.testimonial-author strong {
    color: var(--gold-primary);
}

/* Contact Page */
.contact-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, rgb(15 53 87 / 88%) 0%, rgb(15 53 87 / 45%) 45%, rgb(212 166 58 / 35%) 100%), url('images/banner-bg.webp');
    background-size: cover;
    background-position: center;
}

.contact-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgb(15 53 87), #0f355757 45%);
    pointer-events: none;
}

.contact-header .container {
    position: relative;
    z-index: 1;
}

.contact-kicker {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}

.contact-main {
    position: relative;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-grid .contact-info{
    background: var(--white);
}

.contact-info {
    /* background: linear-gradient(160deg, rgb(255 255 255 / 75%), rgb(255 255 255 / 92%)); */
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgb(15 53 87 / 10%);
    box-shadow: 0 15px 35px rgb(15 53 87 / 8%);
    /* width: 100%; */
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgb(15 53 87 / 9%);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-primary);
    background: linear-gradient(145deg, rgb(212 166 58 / 20%), rgb(212 166 58 / 35%));
    border-radius: 12px;
    margin-top: 0.1rem;
}

.contact-details h4 {
    color: var(--blue-primary);
    margin-bottom: 0.2rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
    display: none;
}

.contact-item-whatsapp .contact-details p {
    display: block;
}

.contact-details small {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgb(15 53 87 / 10%);
    border: 1px solid rgb(15 53 87 / 8%);
}

.contact-form h3 {
    margin-bottom: 0.4rem;
}

.contact-form p {
    color: var(--gray-text);
}

.contact-form-element {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--blue-primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #193d5d4a;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgb(212 166 58 / 18%);
}

.form-disclaimer {
    font-size: 0.86rem;
    color: var(--gray-text);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.map-section {
    text-align: center;
    margin-top: 0;
}

.contact-location {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, rgb(15 53 87 / 4%), rgb(255 255 255 / 90%));
}

.map-container {
    margin: 2rem 0;
}

.map-placeholder {
    /* background-color: #0f3557; */
    padding: 2.2rem;
    border-radius: 14px;
    border: 1px solid rgb(15 53 87 / 12%);
    box-shadow: 0 18px 35px rgb(15 53 87 / 10%);
}

.map-placeholder p {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.map-placeholder iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 10px;
}

.directions-info {
    margin-top: 3rem;
    text-align: left;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.direction-item h4 {
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.faq-section {
    text-align: center;
    margin-top: 3rem;
}

.faq-accordion {
    margin: 2rem auto 0;
    max-width: 920px;
    display: grid;
    gap: 0.9rem;
}

.faq-accordion .faq-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    text-align: left;
    border-left: 4px solid var(--gold-primary);
    overflow: hidden;
}

.faq-accordion .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 3rem 1rem 1.2rem;
    font-weight: 700;
    color: var(--blue-primary);
    position: relative;
}

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

.faq-accordion .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    line-height: 1;
    color: var(--gold-primary);
}

.faq-accordion .faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 0 1.2rem 1.1rem;
    color: var(--gray-text);
}

.faq-answer p {
    margin: 0;
}

.contact-faq-wrap .faq-section {
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll,
    .animate-on-scroll.animated {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* Pagina Contato - textos justificados */
.contact-header p,
.contact-intro .large-text,
.contact-form p,
.contact-details small,
.form-disclaimer,
.map-section p,
.faq-answer p {
    text-align: justify;
    text-justify: inter-word;
}

/* Banner da pagina de contato centralizado */
.contact-header .container p {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid, .metodologia, .diferenciais-list, .para-quem-e-list {
        grid-template-columns: 1fr;
    }

    .about-grid, .step-grid, .contact-grid {
        /* grid-template-columns: 1fr; */
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-header h2 {
        text-align: center;
    }

    .main-diff-features {
        grid-template-columns: 1fr;
    }

    .results-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Banner responsivo */
    .banner-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-banner, .btn-banner-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }

    .header-actions {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .btn-header {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    nav {
        order: 2;
    }

    .logo {
        order: 1;
    }

    .header-transparent nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .header-transparent nav a {
        font-size: 0.9rem;
    }

    .about-identity-section::before,
    .about-identity-section::after {
        width: 180px;
        height: 180px;
    }

    .about-identity-section .identity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-identity-section .identity-card {
        padding: 1.6rem;
    }

    .about-identity-section .identity-card p,
    .about-identity-section .identity-card li {
        text-align: left;
        text-justify: auto;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .services-kpis {
        grid-template-columns: 1fr;
    }

    .services-intro-card {
        padding: 1.6rem;
    }

    .services-intro-card h2 {
        line-height: 1.25;
    }

    .services-kpi-item strong {
        font-size: 1.08rem;
    }

    .services-kpi-item span {
        font-size: 0.95rem;
    }

    .service-category-top {
        grid-template-columns: 1fr;
    }

    .service-category-media img {
        max-height: 200px;
    }

    .methodology-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .methodology-intro-content h2 {
        text-align: center;
    }

    .methodology-intro-grid .large-text {
        text-align: justify;
        text-justify: inter-word;
    }

    .service-item {
        padding: 1.5rem;
    }

    .services-detailed {
        grid-template-columns: 1fr;
    }

    .services-detailed > .service-item:nth-child(5):last-child {
        grid-column: auto;
    }

    .differentials-results-section .results-metrics {
        grid-template-columns: 1fr;
    }

    .differentials-results-section .metric-item {
        text-align: center;
    }

    .differentials-commitments-section .differentials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .header-content {
        /* flex-direction: column; */
        text-align: center;
    }

    .header-actions {
        order: 2;
        margin-top: 1.5rem;
    }

    nav {
        order: 3;
        margin-top: 1rem;
    }

    .header-transparent nav ul {
        gap: 1rem;
    }

    .social-icons {
        gap: 0.6rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

.cta {
    padding: 120px 0;
    color: #fff;
    text-align: center;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Mobile menu toggle */
.header-transparent .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 10px;
    background: rgb(15 53 87 / 35%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.header-transparent .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-transparent .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.header-transparent .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .header-transparent .header-content {
        position: relative;
        align-items: center;
    }

    .header-transparent .menu-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
    }

    .header-transparent .site-navigation {
        display: block !important;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: #0f3557;
        border-radius: 12px;
        border: 1px solid rgb(255 255 255 / 12%);
        box-shadow: 0 18px 34px rgb(0 0 0 / 22%);
        padding: 0.8rem 1rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        order: 4;
        z-index: 1500;
    }

    .header-transparent .site-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-transparent .site-navigation .main-menu,
    .header-transparent .site-navigation ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch;
        gap: 0.2rem !important;
    }

    .header-transparent .site-navigation a {
        display: block;
        padding: 0.7rem 0.8rem;
        border-radius: 8px;
        color: var(--white) !important;
    }

    .header-transparent .site-navigation a:hover {
        background: rgb(255 255 255 / 10%);
    }

    .header-transparent .header-actions {
        display: none;
    }
}

/* 404 Page */
.error-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 80px;
    color: var(--white);
    background: linear-gradient(130deg, rgb(15 53 87 / 90%) 0%, rgb(15 53 87 / 55%) 45%, rgb(212 166 58 / 35%) 100%), url('images/banner-bg.webp');
    background-size: cover;
    background-position: center;
}

.error-404-page .container {
    max-width: 760px;
}

.error-404-kicker {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.error-404-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.error-404-page p {
    font-size: 1.15rem;
    color: rgb(255 255 255 / 88%);
    margin-bottom: 1.8rem;
}

.error-404-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .error-404-page h1 {
        font-size: 2.2rem;
    }

    .error-404-page p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    footer .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
    }

    .footer-social{
        justify-content: center !important;
    }

    footer .footer-section {
        width: 100%;
        text-align: center !important;
    }

    footer .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.35rem;
        text-align: center;
    }

    footer .contact-info li {
        justify-content: center;
    }
}
