/* ========================================
   VARIÁVEIS E RESET GLOBAL
   ======================================== */

:root {
    --color-dourado: #C9A070;
    --color-dourado-light: #D9B888;
    --color-dourado-dark: #A88758;
    --color-bordao: #4A1A1A;
    --color-bordao-light: #6B2828;
    --color-branco: #FFFFFF;
    --color-cinza-claro: #F5F5F5;
    --color-cinza-medio: #E8E8E8;
    --color-cinza-escuro: #2D2D2D;
    --color-texto: #4A4A4A;
    --color-fundo-suave: #FAF6F0;
    --color-fundo-bege: #F4ECE0;
    --color-fundo-creme: #FBF7F1;
    --font-titulo: 'Playfair Display', serif;
    --font-texto: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 25px rgba(201, 160, 112, 0.3);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-texto);
    color: var(--color-texto);
    background-color: var(--color-fundo-suave);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ========================================
   NAVBAR STICKY
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    background-color: var(--color-branco);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-bordao);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bordao);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--color-dourado);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-cinza-escuro);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--color-dourado);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-dourado);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-specialist {
    background-color: var(--color-bordao);
    color: var(--color-branco);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--color-bordao);
    white-space: nowrap;
}

.btn-specialist:hover {
    background-color: var(--color-dourado);
    border-color: var(--color-dourado);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: var(--color-bordao);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-branco);
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 26, 26, 0.85) 0%, rgba(74, 26, 26, 0.7) 50%, rgba(74, 26, 26, 0.85) 100%);
}

.hero-content {
    max-width: 900px;
    width: 100%;
    padding: 2rem 1rem;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(201, 160, 112, 0.15);
    color: var(--color-dourado);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 160, 112, 0.3);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-titulo);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
    color: var(--color-dourado);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-family: var(--font-texto);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: var(--color-dourado);
    color: var(--color-branco);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--color-dourado-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 160, 112, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-branco);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background-color: var(--color-branco);
    color: var(--color-bordao);
    border-color: var(--color-branco);
    transform: translateY(-3px);
}

.hero-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 800px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
}

.social-icon {
    color: var(--color-dourado);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.social-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.social-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.social-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.social-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--color-dourado);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2.5rem;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--color-dourado);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-header h2,
section h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-family: var(--font-titulo);
    color: var(--color-bordao);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-texto);
    line-height: 1.7;
    font-weight: 400;
}

.section-header-light h2 {
    color: var(--color-branco);
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   SEÇÃO SOBRE
   ======================================== */

.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-fundo-creme) 0%, var(--color-fundo-suave) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 160, 112, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(74, 26, 26, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--color-bordao);
    color: var(--color-branco);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-image-badge svg {
    color: var(--color-dourado);
    width: 32px;
    height: 32px;
}

.about-image-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-image-badge strong {
    font-size: 1.15rem;
    font-weight: 700;
}

.about-image-badge span {
    font-size: 0.8rem;
    opacity: 0.85;
}

.about-text .section-label {
    padding: 0;
    text-align: left;
}

.about-text .section-label::before,
.about-text .section-label::after {
    display: none;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--color-texto);
}

.about-text > p strong {
    color: var(--color-bordao);
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pillar {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--color-branco);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--color-fundo-bege);
    box-shadow: var(--shadow-sm);
}

.pillar:hover {
    background-color: var(--color-branco);
    border-color: var(--color-dourado);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-fundo-bege), var(--color-fundo-suave));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pillar:hover .pillar-icon {
    background-color: var(--color-dourado);
    transform: scale(1.1);
}

.pillar-icon svg {
    color: var(--color-dourado);
    width: 28px;
    height: 28px;
    transition: var(--transition);
}

.pillar:hover .pillar-icon svg {
    color: var(--color-branco);
}

.pillar h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-bordao);
}

.pillar p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-texto);
}

/* ========================================
   SEÇÃO ÁREAS DE ATUAÇÃO
   ======================================== */

.areas {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-fundo-bege) 0%, var(--color-fundo-suave) 100%);
    position: relative;
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 10%, rgba(201, 160, 112, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(74, 26, 26, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.cards-grid {
    display: grid;
    gap: 2rem;
}

.cards-grid-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cards-grid-main .card {
    flex: 0 1 calc(33.333% - 1.34rem);
    min-width: 280px;
    max-width: 380px;
}

@media (max-width: 991px) {
    .cards-grid-main .card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .cards-grid-main .card {
        flex: 0 1 100%;
    }
}

.cards-grid-pair {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cards-grid-pair {
        grid-template-columns: 1fr;
    }
}

.card-featured {
    background: linear-gradient(145deg, var(--color-branco) 0%, var(--color-fundo-creme) 100%);
    border: 2px solid rgba(201, 160, 112, 0.25);
    position: relative;
}

.card-featured::after {
    content: 'DESTAQUE';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-dourado);
    color: var(--color-branco);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-sm);
}

.card-featured:hover {
    border-color: var(--color-dourado);
}

.card {
    background-color: var(--color-branco);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201, 160, 112, 0.15), rgba(201, 160, 112, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--color-dourado);
    transform: scale(1.05) rotate(-5deg);
}

.card-icon svg {
    color: var(--color-dourado);
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.card:hover .card-icon svg {
    color: var(--color-branco);
}

.card h3 {
    font-size: 1.25rem;
    color: var(--color-bordao);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-titulo);
}

.card p {
    font-size: 0.95rem;
    color: var(--color-texto);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--color-bordao);
    padding: 0.75rem 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    align-self: flex-start;
}

