/* --- DESIGN SYSTEM EDNA GOMES (VANILLA CSS) --- */

:root {
    /* Base Escura Premium */
    --bg-dark: #0D0907;
    --bg-dark-card: #1A120D;
    --bg-dark-section: #160F0B;
    --bg-dark-footer: #0A0705;

    /* Destaque principal (Terracota) */
    --gold: #C9552E;
    --gold-hover: #A94424;
    --gold-light: rgba(201, 85, 46, 0.12);
    --gold-border: rgba(201, 85, 46, 0.28);

    /* Ouro Envelhecido / Cobre */
    --copper: #B9824C;
    --copper-hover: #8E633B;
    --copper-light: rgba(185, 130, 76, 0.16);

    /* Cores complementares e respiros */
    --sand: #E7D3BD;
    --linen: #F7EFE6;
    --ivory: #F4E8D8;
    --salmon: #D88A72;
    --coffee: #3B2A22;

    /* Textos claros para fundo escuro */
    --text-white: #F7EFE6;
    --text-gray: #B9A89B;
    --text-muted: rgba(247, 239, 230, 0.68);
    --text-semi: rgba(247, 239, 230, 0.88);

    /* Fontes */
    --font-heading: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.45;
    overflow-x: hidden;
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0;
    }
}

/* --- TIPOGRAFIA --- */
.font-heading {
    font-family: var(--font-heading);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 300;
}

/* --- BARRAS E SEÇÕES --- */
.section {
    position: relative;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 10rem 0;
    }
}

