/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - LUCAS GOUVEA ADVOGADO
   ========================================================================== */

:root {
    /* Color Palette */
    --color-primary: #0F1B2D;      /* Deep Sophisticated Blue */
    --color-gold: #D6AF67;         /* Brand Gold */
    --color-gold-hover: #C59F58;   /* Darker Gold */
    --color-light-bg: #F5F5F5;     /* Off-White */
    --color-gray-sec: #C7C7C7;     /* Secondary Border / Accent */
    --color-text-dark: #2D3748;    /* Dark Charcoal for text */
    --color-text-light: #F5F5F5;   /* Light text */
    --color-white: #FFFFFF;
    
    /* Semantic Variables (Light Mode Default) */
    --bg-body: var(--color-light-bg);
    --bg-header: rgba(245, 245, 245, 0.85);
    --bg-card: var(--color-white);
    --bg-dark-accent: var(--color-primary);
    
    --text-main: var(--color-text-dark);
    --text-muted: #6B7280;
    --text-inverse: var(--color-white);
    
    --border-color: rgba(15, 27, 45, 0.08);
    --border-gold: rgba(214, 175, 103, 0.4);
    
    --shadow-premium: 0 10px 30px -10px rgba(15, 27, 45, 0.08);
    --shadow-hover: 0 20px 40px -15px rgba(15, 27, 45, 0.15);
    --shadow-gold: 0 8px 20px -8px rgba(214, 175, 103, 0.3);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-titles: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Transition Speed */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Dark Mode Variables Override */
body.dark-mode {
    --bg-body: #0A111C;
    --bg-header: rgba(10, 17, 28, 0.85);
    --bg-card: #0F1B2D;
    --bg-dark-accent: #070D16;
    
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-inverse: #0A111C;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(214, 175, 103, 0.6);
    
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
    
    --glass-bg: rgba(15, 27, 45, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
body.dark-mode ::-webkit-scrollbar-thumb {
    background: var(--color-gold);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titles);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.25;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
    color: var(--color-white);
}

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

.mb-3 {
    margin-bottom: 1.5rem;
}

/* Section Common Layout */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
}

.section-desc {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

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

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(214, 175, 103, 0.5);
}

.btn-gold:hover .btn-icon {
    transform: translateX(4px);
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Dark blue CTA button */
.btn-darkblue {
    background-color: #0F1B2D;
    color: #FFFFFF;
    box-shadow: 0 8px 20px -8px rgba(15, 27, 45, 0.5);
}

.btn-darkblue:hover {
    background-color: #1a2e4a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(15, 27, 45, 0.6);
}

.btn-darkblue:hover .btn-icon {
    transform: translateX(4px);
}

/* Light CTA button (para fundos escuros como o Hero) */
.btn-light {
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-light:hover .btn-icon {
    transform: translateX(4px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-xs {
    padding: 6px 14px;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
    padding: 20px 0;
}

.main-header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-premium);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

/* Handle Logo Styling depending on mode */
body.dark-mode .logo-img,
body.dark-mode .footer-logo,
body.dark-mode .contact-info-logo {
    /* Filters to change the dark slate color #0F1B2D to white, while preserving gold #D6AF67 */
    filter: invert(0.85) brightness(1.2) contrast(1.1);
}

.nav-desktop ul {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(15, 27, 45, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

body.dark-mode .theme-toggle-btn {
    background-color: rgba(255, 255, 255, 0.05);
}

.theme-toggle-btn:hover {
    transform: scale(1.05);
    background-color: rgba(15, 27, 45, 0.08);
    color: var(--color-gold);
}

body.dark-mode .theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.theme-toggle-btn .icon-sun {
    display: none;
}

body.dark-mode .theme-toggle-btn .icon-moon {
    display: none;
}

body.dark-mode .theme-toggle-btn .icon-sun {
    display: block;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* Hamburger active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--bg-card);
    z-index: 1050;
    box-shadow: var(--shadow-hover);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.drawer-logo {
    height: 50px;
    width: auto;
}

body.dark-mode .drawer-logo {
    filter: invert(0.85) brightness(1.2) contrast(1.1);
}

.drawer-close {
    font-size: 1.5rem;
    color: var(--text-main);
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-nav a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    display: block;
}

.drawer-nav a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.drawer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.drawer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.drawer-socials a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 27, 45, 0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #09101B 0%, #0F1B2D 50%, #15243C 100%);
    color: var(--color-white);
    overflow: hidden;
}

/* Particles styling */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-gold);
    opacity: 0.12;
    filter: blur(4px);
    animation: floatParticle 20s infinite ease-in-out;
}

.p1 { width: 15px; height: 15px; top: 15%; left: 10%; animation-duration: 25s; }
.p2 { width: 30px; height: 30px; top: 65%; left: 20%; animation-duration: 35s; opacity: 0.08; }
.p3 { width: 20px; height: 20px; top: 35%; left: 80%; animation-duration: 28s; }
.p4 { width: 10px; height: 10px; top: 75%; left: 85%; animation-duration: 20s; }
.p5 { width: 40px; height: 40px; top: 20%; left: 55%; animation-duration: 40s; opacity: 0.05; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-40px) translateX(20px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-monogram-container {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214,175,103,0.12) 0%, rgba(15,27,45,0) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(214, 175, 103, 0.15);
    position: relative;
    animation: rotateSlow 40s infinite linear;
}

.hero-monogram-img {
    width: 65%;
    height: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(1.8) hue-rotate(350deg);
    opacity: 0.85;
}

.hero-monogram-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--color-gold);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-badge-card {
    position: absolute;
    left: -40px;
    top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    max-width: 250px;
    animation: floatBadge 6s infinite ease-in-out;
}

.badge-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(214, 175, 103, 0.15);
    border: 1px solid rgba(214, 175, 103, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    color: var(--color-gold);
    width: 22px;
    height: 22px;
}

.badge-text h3 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-white);
}

