/* Diferenciais 2x2 Grid e Imagem Lateral */
.differentials-flex {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    justify-content: center;
}

.differentials-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    flex: 2;
    min-width: 0;
}

.differentials-image-side {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1.2;
    min-width: 300px;
    width: 450px;
}
.differentials-image-side img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(30,58,95,0.15);
}

@media (max-width: 1024px) {
    .differentials-flex {
        flex-direction: column;
        align-items: center;
    }
    .differentials-image-side {
        max-width: 100%;
        margin-top: 3rem;
    }
}

@media (max-width: 1000px) {
    .differentials-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 1.2rem;
    }
    .differentials-image-side {
        max-width: 100%;
        margin-top: 1.5rem;
    }
}
/* Footer Social Icons */
.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: var(--color-gray-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    text-decoration: none;
}

.footer-social-link:hover, .footer-social-link:focus {
    background: var(--color-gold-light);
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.footer-social-link svg {
    display: block;
    width: 28px;
    height: 28px;
    stroke: var(--color-navy-medium);
}
/* Reset e Variáveis */
:root {
    --color-navy: #0a0e1a;
    --color-navy-dark: #050812;
    --color-navy-medium: #1a2342;
    --color-graphite: #2d3748;
    --color-white: #ffffff;
    --color-gold: #c9a961;
    --color-gold-light: #d4b875;
    --color-blue-accent: #1e3a5f;
    --color-blue-light: #2d5a87;
    --color-teal: #2c5f5f;
    --color-gray-light: #f7fafc;
    --color-gray-medium: #e2e8f0;
    --color-gray-dark: #718096;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    
    --font-serif: 'Crimson Text', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-navy);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: var(--spacing-sm) auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(10, 14, 26, 0.15);
    background-color: rgba(255, 255, 255, 0.995);
    border-bottom-color: rgba(201, 169, 97, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-navy);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-medium) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="rgba(201,169,97,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 80px);
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: calc(100vh - 80px);
    margin-left: 25% !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-watermark {
    position: absolute;
    top: 80px;
    left: 0;
    width: 50%;
    height: calc(100vh - 80px);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    overflow: hidden;
}

.hero-watermark-image {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    opacity: 1;
    display: block;
    margin-left: 200px; /
}

.hero-image-decoration {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-blue-accent), var(--color-blue-light));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    filter: blur(30px);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #b89450;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-white) 0%, #f0f4f8 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    opacity: 0.05;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    align-items: end;
    display: flex;
    justify-content: center;    
    width: 110%;
    margin: 0 auto;
    height: 80%;
    margin-top: 30%;
    margin-bottom: 30%;
   }

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10, 14, 26, 0.3);
}

.about-image img {
    width: 100%;
    height: 95%;
    object-fit: auto;
    border-radius: 8px;
    margin-top: 100px;
}

.about-name {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-navy);
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* Areas Section */
.areas {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf3 50%, #f0f4f8 100%);
    position: relative;
}

.areas::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.area-card {
    background: linear-gradient(135deg, var(--color-white) 0%, #f8fafc 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-blue-accent), var(--color-teal));
    transform: scaleX(0);
    transition: var(--transition);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 14, 26, 0.2);
    border-color: var(--color-gold);
}

.area-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.area-card:hover .area-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.area-icon svg {
    width: 100%;
    height: 100%;
}

.area-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.area-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: var(--transition);
}

.stat-card-1::before {
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
}

.stat-card-2::before {
    background: linear-gradient(180deg, var(--color-blue-accent), var(--color-blue-light));
}

.stat-card-3::before {
    background: linear-gradient(180deg, var(--color-teal), #3a7777);
}

.stat-card-4::before {
    background: linear-gradient(180deg, var(--color-gold), var(--color-blue-accent));
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--color-gold);
}

.stat-card:hover::before {
    width: 8px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-card-1 .stat-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-white);
}

.stat-card-2 .stat-icon {
    background: linear-gradient(135deg, var(--color-blue-accent), var(--color-blue-light));
    color: var(--color-white);
}

.stat-card-3 .stat-icon {
    background: linear-gradient(135deg, var(--color-teal), #3a7777);
    color: var(--color-white);
}

.stat-card-4 .stat-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-blue-accent));
    color: var(--color-white);
}

.stat-icon svg {
    width: 35px;
    height: 35px;
}

.stat-card:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--color-navy);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Differentials Section */
.differentials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-marine) 0%, #fafbfd 100%);
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 95, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;

}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
}

