/* ===========================
   STEAMBOAT PARTNERS - CSS
   Baseado nas cores do logo (azul marinho/escuro)
   =========================== */

/* CSS Variables */
:root {
    --color-primary: #0a1628;
    --color-primary-light: #1a2d4d;
    --color-secondary: #1e3a5f;
    --color-accent: #2c5f8a;
    --color-gold: #b8934b;
    --color-white: #ffffff;
    --color-light: #f8f9fc;
    --color-gray: #6b7b8f;
    --color-gray-light: #e8ecf1;
    --color-text: #2c3e50;
    --color-text-light: #5a6d7e;
    --color-success: #27ae60;
    --color-error: #e74c3c;
    --color-warning: #f39c12;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 0;
    display: none;
}

html {
    scrollbar-width: none;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-primary);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.hero-fade-overlay.fading {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.hero-scroll a:hover {
    color: var(--color-white);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(184, 147, 75, 0.3);
}

.btn-primary:hover {
    background: #d4a94f;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 147, 75, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
}

.section-tag::before {
    left: -20px;
}

.section-tag::after {
    right: -20px;
}

.section-tag.light {
    color: var(--color-gold);
}

.section-tag.light::before,
.section-tag.light::after {
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}

.section-title.light {
    color: var(--color-white);
}

.section-description {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.section-about {
    background: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.about-lead {
    font-size: 1.15rem !important;
    color: var(--color-text) !important;
    font-weight: 500;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    margin-bottom: 24px !important;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--color-white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-timeline {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: var(--color-light);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-light);
}

/* ===========================
   NUMBERS SECTION
   =========================== */
.section-numbers {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
}

.section-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.numbers-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.number-card {
    padding: 30px 20px;
}

.number-card .number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.number-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

/* ===========================
   TEAM SECTION
   =========================== */
.section-team {
    background: var(--color-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
}

.team-card:hover {
    transform: translateY(-6px);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--color-gray-light);
    transition: var(--transition);
}

.team-card:hover .team-photo {
    border-color: var(--color-gold);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    z-index: 1;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-body {
    display: flex;
    gap: 30px;
    padding: 40px;
    align-items: flex-start;
}

.modal-photo {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.modal-role {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.modal-bio {
    list-style: none;
    padding: 0;
}

.modal-bio li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.modal-bio li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .modal-photo {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }

    .modal-bio li {
        text-align: left;
    }
}

/* ===========================
   CLIENTS CAROUSEL
   =========================== */
.clients-carousel {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.clients-carousel::before,
.clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-primary) 0%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 32px;
    animation: scrollClients 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    padding: 24px 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.client-item img {
    height: auto;
    width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: none;
    opacity: 0.8;
    transition: var(--transition);
}

.client-item:hover img {
    opacity: 1;
}

.client-item img.logo-large {
    max-height: none;
    height: 100px;
    width: auto;
    max-width: 180px;
    transform: none;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .clients-carousel::before,
    .clients-carousel::after {
        width: 40px;
    }

    .client-item {
        width: 160px;
        height: 80px;
        padding: 16px 24px;
    }

    .client-item img {
        max-height: 36px;
    }
}

/* ===========================
   DEALS CAROUSEL
   =========================== */
.deals-carousel {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.deals-carousel::before,
.deals-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.deals-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.deals-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-primary) 0%, transparent 100%);
}

.deals-track {
    display: flex;
    gap: 32px;
    animation: scrollDeals 42s linear infinite;
    width: max-content;
}

.deals-track:hover {
    animation-play-state: paused;
}

.deal-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.deal-header {
    background: var(--color-light);
    padding: 14px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-gray-light);
}

.deal-body {
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.deal-logo-main {
    width: 160px;
    height: 60px;
    object-fit: contain;
}

.deal-logo-target {
    width: 160px;
    height: 60px;
    object-fit: contain;
}

.deal-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.deal-logos-row .deal-logo-target {
    width: 80px;
    height: 40px;
}

.deal-action {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.deal-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    padding-top: 12px;
    position: relative;
    z-index: 2;
}

.deal-footer {
    background: var(--color-primary);
    padding: 10px 20px;
    text-align: right;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-top: auto;
}

@keyframes scrollDeals {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .deals-carousel::before,
    .deals-carousel::after {
        width: 40px;
    }

    .deal-card {
        width: 240px;
    }

    .deal-body {
        min-height: 180px;
        padding: 20px 16px;
    }
}

/* ===========================
   LOCATION SECTION
   =========================== */
.section-location {
    background: var(--color-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
}

.location-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.location-card h3 i {
    color: var(--color-accent);
    margin-right: 8px;
}

.location-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.location-address {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-light);
    font-style: italic;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-light);
}

/* ===========================
   CAREERS / FORM SECTION
   =========================== */
.section-careers {
    background: var(--color-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-light);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(44, 95, 138, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7b8f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-file small {
    display: block;
    margin-top: 6px;
    color: var(--color-gray);
    font-size: 0.8rem;
}

.form-file input[type="file"] {
    padding: 10px;
    border-style: dashed;
    cursor: pointer;
}

.form-status {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
    margin-bottom: 16px;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-status.error {
    background: rgba(231, 76, 60, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.form-status.warning {
    background: rgba(243, 156, 18, 0.1);
    color: var(--color-warning);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--color-primary);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a[aria-label="Instagram"] {
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact p i {
    color: var(--color-gold);
    margin-right: 8px;
    width: 16px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid .number-card:nth-child(2) {
        order: 3;
        grid-column: 1 / -1;
        justify-self: center;
    }

    .numbers-grid .number-card:nth-child(3) {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .number-card .number {
        font-size: 2rem;
    }

    .value-card {
        padding: 20px 16px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .team-grid {
        gap: 16px;
    }

    .team-photo {
        width: 110px;
        height: 110px;
    }

    .team-card h3 {
        font-size: 1rem;
    }

    .deal-card {
        width: 220px;
    }

    .footer-contact p {
        font-size: 0.8rem;
    }

    .nav-logo img {
        height: 35px;
    }

    .btn-submit {
        font-size: 0.9rem;
        padding: 14px;
    }
}

/* ===========================
   LGPD - CONSENT CHECKBOX
   =========================== */
.form-consent {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 8px;
    position: relative;
    top: 2px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: var(--color-gold);
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content p a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-privacy-link:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}