.badge-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-indicator a:hover {
    color: var(--color-gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--color-white);
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0% { top: -15px; }
    80%, 100% { top: 40px; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    position: relative;
    padding-right: 30px;
}

.about-image-frame {
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 16px;
    background-color: var(--bg-card);
}

.about-image-frame::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-primary);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    padding: 40px;
    text-align: center;
    position: relative;
}

body.dark-mode .about-image-placeholder {
    background-color: #070D16;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.placeholder-text {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    color: var(--color-white);
}

.placeholder-text small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-gold);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.dark-mode .about-experience-badge {
    background-color: var(--bg-card);
}

.exp-number {
    font-family: var(--font-titles);
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 4px;
    white-space: nowrap;
}

.about-lead {
    font-size: 1.3rem;
    font-family: var(--font-titles);
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.5;
}

body.dark-mode .about-lead {
    color: var(--color-gold);
}

.about-body {
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Diferenciais */
.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.diferencial-card {
    display: flex;
    gap: 16px;
}

.diferencial-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(15, 27, 45, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

body.dark-mode .diferencial-icon {
    background-color: rgba(255, 255, 255, 0.03);
}

.diferencial-icon svg {
    width: 20px;
    height: 20px;
}

.diferencial-info h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

body.dark-mode .diferencial-info h3 {
    color: var(--color-white);
}

.diferencial-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SERVICES (AREAS OF PRACTICE) SECTION
   ========================================================================== */

.services-section {
    background-color: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 50px 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

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

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    background-color: rgba(15, 27, 45, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

body.dark-mode .service-icon-box {
    background-color: rgba(255, 255, 255, 0.03);
}

.service-card:hover .service-icon-box {
    background-color: var(--color-primary);
    color: var(--color-gold);
    border-color: var(--color-primary);
}

body.dark-mode .service-card:hover .service-icon-box {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
}

.service-icon-box svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-bullets {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.service-bullets li svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    border-bottom: 1.5px solid var(--color-gold);
    padding-bottom: 4px;
}

body.dark-mode .service-link {
    color: var(--color-white);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

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

body.dark-mode .service-link:hover {
    color: var(--color-gold);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE) SECTION
   ========================================================================== */

.workflow-section {
    background-color: var(--bg-body);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -40px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--bg-body);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.timeline-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

body.dark-mode .timeline-content h3 {
    color: var(--color-gold);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Timeline interaction */
.timeline-item:hover .timeline-badge {
    background-color: var(--color-gold);
    color: var(--color-primary);
    transform: scale(1.2);
}

.timeline-item:hover .timeline-content {
    border-color: var(--color-gold);
    transform: translateX(5px);
}

/* ==========================================================================
   STATS (AUTHORITY) SECTION
   ========================================================================== */

.stats-section {
    background: linear-gradient(135deg, #09101B 0%, #0F1B2D 100%);
    color: var(--color-white);
    padding: 80px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(214, 175, 103, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-family: var(--font-titles);
    font-size: 3.5rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    background-color: var(--bg-body);
}

.testimonials-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 60px 50px;
    box-shadow: var(--shadow-premium);
    position: relative;
    text-align: center;
}

.quote-icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
    color: var(--color-gold);
    opacity: 0.3;
}

.quote-icon-box svg {
    width: 44px;
    height: 44px;
}

.testimonial-text {
    font-family: var(--font-titles);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 40px;
}

.testimonial-client {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.client-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid var(--color-gold);
}

body.dark-mode .client-avatar-placeholder {
    background-color: #070D16;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
    color: var(--color-primary);
}

body.dark-mode .client-name {
    color: var(--color-white);
}

.client-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gray-sec);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    background-color: var(--bg-body);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(214, 175, 103, 0.4);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

body.dark-mode .faq-trigger {
    color: var(--color-white);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-gold);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    border-color: var(--color-gold);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-trigger {
    color: var(--color-gold);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
}

.contact-info-panel {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 50px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

body.dark-mode .contact-info-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.contact-info-logo {
    height: 55px;
    width: auto;
    margin-bottom: 12px;
}

.info-logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    display: block;
    margin-top: -10px;
    margin-bottom: 20px;
}

.contact-tagline-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.info-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(214, 175, 103, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.info-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.info-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.info-text a, .info-text p {
    font-size: 0.95rem;
    color: var(--color-white);
}

.info-text a:hover {
    color: var(--color-gold);
}

/* Map Integration Styling */
.map-container {
    margin-top: 20px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    height: 160px;
    background-color: #0A111C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 20px;
    gap: 10px;
}

.map-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.map-placeholder span {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Form Panel */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

.form-row {
    margin-bottom: 24px;
    width: 100%;
}

.form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

body.dark-mode .form-group label {
    color: var(--color-white);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.textarea-wrapper textarea {
    padding-left: 16px; /* Textareas don't need input icons by design for space */
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(214, 175, 103, 0.15);
}

/* Error validation styling */
.form-group.has-error .input-wrapper input,
.form-group.has-error .input-wrapper select,
.form-group.has-error .input-wrapper textarea {
    border-color: #EF4444;
    background-color: rgba(239, 68, 68, 0.02);
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 4px;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Form success message */
.form-success-banner {
    display: none;
    margin-top: 24px;
    padding: 20px;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    align-items: flex-start;
    gap: 16px;
    color: #065F46;
}

body.dark-mode .form-success-banner {
    color: #A7F3D0;
    background-color: rgba(16, 185, 129, 0.05);
}

.success-icon {
    width: 24px;
    height: 24px;
    color: #10B981;
    flex-shrink: 0;
}

.form-success-banner h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: inherit;
    margin-bottom: 4px;
}

.form-success-banner p {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.9;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .main-footer {
    background-color: #070D16;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 24px;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(214, 175, 103, 0.1);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.footer-social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.links-col ul {
    display: grid;
    gap: 12px;
}

.links-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.links-col a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.contact-col p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-col p svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.8rem;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   INTERACTIVE FLOATS & DYNAMIC ELEMENTS
   ========================================================================== */

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20BA5A;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Tooltip animation on hover */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-premium);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding-top: 20px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-badge-card {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
        animation: floatBadgeMobile 6s infinite ease-in-out;
    }

    @keyframes floatBadgeMobile {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-10px); }
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-container {
        padding-right: 0;
        max-width: 450px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }

    .contact-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .nav-desktop, .btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 40px 24px;
    }

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

    .faq-trigger {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-content-inner {
        padding: 0 20px 20px;
    }

    .contact-info-panel, .contact-form-panel {
        padding: 30px 20px;
    }

    .form-row.split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a40 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

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

.blog-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--primary-color);
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 27, 45, 0.8) 100%);
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.blog-card-excerpt {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--light-text);
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.blog-card-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    width: 16px;
    height: 16px;
}

/* Article Page Layout */
.article-page {
    background-color: var(--white);
    padding-top: 120px;
}

.article-header {
    background: var(--bg-light);
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    width: 14px;
    height: 14px;
}

.article-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    color: var(--light-text);
    font-size: 0.95rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-item i {
    color: var(--gold);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.article-body h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 20px 0 20px 20px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin: 30px 0;
    background: var(--bg-light);
    font-style: italic;
    color: var(--primary-color);
    border-radius: 0 8px 8px 0;
}

/* Share Buttons */
.article-share {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Related Articles */
.related-articles {
    background: var(--bg-light);
    padding: 80px 0;
}

.related-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-title { font-size: 2.5rem; }
    .article-title { font-size: 2.2rem; }
    .article-content { padding: 40px 20px; }
    .article-body { font-size: 1rem; }
    .article-body h2 { font-size: 1.8rem; }
}
