/**
 * ESTG Consultoria - Estilos Customizados
 * Baseado no design original React
 */

:root {
    --navy: #0A2440;
    --gold: #BC9F6B;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --dark-blue: #051527;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background-color: var(--white);
    min-height: 100vh;
}

::selection {
    background-color: var(--gold);
    color: white;
}

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

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

/* Utilitários de Cores */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-gray-50 { background-color: var(--gray-50) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }

/* Cores com opacidade (Tailwind style) */
.bg-gold\/5 { background-color: rgba(188, 159, 107, 0.05) !important; }
.text-navy\/40 { color: rgba(10, 36, 64, 0.4) !important; }
.border-navy\/5 { border-color: rgba(10, 36, 64, 0.05) !important; }
.bg-gray-50\/50 { background-color: rgba(249, 250, 251, 0.5) !important; }
.hover\:bg-gold\/5:hover { background-color: rgba(188, 159, 107, 0.05) !important; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4) !important; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6) !important; }
.hover\:text-gold:hover { color: var(--gold) !important; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Navbar */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease-out;
}

#main-nav.bg-transparent {
    background-color: transparent;
    padding: 2.5rem 0;
    min-height: 80px;
}

#main-nav.bg-scrolled {
    background-color: var(--dark-blue);
    padding: 1.5rem 0;
    min-height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Logo sempre visível */
#main-nav img.logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

#main-nav.bg-scrolled img.logo-img {
    filter: none;
}

@media (max-width: 1023px) {
    #main-nav {
        background-color: var(--dark-blue) !important;
        padding: 1rem 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    #main-nav img.logo-img {
        filter: none !important;
    }
    
    #main-nav .container {
        padding: 0 16px;
    }
}

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

#main-nav .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#main-nav img.logo-img {
    height: 48px;
    width: auto;
    transition: filter 0.3s;
}

/* Garantir que o menu apareça */
#main-nav .desktop-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    #main-nav .desktop-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

#main-nav .desktop-menu {
    display: none;
}

#main-nav .desktop-menu-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#main-nav .desktop-menu-list li {
    margin: 0;
    padding: 0;
}

#main-nav .desktop-menu-list .menu-link {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding: 0.75rem 0;
    display: block;
}

#main-nav .desktop-menu-list .menu-link:hover {
    color: var(--gold) !important;
}

#main-nav .desktop-menu-list .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--gold);
    width: 0;
    transition: width 0.3s;
}

#main-nav .desktop-menu-list .menu-link:hover::after {
    width: 100%;
}

#main-nav .desktop-menu-list .btn-orcamento {
    background-color: var(--gold);
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    display: inline-block;
    margin-left: 0.5rem;
}

#main-nav .desktop-menu-list .btn-orcamento:hover {
    background-color: white;
    color: var(--navy) !important;
}

#main-nav .desktop-menu-list .btn-orcamento::after {
    display: none;
}

/* Mobile Menu */
#mobile-menu-toggle {
    display: block !important;
    color: white !important;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    display: block;
    stroke: white;
}

#mobile-menu-toggle #close-icon {
    display: none;
}

#mobile-menu-toggle[aria-expanded="true"] #menu-icon {
    display: none;
}

#mobile-menu-toggle[aria-expanded="true"] #close-icon {
    display: block;
}

@media (min-width: 1024px) {
    #mobile-menu-toggle {
        display: none !important;
    }
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-blue);
    z-index: 998;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mobile-menu .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2.5rem;
    padding: 1.5rem;
}

#mobile-menu .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

#mobile-menu .mobile-menu-list li {
    margin: 0;
    padding: 0;
}

#mobile-menu .mobile-menu-list a {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

#mobile-menu .mobile-menu-list a:hover {
    color: var(--gold);
}

#mobile-menu .mobile-menu-list .mobile-btn-contact {
    width: 100%;
    max-width: 300px;
    text-align: center;
    background-color: var(--gold);
    color: white;
    padding: 1.25rem;
    border-radius: 2px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