.btn-card svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn-card:hover {
    color: var(--color-dourado);
    border-bottom-color: var(--color-dourado);
}

.btn-card:hover svg {
    transform: translateX(5px);
}

/* ========================================
   SEÇÃO COMO FUNCIONA
   ======================================== */

.process {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-fundo-creme) 0%, var(--color-fundo-bege) 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(201, 160, 112, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-dourado), transparent, var(--color-dourado), transparent, var(--color-dourado));
    background-size: 20px 2px;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-branco), var(--color-fundo-creme));
    color: var(--color-dourado);
    border: 2px solid var(--color-dourado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-family: var(--font-titulo);
}

.step:hover .step-number {
    background-color: var(--color-dourado);
    color: var(--color-branco);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.step h3 {
    font-size: 1.15rem;
    color: var(--color-bordao);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step p {
    font-size: 0.9rem;
    color: var(--color-texto);
    line-height: 1.6;
}

/* ========================================
   SEÇÃO DEPOIMENTOS
   ======================================== */

.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-fundo-suave) 0%, var(--color-fundo-bege) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(201, 160, 112, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(74, 26, 26, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

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

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 380px;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 3.5rem 3rem;
    background-color: var(--color-branco);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.6s ease;
    position: relative;
}

.testimonial.active {
    display: block;
}

.testimonial-quote-icon {
    color: var(--color-dourado);
    opacity: 0.2;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--color-cinza-escuro);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    color: var(--color-dourado);
    width: 22px;
    height: 22px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-bordao);
    font-size: 1.1rem;
    font-family: var(--font-titulo);
}

.testimonial-role {
    color: var(--color-dourado);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(74, 26, 26, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.dot.active {
    background-color: var(--color-dourado);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   SEÇÃO CONTATO
   ======================================== */

.contact {
    position: relative;
    padding: 6rem 0;
    color: var(--color-branco);
    overflow: hidden;
}

.contact-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 26, 26, 0.92) 0%, rgba(74, 26, 26, 0.85) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--color-branco);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-titulo);
    color: var(--color-bordao);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    color: var(--color-cinza-escuro);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--color-fundo-bege);
    border-radius: var(--radius-sm);
    font-family: var(--font-texto);
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--color-cinza-escuro);
    background-color: var(--color-fundo-creme);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-dourado);
    background-color: var(--color-branco);
    box-shadow: 0 0 0 4px rgba(201, 160, 112, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: #c0392b;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    min-height: 1rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--color-bordao);
    color: var(--color-branco);
    padding: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-texto);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: var(--color-dourado);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.info-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
}

.info-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--color-dourado);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-dourado);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: var(--color-branco);
    width: 24px;
    height: 24px;
}

.info-text h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--color-branco);
}

.info-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.info-text a {
    color: var(--color-dourado);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-text a:hover {
    text-decoration: underline;
}

.btn-cta {
    background-color: var(--color-dourado);
    color: var(--color-branco);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--color-dourado);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-gold);
    font-size: 1rem;
}

.btn-cta:hover {
    background-color: var(--color-dourado-dark);
    border-color: var(--color-dourado-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 160, 112, 0.5);
}

/* ========================================
   RODAPÉ
   ======================================== */

.footer {
    background-color: var(--color-bordao);
    color: var(--color-branco);
    padding: 4rem 0 1.5rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(0deg);
}

.footer-logo div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo strong {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    color: var(--color-dourado);
    letter-spacing: 1px;
}

.footer-logo span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section h3 {
    color: var(--color-dourado);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-dourado);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--color-dourado);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact li svg {
    color: var(--color-dourado);
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 160, 112, 0.2);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float svg {
    color: var(--color-branco);
    width: 32px;
    height: 32px;
    z-index: 2;
}

.whatsapp-float:hover {
    background-color: #1DA851;
    transform: scale(1.1);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ========================================
   BOTÃO VOLTAR AO TOPO
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background-color: var(--color-bordao);
    color: var(--color-branco);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 998;
    opacity: 0;
}

.scroll-to-top svg {
    color: var(--color-branco);
    width: 22px;
    height: 22px;
}

.scroll-to-top:hover {
    background-color: var(--color-dourado);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-badge {
        right: 20px;
        bottom: -30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-section:first-child {
        grid-column: span 2;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-branco);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid var(--color-cinza-claro);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav-menu li a::after {
        display: none;
    }

    .btn-specialist {
        display: none;
    }

    .logo img {
        height: 42px;
    }

    .logo-name {
        font-size: 1.25rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .hero {
        min-height: 600px;
        padding: 4rem 1rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }

    .btn {
        width: 100%;
    }

    .hero-social {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .social-divider {
        width: 80%;
        height: 1px;
    }

    .social-item {
        width: 100%;
        justify-content: flex-start;
    }

    .about {
        padding: 4rem 0;
    }

    .about-image-badge {
        bottom: -20px;
        right: 15px;
        padding: 1rem 1.25rem;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .areas,
    .process,
    .testimonials,
    .contact {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section:first-child {
        grid-column: auto;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 88px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0.85rem 16px;
    }

    .hero {
        min-height: 550px;
        padding: 3rem 0.5rem 2.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 0 1.5rem;
        letter-spacing: 2px;
    }

    .section-label::before,
    .section-label::after {
        width: 18px;
    }

    .section-header h2,
    section h2 {
        font-size: 1.65rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card h3 {
        font-size: 1.15rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .testimonial {
        padding: 2rem 1.25rem;
    }

    .testimonial-quote-icon {
        width: 48px;
        height: 48px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .footer {
        padding: 3rem 0 1rem;
    }
}