/* --- BLUEPRINT GRID PATTERN --- */
.blueprint-bg {
    background-image: linear-gradient(rgba(185, 130, 76, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 130, 76, 0.055) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

/* --- BOTÕES --- */
.btn-gold {
    background-color: var(--gold);
    color: var(--linen);
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 24px rgba(201, 85, 46, 0.20);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--linen);
    border-color: var(--gold-hover);
    box-shadow: 0 12px 30px rgba(201, 85, 46, 0.30);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(185, 130, 76, 0.45);
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-gold:hover {
    background-color: rgba(201, 85, 46, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background-color: rgba(13, 9, 7, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(185, 130, 76, 0.20);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1.5rem;
    height: 100%;
}

.desktop-cta {
    display: none;
}

@media (min-width: 768px) {
    .desktop-cta {
        display: block;
    }

    .mobile-cta {
        display: none;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-left: 5px;
}

.brand-separator {
    width: 1px;
    height: 1.25rem;
    background-color: rgba(185, 130, 76, 0.42);
}

.brand-sub {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {

    .brand-separator,
    .brand-sub {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-title {
        display: none;
    }
}

.nav-menu {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

.nav-link {
    color: var(--text-semi);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13, 9, 7, 0.82) 0%, rgba(26, 18, 13, 0.72) 60%, rgba(13, 9, 7, 0.92) 100%);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(13, 9, 7, 0.92),
                rgba(26, 18, 13, 0.84));
    }
}

.hero-blueprint {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 60rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-center {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-logo-center {
        height: 180px;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-logo-center {
        height: 210px;
        margin-bottom: 2rem;
    }
}

.hero-badge {
    color: var(--copper);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
}

.hero-title {
    color: var(--text-white);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-semi);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.45;
    max-width: 42rem;
    margin: 0 auto 2.5rem auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.65rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.85rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(185, 130, 76, 0.34);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 9999px;
}

/* --- HEADERS DE SEÇÃO --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 6rem;
    }
}

.section-header-line {
    width: 4rem;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto 1.5rem;
}

.section-header .badge {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-header .title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--text-white);
}

@media (min-width: 768px) {
    .section-header .title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header .title {
        font-size: 3rem;
    }
}

.section-header .subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-header .subtitle {
        font-size: 1.125rem;
    }
}

/* --- CARD GOLD BORDER --- */
.card-gold-border {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(185, 130, 76, 0.25);
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .card-gold-border {
        padding: 2rem;
    }
}

.card-gold-border:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 85, 46, 0.40);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

/* --- GRID SYSTEM --- */
.grid-5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

/* --- RISCOS SECTION --- */
#riscos .card-gold-border {
    text-align: center;
}

.riscos-icon-container {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 130, 76, 0.25);
    background-color: rgba(185, 130, 76, 0.08);
    border-radius: 4px;
    color: var(--gold);
}

@media (min-width: 768px) {
    .riscos-icon-container {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.riscos-icon-container i {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .riscos-icon-container i {
        font-size: 1.5rem;
    }
}

.card-gold-border h3 {
    font-family: var(--font-sans);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .card-gold-border h3 {
        font-size: 1.125rem;
    }
}

.card-gold-border p.desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

/* --- SERVIÇOS SECTION --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.service-card {
    padding: 2rem;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .service-card {
        padding: 3rem;
    }
}

.service-number {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(185, 130, 76, 0.34);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .service-number {
        width: 4rem;
        height: 4rem;
        margin-bottom: 2rem;
    }
}

.service-number span {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .service-number span {
        font-size: 1.25rem;
    }
}

.service-title {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
}

.service-desc {
    color: var(--text-semi);
    font-size: 0.875rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .service-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .service-list {
        margin-bottom: 2rem;
    }
}

.service-list-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-list-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 9999px;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-list-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.service-card-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(201, 85, 46, 0.58);
    transition: color 0.3s ease;
}

.service-card-arrow-line {
    width: 2rem;
    height: 1px;
    background-color: rgba(185, 130, 76, 0.44);
    transition: width 0.3s ease;
}

.service-card:hover .service-card-arrow {
    color: var(--gold);
}

.service-card:hover .service-card-arrow-line {
    width: 3rem;
}

/* --- ATENDIMENTO INTEGRAL (PROCESSO) --- */
.bg-dark-section {
    background-color: var(--bg-dark-section);
}

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

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

@media (min-width: 1024px) {
    .process-step {
        text-align: left;
    }
}

.process-step-connection {
    display: none;
}

@media (min-width: 1024px) {
    .process-step-connection {
        display: block;
        position: absolute;
        top: 2.5rem;
        left: 60%;
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, rgba(185, 130, 76, 0.34), transparent);
    }
}

.process-step-number {
    width: 5rem;
    height: 5rem;
    border: 1px solid rgba(185, 130, 76, 0.24);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .process-step-number {
        width: 6rem;
        height: 6rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .process-step-number {
        margin: 0 0 2rem 0;
    }
}

.process-step-number span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
}

@media (min-width: 768px) {
    .process-step-number span {
        font-size: 1.875rem;
    }
}

.process-step h3 {
    font-family: var(--font-sans);
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .process-step h3 {
        font-size: 1.25rem;
    }
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .process-step p {
        font-size: 1rem;
    }
}

.process-bottom-text {
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .process-bottom-text {
        font-size: 1rem;
        margin-top: 6rem;
    }
}

/* --- DIFERENCIAIS --- */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .diff-grid {
        gap: 4rem;
    }
}

.diff-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.diff-icon {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(185, 130, 76, 0.25);
    background-color: rgba(185, 130, 76, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

@media (min-width: 768px) {
    .diff-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.diff-icon i {
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .diff-icon i {
        font-size: 1.25rem;
    }
}

.diff-content h3 {
    font-family: var(--font-sans);
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .diff-content h3 {
        font-size: 1.25rem;
    }
}

.diff-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .diff-content p {
        font-size: 1rem;
    }
}

/* --- SPLIT / RESULTS --- */
.split-section {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .split-section {
        flex-direction: row;
        min-height: 37.5rem;
    }
}

@media (min-width: 1280px) {
    .split-section {
        min-height: 43.75rem;
    }
}

.split-left {
    background: linear-gradient(135deg, #E7D3BD 0%, #D88A72 50%, #C9552E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

@media (min-width: 768px) {
    .split-left {
        padding: 6rem 3rem;
    }
}

@media (min-width: 1024px) {
    .split-left {
        width: 45%;
        padding: 0 4rem;
        justify-content: flex-start;
    }
}

.split-left-content {
    max-width: 28rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .split-left-content {
        text-align: left;
    }
}

.split-left-badge {
    color: rgba(59, 42, 34, 0.75);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.split-left-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--coffee);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .split-left-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .split-left-title {
        font-size: 3rem;
    }
}

.split-left-title-light-1 {
    font-weight: 300;
    opacity: 0.85;
}

.split-left-title-light-2 {
    font-weight: 300;
    opacity: 0.70;
}

.split-right {
    background-color: var(--bg-dark-card);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

@media (min-width: 768px) {
    .split-right {
        padding: 6rem 3rem;
    }
}

@media (min-width: 1024px) {
    .split-right {
        width: 55%;
        padding: 0 4rem;
    }
}

.split-right-content {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .split-right-content {
        margin: 0;
    }
}

.split-right-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .split-right-list {
        gap: 2.5rem;
    }
}

.split-right-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
}

.split-right-check {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(185, 130, 76, 0.25);
    background-color: rgba(185, 130, 76, 0.08);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .split-right-check {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.split-right-check i {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .split-right-check i {
        font-size: 1rem;
    }
}

.split-right-item-text h3 {
    font-family: var(--font-sans);
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .split-right-item-text h3 {
        font-size: 1.25rem;
    }
}

.split-right-item-text p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .split-right-item-text p {
        font-size: 1rem;
    }
}

/* --- CONTACT / FORM --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.contact-left {
    text-align: center;
}

@media (min-width: 1024px) {
    .contact-left {
        text-align: left;
    }
}

.contact-left .badge {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-left-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-left-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-left-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

.contact-left-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .contact-left-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

.whatsapp-num {
    color: var(--text-white);
    opacity: 0.95;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.contact-notice {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(185, 130, 76, 0.24);
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

@media (min-width: 768px) {
    .contact-notice {
        margin-top: 4rem;
    }
}

/* Form Card */
.form-card {
    background-color: rgba(244, 232, 216, 0.96);
    border: 1px solid rgba(185, 130, 76, 0.35);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .form-card {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .form-card {
        padding: 2.5rem;
    }
}

.form-card h3 {
    color: var(--coffee);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .form-card h3 {
        font-size: 1.5rem;
    }
}

.form-card-desc {
    color: rgba(59, 42, 34, 0.70);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: rgba(59, 42, 34, 0.85);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    background-color: #FFFDF8;
    border: 1px solid rgba(185, 130, 76, 0.26);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--coffee);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(201, 85, 46, 0.48);
    box-shadow: 0 0 0 3px rgba(201, 85, 46, 0.12);
}

.form-select {
    width: 100%;
    background-color: #FFFDF8;
    border: 1px solid rgba(185, 130, 76, 0.26);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--coffee);
    font-size: 0.875rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: rgba(201, 85, 46, 0.48);
    box-shadow: 0 0 0 3px rgba(201, 85, 46, 0.12);
}

.form-textarea {
    width: 100%;
    background-color: #FFFDF8;
    border: 1px solid rgba(185, 130, 76, 0.26);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--coffee);
    font-size: 0.875rem;
    resize: none;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: rgba(201, 85, 46, 0.48);
    box-shadow: 0 0 0 3px rgba(201, 85, 46, 0.12);
}

.form-char-count {
    color: rgba(59, 42, 34, 0.50);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    text-align: right;
}

.form-submit-btn {
    width: 100%;
    border: none;
    margin-top: 1rem;
}

/* --- FOOTER --- */
.footer {
    position: relative;
    background-color: var(--bg-dark-footer);
    border-top: 1px solid rgba(185, 130, 76, 0.24);
}

.footer-top {
    padding: 2rem 0 4rem 0;
}

@media (min-width: 768px) {
    .footer-top {
        padding: 2.5rem 0 5rem 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
    }
}

.footer-col-5 {
    @media (min-width: 768px) {
        grid-column: span 5;
    }
}

.footer-col-3-offset {
    @media (min-width: 768px) {
        grid-column: span 3;
        grid-column-start: 7;
    }
}

.footer-col-3 {
    @media (min-width: 768px) {
        grid-column: span 3;
    }
}

.footer h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer h3 {
        font-size: 1.5rem;
    }
}

.footer-top .sub {
    color: var(--text-semi);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-top .region {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-top .desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
    max-width: 24rem;
}

.footer h4 {
    color: var(--text-white);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

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

.footer-list-item {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list-item i {
    color: var(--gold);
    font-size: 0.75rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(185, 130, 76, 0.24);
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .footer-divider {
        margin: 3rem 0;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom p {
        text-align: left;
    }
}

/* --- LOGOS --- */
.logo-barra {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-barra:hover {
    transform: scale(1.03);
}

.logo-footer {
    height: 300px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-footer:hover {
    transform: scale(1.03);
}

/* --- ANIMAÇÕES --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: #ffffff;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- PROJETOS E EXPERIÊNCIAS --- */
.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.project-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(185, 130, 76, 0.25);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 85, 46, 0.40);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.project-card-image {
    position: relative;
    width: 100%;
    height: 15rem;
    background-color: #1A120D;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(185, 130, 76, 0.20);
}

.project-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(13, 9, 7, 0.7) 100%);
    pointer-events: none;
    z-index: 2;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.project-card:hover .project-card-image img {
    transform: scale(1.08);
}

.project-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.project-card-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.project-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.project-card p.desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}