#mobile-menu .mobile-menu-list .mobile-btn-contact:hover {
    background-color: white;
    color: var(--navy);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-blue);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,21,39,0.9), rgba(5,21,39,0.6), rgba(5,21,39,1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge span {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.hero-badge p {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.6em;
    font-size: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 768px;
    margin: 0 auto 3.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-hero-primary {
    width: 100%;
    max-width: 300px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: white;
    padding: 1.25rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    text-align: center;
}

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

.btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1.25rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

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

/* Sections */
section {
    padding: 96px 0;
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

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

/* Grid */
.grid {
    display: grid;
    gap: 3rem;
}

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

@media (max-width: 1024px) {
    .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mt-32 { margin-top: 8rem; }

.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-24 { padding-bottom: 6rem; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: 10px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }
.text-6xl { font-size: 60px; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.2em; }
.tracking-tighter { letter-spacing: -0.02em; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }
.leading-none { line-height: 1; }

/* Display utilities adicionais */
.inline-flex { display: inline-flex; }

/* Responsive */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:text-5xl { font-size: 48px; }
    .md\:text-6xl { font-size: 60px; }
    .md\:text-8xl { font-size: 96px; }
    
    .hero-title {
        font-size: 8rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:text-left { text-align: left; }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-badge {
        justify-content: flex-start;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    #main-nav .desktop-menu {
        display: block !important;
    }
    
    #mobile-menu-toggle {
        display: none;
    }
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-300);
    outline: none;
    background-color: white;
    transition: all 0.3s;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--gold);
}

/* Form Validation Styles */
.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.error-message.hidden {
    display: none;
}

input.border-red-500,
textarea.border-red-500 {
    border-color: #dc2626 !important;
}

input.border-red-500:focus,
textarea.border-red-500:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Button Loading State */
button:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loading {
    display: inline-block;
}

.button-loading.hidden {
    display: none;
}

/* Contact Form Submit Button - Garantir estilo padrão */
#contact_submit.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
    text-align: center;
    background-color: var(--gold);
    color: var(--white);
}

#contact_submit.btn:hover:not(:disabled) {
    background-color: transparent;
    color: var(--gold);
}

#contact_submit.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Newsletter Form Styles */
#newsletter_error,
#newsletter_success {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

#newsletter_error {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

#newsletter_success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Footer */
footer {
    background-color: white;
    padding-top: 40px !important;
    padding-bottom: 0 !important;
}

footer nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem 2rem !important;
}