.differential-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    
}

.differential-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.differential-item:hover::after {
    opacity: 1;
}

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue-accent), var(--color-navy-medium));
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.differential-item:hover .differential-icon {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.differential-icon svg {
    width: 100%;
    height: 100%;
}

.differential-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.differential-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Credibility Section */
.credibility {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #e8edf3 0%, #f0f4f8 50%, #e8edf3 100%);
    position: relative;
}

.credibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(201, 169, 97, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(30, 58, 95, 0.03) 50%, transparent 60%);
    pointer-events: none;
}

.credibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.credibility-card {
    background: linear-gradient(135deg, var(--color-white) 0%, #fafbfd 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--color-gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.credibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.credibility-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--color-blue-accent);
}

.credibility-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.credibility-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

.credibility-statement {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-medium) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.credibility-statement::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    font-family: var(--font-serif);
    color: rgba(201, 169, 97, 0.2);
    line-height: 1;
}

.statement-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    font-family: var(--font-serif);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.statement-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-gold-light);
    line-height: 1.8;
    font-family: var(--font-serif);
}

/* CTA Section */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 40%, var(--color-navy-medium) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold);
}

.cta-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--color-white) 0%, #fafbfd 100%);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-blue-accent), var(--color-teal));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-input {
    padding: 0.875rem;
    border: 1px solid var(--color-gray-medium);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition);
    background-color: var(--color-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-sans);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.form-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.link-text {
    color: var(--color-gold);
    text-decoration: underline;
}

.link-text:hover {
    color: #b89450;
}

.btn-form {
    margin-top: var(--spacing-sm);
    width: 100%;
}

.cta-alternative {
    text-align: center;
    margin-top: var(--spacing-md);
}

.alternative-text {
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-gold-light);
    text-emphasis-color: var(--color-gold-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-legal {
    margin-bottom: var(--spacing-md);
}

.footer-notice {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.footer-privacy {
    margin-top: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.privacy-link {
    color: var(--color-gold);
    font-size: 0.9rem;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #b89450;
}

.btn-footer-site {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 0.75rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-navy);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-footer-site:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--color-white);
    margin: 5% auto;
    padding: var(--spacing-lg);
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-navy);
}

.modal-body {
    color: var(--color-text-light);
    line-height: 1.8;
}

.modal-body h3 {
    font-size: 1.3rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.modal-body p {
    margin-bottom: var(--spacing-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: var(--spacing-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-content {
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-watermark {
        width: 100%;
        height: calc(100vh - 80px);
        justify-content: center;
    }
    
    .hero-watermark-image {
        object-position: center center;
        opacity: 1;
        width: 80%;
        height: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .credibility-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-bottom: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
    
    .modal-content {
        margin: 10% auto;
        padding: var(--spacing-md);
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-name {
        font-size: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form-wrapper,
    .cta-alternative,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }
}
.clientes {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Container do Slider */
.logos-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 160px;
    padding: 30px 0;
    background: #f9f9f9;
}

/* Trilho que se move */
.logos-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* Estilo de cada Logo/Cliente */
.logo-item {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Efeito de destaque (Hover) */
.logo-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Cria duas colunas de diferenciais */
    gap: 20px;
    flex: 1;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr; /* No celular vira uma coluna só */
    }
    .differentials-flex {
        flex-direction: column;
    }
}
/* Estilo da Tag superior */
.hero-tag {
    display: inline-block;
    background: rgba(193, 161, 97, 0.2); /* Tom dourado suave */
    color: #c1a161; /* Cor de destaque/ouro */
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(193, 161, 97, 0.3);
}

/* Título com destaque na segunda linha */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

.hero-title span {
    color: #c1a161; /* Destaca a dor/solução em outra cor */
    display: block;
}

/* Subtítulo mais elegante */
.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botão com efeito de brilho sutil */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(193, 161, 97, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 35px rgba(193, 161, 97, 0.6);
    transform: translateY(-2px);
}

/* Prova social discreta na Hero */
.hero-trust {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.hero-trust p {
    color: #fff;
    font-size: 0.9rem;
}

.hero-trust strong {
    color: #c1a161;
    display: block;
    font-size: 1.2rem;
}
.hero-trust span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: right;
    background: linear-gradient(90deg, #0b0f1a 40%, #0f172a 100%);
    overflow: hidden;
}
.hero-content {
    margin-left: px; /* ajuste fino: 40px, 60px ou 80px */
}