footer nav a {
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

footer address {
    font-size: 14px !important;
    letter-spacing: 0.02em !important;
}

footer address p {
    font-size: 14px !important;
    letter-spacing: 0.02em !important;
}

footer .w-full.border-t {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
}

footer .w-full.border-t a {
    font-size: 14px !important;
    padding: 8px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

footer img {
    height: 80px !important;
    width: auto;
    filter: grayscale(100%) contrast(125%);
    transition: filter 0.3s;
}

footer img:hover {
    filter: none;
}

footer .footer-bar {
    background-color: var(--gold);
    height: 16px;
    width: 100%;
}

/* Classes utilitárias adicionais para compatibilidade com templates */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.opacity-10 { opacity: 0.1; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }

.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-\[1000\] { z-index: 1000; }

.object-cover { object-fit: cover; }
.rounded { border-radius: 4px; }
.rounded-sm { border-radius: 2px; }

.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

.transition-all { transition: all 0.3s; }
.transition-transform { transition: transform 0.3s; }
.transition-colors { transition: color 0.3s, background-color 0.3s, border-color 0.3s; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-700 { transition-duration: 0.7s; }
.ease-out { transition-timing-function: ease-out; }
.ease-in-out { transition-timing-function: ease-in-out; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:grayscale-0:hover { filter: grayscale(0); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:bg-navy:hover { background-color: var(--navy); }
.hover\:bg-white:hover { background-color: white; }
.hover\:bg-transparent:hover { background-color: transparent; }
.hover\:border-white:hover { border-color: white; }
.hover\:filter-none:hover { filter: none; }

/* Text colors */
.text-white { color: #ffffff !important; }

/* Text colors with opacity */
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-navy\/40 { color: rgba(10,36,64,0.4); }
.text-navy\/60 { color: rgba(10,36,64,0.6); }
.text-navy\/70 { color: rgba(10,36,64,0.7); }

/* Background colors */
.bg-\[\#051527\] { background-color: #051527; }
.bg-\[\#051527\]\/90 { background-color: rgba(5,21,39,0.9); }
.bg-\[\#051527\]\/60 { background-color: rgba(5,21,39,0.6); }
.bg-\[\#051527\]\/40 { background-color: rgba(5,21,39,0.4); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }

/* Border utilities */
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-4 { border-bottom-width: 4px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-gold { border-color: var(--gold); }
.border-navy { border-color: var(--navy); }
.border-transparent { border-color: transparent; }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }

/* Space utilities */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-10 > * + * { margin-left: 2.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* Display utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Margin utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Min height */
.min-h-screen { min-height: 100vh; }

/* Line clamp */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Grayscale filter */
.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0); }
.contrast-125 { filter: contrast(125%); }

/* Brightness and invert */
.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
.filter-none { filter: none; }

/* Max width */
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Group hover */
.group:hover .group-hover\:text-gold { color: var(--gold); }
.group:hover .group-hover\:grayscale-0 { filter: grayscale(0); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }
.group:hover .group-hover\:border-gold { border-color: var(--gold); }
.group:hover .group-hover\:w-full { width: 100%; }
.group:hover .group-hover\:bg-\[\#051527\]\/40 { background-color: rgba(5, 21, 39, 0.4); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-100 { transform: scale(1); }

/* Classes essenciais adicionais */
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-24 { padding-bottom: 6rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.p-5 { padding: 1.25rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-32 { margin-top: 8rem; }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

@media (min-width: 1024px) {
    .lg\:gap-16 { gap: 4rem; }
    .lg\:gap-32 { gap: 8rem; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    .lg\:justify-start { justify-content: flex-start; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:text-8xl { font-size: 6rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:block { display: block; }
}
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-16 { row-gap: 4rem; }

.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.text-\[\#0A2440\] { color: #0A2440; }
.text-\[\#0A2440\]\/60 { color: rgba(10, 36, 64, 0.6); }
.text-\[\#0A2440\]\/70 { color: rgba(10, 36, 64, 0.7); }
.bg-\[\#051527\] { background-color: #051527; }
.bg-\[\#051527\]\/0 { background-color: rgba(5, 21, 39, 0); }
.bg-\[\#051527\]\/40 { background-color: rgba(5, 21, 39, 0.4); }
.bg-\[\#051527\]\/60 { background-color: rgba(5, 21, 39, 0.6); }
.bg-\[\#051527\]\/90 { background-color: rgba(5, 21, 39, 0.9); }

.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.6em\] { letter-spacing: 0.6em; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-\[400px\] { height: 400px; }
.h-\[1px\] { height: 1px; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-5 { width: 1.25rem; }

.col-span-1 { grid-column: span 1 / span 1; }

/* Prose Styles - Conteúdo de posts */
.prose { 
    max-width: 65ch; 
    color: var(--navy);
}

.prose-lg { 
    font-size: 1.125rem; 
    line-height: 1.75; 
    color: var(--navy);
}

.prose-lg p { 
    margin-top: 1.25em; 
    margin-bottom: 1.25em; 
    color: var(--gray-700);
    line-height: 1.8;
}

.prose-lg h2 { 
    font-size: 1.875em; 
    margin-top: 2em; 
    margin-bottom: 1em; 
    font-weight: 900; 
    color: var(--navy);
    line-height: 1.3;
}

.prose-lg h3 { 
    font-size: 1.5em; 
    margin-top: 1.6em; 
    margin-bottom: 0.6em; 
    font-weight: 700; 
    color: var(--navy);
    line-height: 1.4;
}

.prose-lg strong { 
    font-weight: 700; 
    color: var(--navy);
}

.prose-lg a { 
    color: var(--gold); 
    text-decoration: underline; 
    transition: color 0.3s;
}

.prose-lg a:hover {
    color: var(--navy);
}

.prose-lg blockquote { 
    border-left: 4px solid var(--gold); 
    padding-left: 1.5em; 
    margin: 1.5em 0; 
    font-style: italic; 
    color: var(--gray-600);
    background-color: var(--gray-50);
    padding: 1em 1.5em;
    border-radius: 4px;
}

.prose-lg ol, .prose-lg ul { 
    padding-left: 1.625em; 
    margin: 1.25em 0; 
    color: var(--gray-700);
}

.prose-lg li { 
    margin: 0.5em 0; 
    line-height: 1.8;
}

.prose-lg img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5em 0;
}

.prose-lg code {
    background-color: var(--gray-100);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--navy);
}

.prose-lg pre {
    background-color: var(--gray-100);
    padding: 1em;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.prose-lg pre code {
    background: none;
    padding: 0;
}

.inline-flex { display: inline-flex; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.scale-50 { transform: scale(0.5); }
.scale-100 { transform: scale(1); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }

.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.pl-4 { padding-left: 1rem; }

.rounded-full { border-radius: 9999px; }

.shadow-gold\/20 { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-none { max-width: none; }

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .md\:h-64 { height: 16rem; }
    .md\:h-96 { height: 24rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-8xl { font-size: 6rem; }
    .md\:text-xs { font-size: 0.75rem; }
    .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
    .lg\:max-w-md { max-width: 28rem; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:block { display: block; }
}

@media (min-width: 640px) {
    .sm\:w-auto { width: auto; }
    .sm\:flex-row { flex-direction: row; }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

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

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

.blog-article {
    transition: transform 0.3s;
}

.blog-article a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-article:hover {
    transform: translateY(-4px);
}

.blog-article:hover .blog-title {
    color: var(--gold);
}

.blog-article:hover .blog-read-more {
    transform: translateX(0.5rem);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 9;
    background-color: var(--gray-100);
    border-radius: 2px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.75rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 10px;
    color: rgba(10, 36, 64, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-meta svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-excerpt {
    color: rgba(10, 36, 64, 0.6);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s;
}

.blog-read-more svg {
    width: 14px;
    height: 14px;
}

/* Single Post Styles */
.single-post-header {
    margin-bottom: 2rem;
}

.single-post-category {
    background-color: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.single-post-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(10, 36, 64, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.single-post-meta svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.single-post-featured-image {
    margin-bottom: 3rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 2px;
}

.single-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-content {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Accordion/Sanfona Styles */
#advantages-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.advantage-item {
    border-bottom: 1px solid var(--gray-200);
}

.advantage-toggle {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.advantage-toggle:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.advantage-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.advantage-title.active {
    color: var(--gold);
}

.advantage-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 1rem;
}

.advantage-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.advantage-toggle.active .advantage-icon svg {
    transform: rotate(45deg);
}

.advantage-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
    padding: 0 0 0 0;
}

.advantage-content.active {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
    opacity: 1;
}

.advantage-toggle.active .advantage-title {
    color: var(--gold);
}

.advantage-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

/* Newsletter Box */
.newsletter-box {
    margin-top: 8rem;
    padding: 3rem;
    background-color: var(--dark-blue);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: -8rem;
    margin-top: -8rem;
}

.newsletter-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.newsletter-text h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 32rem;
    gap: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    background-color: var(--gold);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: white;
    color: var(--navy);
}

@media (min-width: 768px) {
    .newsletter-content {
        flex-direction: row;
        text-align: left;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
}

/* Team Section Styles */
#time {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: white;
}

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

/* Team Grid */
#time .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 2.5rem;
}

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

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

/* Team Member Card */
#time .group {
    cursor: pointer;
    transition: transform 0.3s ease;
}

#time .group:hover {
    transform: translateY(-8px);
}

#time .group a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Team Member Image Container */
#time .relative.overflow-hidden {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 4 / 5;
    background-color: var(--gray-100);
    border-radius: 2px;
}

#time .relative.overflow-hidden img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: grayscale(100%);
}

#time .group:hover .relative.overflow-hidden img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Team Member Overlay */
#time .absolute.inset-0 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(5, 21, 39, 0);
    transition: background-color 0.5s ease, opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

#time .group:hover .absolute.inset-0 {
    background-color: rgba(5, 21, 39, 0.4);
    opacity: 1;
}

/* Plus Icon Circle */
#time .w-16.h-16.bg-gold {
    width: 4rem;
    height: 4rem;
    background-color: var(--gold);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0.5);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

#time .group:hover .w-16.h-16.bg-gold {
    transform: scale(1);
}

#time .w-16.h-16.bg-gold svg {
    width: 2rem;
    height: 2rem;
}

/* Team Member Info */
#time .border-l-2 {
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: transparent;
    padding-left: 1rem;
    transition: border-color 0.3s ease;
}

#time .group:hover .border-l-2 {
    border-left-color: var(--gold);
}

#time .border-l-2 h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

#time .group:hover .border-l-2 h3 {
    color: var(--gold);
}

#time .border-l-2 p {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    margin: 0;
}

/* Team Member Placeholder */
#time .bg-gray-300 {
    width: 100%;
    height: 100%;
    background-color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

#time .bg-gray-300 svg {
    width: 4rem;
    height: 4rem;
    color: var(--gray-400);
}

/* Team Section Header */
#time .flex.flex-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    #time .flex.flex-col.lg\:flex-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

#time .text-gold {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 10px;
    margin-bottom: 1rem;
    display: block;
}

#time h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (min-width: 768px) {
    #time h2 {
        font-size: 4.5rem;
    }
}

#time h2 .text-gold {
    color: var(--gold);
    display: inline;
    font-size: inherit;
    letter-spacing: inherit;
}

#time .text-\[#0A2440\]\/60 {
    color: rgba(10, 36, 64, 0.6);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75;
}

@media (min-width: 1024px) {
    #time .lg\:max-w-md {
        max-width: 28rem;
    }
}

/* Aspect Ratio 4/5 */
.aspect-\[4\/5\] {
    aspect-ratio: 4 / 5;
}

/* Gap específicos para grid do time */
.gap-x-10 {
    column-gap: 2.5rem;
}

.gap-y-16 {
    row-gap: 4rem;
}

/* Melhorias adicionais para cards do time */
#time .group {
    position: relative;
}

#time .group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 21, 39, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 2px;
}

#time .group:hover::before {
    opacity: 1;
}

/* Ajustes de espaçamento */
#time .mb-24 {
    margin-bottom: 6rem;
}

#time .mb-8 {
    margin-bottom: 2rem;
}

/* Responsividade melhorada */
@media (max-width: 767px) {
    #time {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    #time h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    #time .grid {
        gap: 3rem 0;
    }
    
    #time .border-l-2 h3 {
        font-size: 1.5rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#time .group {
    animation: fadeInUp 0.6s ease-out;
}

#time .group:nth-child(1) { animation-delay: 0.1s; }
#time .group:nth-child(2) { animation-delay: 0.2s; }
#time .group:nth-child(3) { animation-delay: 0.3s; }
#time .group:nth-child(4) { animation-delay: 0.4s; }
#time .group:nth-child(5) { animation-delay: 0.5s; }
#time .group:nth-child(6) { animation-delay: 0.6s; }

/* Single Team Member Page Styles */
.single-team_member {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* Círculo dourado de fundo */
.single-team_member .absolute.-top-6.-left-6 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 9999px;
    z-index: -1;
}

/* Space-y-16 */
.single-team_member .space-y-16 > * + * {
    margin-top: 4rem;
}

.single-team_member .container {
    max-width: 1280px;
}

.single-team_member .grid.lg\:grid-cols-12 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
}

@media (min-width: 1024px) {
    .single-team_member .grid.lg\:grid-cols-12 {
        grid-template-columns: repeat(12, 1fr);
        gap: 8rem;
    }
    
    .single-team_member .lg\:col-span-5 {
        grid-column: span 5 / span 5;
    }
    
    .single-team_member .lg\:col-span-7 {
        grid-column: span 7 / span 7;
    }
}

/* Overlay Badge on Photo */
.single-team_member .absolute.-bottom-8.-right-8 {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: var(--dark-blue);
    padding: 24px !important;
    max-width: 18rem;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    z-index: 10;
}

/* Título "Especialista Sênior em Resultados" na caixa azul */
.single-team_member .absolute.-bottom-8.-right-8 h4,
.single-team_member .bg-\[#051527\] h4.text-lg,
.single-team_member .absolute.-bottom-8.-right-8 h4.text-lg.font-bold {
    color: #BC9F6B !important;
}

.single-team_member .absolute.bottom-0.right-0 svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--gold);
    margin-right: 0.5rem;
}

.single-team_member .absolute.bottom-0.right-0 span {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.single-team_member .absolute.bottom-0.right-0 p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.75;
    margin-top: 0.75rem;
}

/* Contact Links */
.single-team_member .flex.items-center.gap-6 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.single-team_member .flex.items-center.gap-6 a {
    display: flex;
    align-items: center;
    color: var(--navy);
    transition: color 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.single-team_member .flex.items-center.gap-6 a:hover {
    color: var(--gold);
}

.single-team_member .flex.items-center.gap-6 svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Breadcrumb */
.single-team_member .text-\[10px\] {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(10, 36, 64, 0.4);
    margin-bottom: 1.5rem;
    display: block;
}

/* Name */
.single-team_member h1 {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

@media (min-width: 768px) {
    .single-team_member h1 {
        font-size: 6rem;
    }
}

/* Role - Cor do cargo */
.single-team_member .text-2xl,
.single-team_member .text-3xl,
.single-team_member p.text-2xl,
.single-team_member p.text-3xl,
.single-team_member .text-2xl.md\:text-3xl {
    color: #BC9F6B !important;
    font-style: italic;
    font-weight: 300;
    line-height: 1.3;
}

.single-team_member .text-2xl {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .single-team_member .text-2xl.md\:text-3xl {
        font-size: 1.875rem;
    }
}

/* Specialties */
.single-team_member .grid.md\:grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .single-team_member .grid.md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.single-team_member .bg-gray-50\/50 {
    background-color: rgba(249, 250, 251, 0.5);
    border: 1px solid rgba(188, 159, 107, 0.3) !important;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background-color 0.3s, border-color 0.3s;
    border-radius: 2px;
}

.single-team_member .bg-gray-50\/50:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: rgba(188, 159, 107, 0.4) !important;
}

/* Garantir borda dourada nas especialidades */
.single-team_member .grid.md\:grid-cols-2 > div,
.single-team_member .flex.items-start.space-x-4.p-6.bg-gray-50\/50 {
    border: 1px solid rgba(188, 159, 107, 0.3) !important;
}

.single-team_member .bg-gray-50\/50 svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.single-team_member .bg-gray-50\/50 span {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Vision Box */
.single-team_member .bg-\[#051527\] {
    background-color: var(--dark-blue);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.single-team_member .bg-\[#051527\] .absolute {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    opacity: 0.1;
    z-index: 1;
}

.single-team_member .bg-\[#051527\] .absolute svg {
    width: 7.5rem;
    height: 7.5rem;
    color: white;
}

.single-team_member .bg-\[#051527\] h3 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem !important;
    position: relative;
    z-index: 10;
}

/* Reduzir margem superior do texto da visão */
.single-team_member .bg-\[#051527\] .relative.z-10 p {
    margin-top: 0 !important;
}

.single-team_member .bg-\[#051527\] .text-xl,
.single-team_member .bg-\[#051527\] .text-lg {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    font-weight: 300;
    font-style: italic;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.single-team_member .bg-\[#051527\] .text-white {
    color: #ffffff !important;
}

.single-team_member .bg-\[#051527\] .text-white\/60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Garantir que o texto da visão seja visível */
.single-team_member .bg-\[#051527\] .relative.z-10 p.text-white\/60,
.single-team_member .bg-\[#051527\] p.text-white\/60,
.single-team_member .bg-\[#051527\] .text-xl.text-white\/60,
.single-team_member .bg-\[#051527\] .text-lg.text-white\/60 {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
}

/* Reduzir espaçamento entre cargo e especialidades */
.single-team_member .lg\:col-span-7 p.text-2xl,
.single-team_member .lg\:col-span-7 p.text-3xl {
    margin-bottom: 2rem !important;
    color: #BC9F6B !important;
}

.single-team_member .bg-\[#051527\] .relative.z-10 h3.text-white {
    color: #ffffff !important;
}

.single-team_member .bg-\[#051527\] .prose {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 10;
}

.single-team_member .bg-\[#051527\] .prose p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    font-style: italic;
}

.single-team_member .bg-\[#051527\] a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--gold);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(188, 159, 107, 0.3);
}

.single-team_member .bg-\[#051527\] a:hover {
    background-color: white;
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(188, 159, 107, 0.5);
    transform: translateY(-2px);
}

/* Ajustes finais */
.single-team_member .rounded {
    border-radius: 2px;
}

.single-team_member .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Space utilities */
.single-team_member .space-x-3 > * + * {
    margin-left: 0.75rem;
}

.single-team_member .space-x-4 > * + * {
    margin-left: 1rem;
}

.single-team_member .space-x-8 > * + * {
    margin-left: 2rem;
}

/* Text sizes específicos */
.single-team_member .text-\[10px\] {
    font-size: 10px;
}

.single-team_member .text-\[11px\] {
    font-size: 11px;
}

/* Leading tight */
.single-team_member .leading-tight {
    line-height: 1.25;
}

/* Leading none */
.single-team_member .leading-none {
    line-height: 1;
}

/* Tamanhos específicos dos ícones - exatamente como no original */
.w-\[18px\], .h-\[18px\] {
    width: 18px;
    height: 18px;
}

.w-\[22px\], .h-\[22px\] {
    width: 22px;
    height: 22px;
}

.w-\[120px\], .h-\[120px\] {
    width: 120px;
    height: 120px;
}

/* Tamanhos de texto específicos */
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }

/* Letter spacing específicos */
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.5em\] { letter-spacing: 0.5em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }

/* Responsive adjustments */
@media (max-width: 767px) {
    .single-team_member .absolute.bottom-0.right-0 {
        position: relative;
        transform: none;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .single-team_member h1 {
        font-size: 2.5rem;
    }
}

/* Paginação */
.pagination,
.page-numbers,
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.page-numbers a,
.page-numbers span,
.nav-links a,
.nav-links span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
}

.pagination a:hover,
.page-numbers a:hover,
.nav-links a:hover {
    background-color: var(--gold);
    color: white;
    border-color: var(--gold);
}

.pagination .current,
.pagination .page-numbers.current,
.page-numbers .current,
.nav-links .current {
    background-color: var(--gold);
    color: white;
    border-color: var(--gold);
}

.pagination .dots,
.page-numbers .dots {
    border: none;
    cursor: default;
}

.pagination .dots:hover {
    background: none;
    color: var(--navy);
}

/* Regra adicional para garantir cor do cargo em todos os contextos */
.single-team_member .lg\:col-span-7 > p.text-2xl,
.single-team_member .lg\:col-span-7 > p.text-3xl,
.single-team_member .lg\:col-span-7 p.text-2xl.md\:text-3xl,
body.single-team_member .text-2xl,
body.single-team_member .text-3xl {
    color: #BC9F6B !important;
}

/* ============================================
   ESTILOS PARA PÁGINA "QUEM SOMOS" MELHORADA
   ============================================ */

/* Melhor contraste de texto */
#sobre .text-\[#333\] {
    color: #333333 !important;
}

/* Espaçamento entre linhas melhorado */
#sobre p {
    line-height: 1.8 !important;
}

/* Subtítulos com linha dourada */
#sobre h3 {
    position: relative;
}

#sobre h3 .border-b-2 {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: rgba(188, 159, 107, 0.3);
}

/* Cards de Missão/Visão/Valores melhorados */
section[aria-label="Nossa Missão, Visão e Valores"] article {
    transition: all 0.3s ease;
}

section[aria-label="Nossa Missão, Visão e Valores"] article:hover {
    transform: translateY(-4px);
}

/* Ícones nos cards */
section[aria-label="Nossa Missão, Visão e Valores"] .w-16.h-16 {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
section.bg-navy {
    position: relative;
}

section.bg-navy .absolute.inset-0 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

section.bg-navy .relative.z-10 {
    position: relative;
    z-index: 10;
}

/* Responsividade para layout alternado */
@media (max-width: 767px) {
    #sobre .order-1 {
        order: 1;
    }
    
    #sobre .order-2 {
        order: 2;
    }
    
    #sobre .mb-24 {
        margin-bottom: 3rem;
    }
    
    section[aria-label="Nossa Missão, Visão e Valores"] .grid {
        grid-template-columns: 1fr;
    }
}

/* Ajustes de largura máxima para legibilidade */
#sobre .max-w-xl {
    max-width: 36rem;
}

#sobre .max-w-4xl {
    max-width: 56rem;
}

#sobre .max-w-7xl {
    max-width: 80rem;
}

/* Espaçamento melhorado entre seções */
#sobre {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

section[aria-label="Nossa Missão, Visão e Valores"] {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Efeitos hover nas imagens */
#sobre img {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

#sobre img:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
   COR DO TÍTULO "ESPECIALISTA SÊNIOR EM RESULTADOS"
   ============================================ */
.single-team_member .absolute.-bottom-8.-right-8 h4,
.single-team_member .bg-\[#051527\] h4,
.single-team_member .absolute.-bottom-8.-right-8 h4.text-lg,
.single-team_member .absolute.-bottom-8.-right-8 h4.font-bold,
.single-team_member .absolute.-bottom-8.-right-8 h4.text-lg.font-bold.mb-2.leading-tight {
    color: #BC9F6B !important;
}

