/* ============================================================
   KAIRO ÍCARO — ADVOGADOS ASSOCIADOS
   Design System & Styles
   Colors from official brand identity:
     Azul:  #0F2944
     Verde (positivo): #86E600
     Verde (negativo): #97F513
   Typography: Montserrat (UI) + Libre Baskerville (headings)
   ============================================================ */

/* Font pairing: serif for authority */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors */
    --azul: #0F2944;
    --azul-dark: #091b30;
    --azul-light: #163655;
    --verde: #86E600;
    --verde-neg: #97F513;
    --verde-dark: #6bbf00;
    --verde-glow: rgba(134, 230, 0, 0.15);
    --verde-glow-strong: rgba(134, 230, 0, 0.3);
    --verde-glow-subtle: rgba(134, 230, 0, 0.06);
    --verde-border: rgba(134, 230, 0, 0.2);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-50: #F0F3F7;
    --gray-100: #E2E7EF;
    --gray-200: #CBD3DF;
    --gray-300: #A0ADBF;
    --gray-400: #7A8A9F;
    --gray-500: #5A6B80;
    --gray-600: #3E4F63;
    --gray-700: #2C3A4D;
    --text-primary: #0F2944;
    --text-secondary: #5A6B80;
    --text-light: rgba(255, 255, 255, 0.85);

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 41, 68, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 41, 68, 0.1);
    --shadow-lg: 0 8px 32px rgba(15, 41, 68, 0.12);
    --shadow-xl: 0 16px 48px rgba(15, 41, 68, 0.16);
    --shadow-green: 0 4px 20px rgba(134, 230, 0, 0.25);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-green {
    color: var(--verde);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--verde);
    margin-bottom: 18px;
    position: relative;
    padding: 0 48px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 32px;
    height: 2px;
    background: var(--verde);
    transform: translateY(-50%);
}

.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-title {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-header .section-tag {
    padding: 0 48px;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
    display: block;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--verde);
    color: var(--azul);
    border-color: var(--verde);
}

.btn-primary:hover {
    background: var(--verde-neg);
    border-color: var(--verde-neg);
    box-shadow: var(--shadow-green);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--verde);
    color: var(--verde);
    background: var(--verde-glow-subtle);
}

.btn-cta {
    background: var(--white);
    color: var(--azul);
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-cta:hover {
    background: var(--verde);
    color: var(--azul);
    box-shadow: var(--shadow-green);
    transform: translateY(-3px);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(15, 41, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    position: relative;
    height: 40px;
}

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

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

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

.nav-link.nav-cta {
    background: var(--verde);
    color: var(--azul);
    font-weight: 600;
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    background: var(--verde-neg);
    box-shadow: var(--shadow-green);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Parallax scroll effect for hero content */
.hero-content.parallax-active {
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 41, 68, 0.92) 0%,
        rgba(15, 41, 68, 0.75) 40%,
        rgba(15, 41, 68, 0.6) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero:hover .hero-particles {
    pointer-events: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--verde);
    padding: 8px 20px;
    border: 1px solid var(--verde-border);
    border-radius: 50px;
    margin-bottom: 32px;
    background: rgba(15, 41, 68, 0.45);
}

.hero-title {
    font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .text-green {
    color: var(--verde);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 36px auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-prefix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--verde);
    margin-right: 2px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--verde);
    display: inline;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--verde);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    animation: bounceDown 2s ease-in-out infinite;
    cursor: pointer;
}

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

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--azul);
    font-weight: 600;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: var(--verde-glow);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--verde-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-dark);
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--azul);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-accent-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 41, 68, 0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 400;
}

.about-accent-card strong {
    color: var(--verde);
}

.accent-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* ==================== BRAZIL MAP WIDGET ==================== */
.brazil-map-widget {
    background: var(--azul);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    overflow: hidden;
    position: relative;
}

.map-header { margin-bottom: 16px; }

.map-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--verde);
}

.brazil-svg {
    width: 100%;
    max-height: 420px;
}

/* Region colors */
.state-active {
    stroke: var(--azul);
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-norte { fill: #2ECC71; fill-opacity: 0.78; }
.state-centro-oeste { fill: #E67E22; fill-opacity: 0.78; }
.state-sudeste { fill: #3498DB; fill-opacity: 0.78; }
.state-sul { fill: #E67E22; fill-opacity: 0.78; }
.state-nordeste { fill: #E67E22; fill-opacity: 0.78; }

.state-active:hover {
    fill-opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.25));
}

.state-hq {
    fill-opacity: 1 !important;
    stroke: #fff;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(46,204,113,0.5));
}

.state-inactive {
    fill: rgba(255,255,255,0.06);
    stroke: rgba(255,255,255,0.08);
    stroke-width: 0.5;
}

.state-inactive:hover {
    fill: rgba(255,255,255,0.12);
}

/* State labels */
.state-label {
    font-size: 10px;
    font-weight: 700;
    text-anchor: middle;
    pointer-events: none;
    font-family: var(--font-primary), 'Inter', sans-serif;
}

.label-active {
    fill: #fff;
}

.label-inactive {
    fill: rgba(255,255,255,0.15);
}

/* HQ pin animation */
.hq-pin {
    animation: hqPulse 2.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes hqPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Tooltip */
.state-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
    white-space: nowrap;
}

/* ==================== PRODUTOS JURÍDICOS ==================== */
.produtos-section { background: var(--off-white); }

.produto-area {
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(15,41,68,0.04);
}

.produto-area:hover {
    box-shadow: 0 4px 16px rgba(15,41,68,0.08);
}

.produto-area.open {
    border-color: var(--verde);
    box-shadow: 0 8px 32px rgba(15,41,68,0.1), 0 0 0 1px var(--verde-glow);
}

.produto-area-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.2s;
}

.produto-area-header:hover { background: var(--off-white); }

.produto-area-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.produto-area:hover .produto-area-icon {
    transform: scale(1.05);
}

.produto-area-title { flex: 1; }
.produto-area-title h3 { font-size: 1.05rem; font-weight: 700; color: var(--azul); margin-bottom: 2px; }
.produto-count { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }

.produto-chevron {
    color: var(--gray-300);
    transition: transform 0.3s ease;
    min-width: 20px;
}

.produto-area.open .produto-chevron { transform: rotate(180deg); color: var(--verde); }

.produto-area-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.produto-area.open .produto-area-body { max-height: 800px; }

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 24px 24px;
}

.produto-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--verde), var(--verde-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(15, 41, 68, 0.12), 0 0 0 1px var(--verde-glow);
    transform: translateY(-6px);
}

.produto-card:hover::before {
    opacity: 1;
}

.produto-tier {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--verde-glow-subtle), var(--verde-glow));
    color: var(--verde-dark);
    border: 1px solid var(--verde-border);
}

.produto-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 6px;
    line-height: 1.3;
}

.produto-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 12px;
}

.produto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.produto-tags span {
    font-size: 0.62rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--off-white);
    color: var(--gray-500);
    border: 1px solid var(--gray-100);
    transition: all 0.2s;
}

.produto-card:hover .produto-tags span {
    background: var(--verde-glow-subtle);
    border-color: var(--verde-border);
    color: var(--verde-dark);
}

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

@media (max-width: 768px) {
    .produtos-grid { grid-template-columns: 1fr; }
    .produto-area.open .produto-area-body { max-height: 2000px; }
}

/* ==================== DIFFERENTIALS ==================== */
.differentials {
    background: var(--white);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.diff-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    background: var(--azul);
    border-color: var(--azul);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.diff-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-100);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    transition: var(--transition-fast);
}

.diff-card:hover .diff-number {
    color: var(--verde-glow);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: var(--verde-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-dark);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.diff-card:hover .diff-icon {
    background: var(--verde);
    color: var(--azul);
}

.diff-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.diff-card:hover h3 {
    color: var(--white);
}

.diff-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: var(--transition-fast);
}

.diff-card:hover p {
    color: var(--text-light);
}

/* ==================== NEWS / BLOG ==================== */
.news {
    background: var(--off-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--verde);
    color: var(--azul);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul);
    margin: 10px 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--verde-dark);
}

.news-link:hover {
    color: var(--azul);
    gap: 12px;
}

/* ==================== CONTENT TYPE FILTERS ==================== */
.content-type-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.content-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 2px solid var(--gray-100);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.content-filter:hover {
    border-color: var(--verde);
    color: var(--azul);
}

.content-filter.active {
    background: var(--azul);
    border-color: var(--azul);
    color: var(--white);
}

/* Content type badges on cards */
.news-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.news-type-badge[data-type="artigo"] {
    background: var(--verde-glow);
    color: var(--verde-dark);
}

.news-type-badge[data-type="alerta"] {
    background: rgba(230, 81, 0, 0.1);
    color: #E65100;
}

.news-type-badge[data-type="guia"] {
    background: rgba(21, 101, 192, 0.1);
    color: #1565C0;
}

/* Card without image (text-only) */
.news-card-text {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

.news-card-text:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-card-text .news-date {
    font-size: 0.75rem;
    color: var(--gray-300);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul);
    margin: 8px 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-text p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-text .news-category {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .content-type-filters {
        gap: 6px;
    }
    .content-filter {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ==================== TEAM / EQUIPE — FIFA CARDS ==================== */
.team-section {
    background: var(--azul);
    overflow: hidden;
}

.team-section .section-tag { color: var(--verde); }
.team-section .section-title { color: var(--white); }
.team-section .section-desc { color: var(--text-light); }

.fifa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fifa-card {
    perspective: 800px;
}

.fifa-card-inner {
    background: rgba(15, 41, 68, 0.65);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 28px 22px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
}

.fifa-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--verde);
    opacity: 0.4;
    transition: opacity 0.4s;
}

.fifa-card:hover .fifa-card-inner {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 12px 40px rgba(0,0,0,0.15);
}

.fifa-card:hover .fifa-card-inner::before {
    opacity: 0.8;
}

.fifa-card:hover .fifa-card-inner::before {
    background: linear-gradient(90deg, transparent, var(--verde), transparent);
}

/* Gold Card (Founder) */
.fifa-card-gold .fifa-card-inner {
    background: linear-gradient(145deg, rgba(255,215,0,0.12), rgba(255,180,0,0.03));
    border-color: rgba(255,215,0,0.25);
    box-shadow: inset 0 0 30px rgba(255,215,0,0.03);
}

.fifa-card-gold .fifa-card-inner::before {
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
}

.fifa-card-gold:hover .fifa-card-inner {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 50px rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.5);
}

.fifa-card-gold .fifa-rating-main {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.fifa-card-gold .fifa-position {
    background: rgba(255,215,0,0.2);
    color: #FFD700;
}

/* Silver Card */
.fifa-card-silver .fifa-card-inner {
    background: linear-gradient(145deg, rgba(192,192,192,0.1), rgba(192,192,192,0.03));
    border-color: rgba(192,192,192,0.2);
}

.fifa-card-silver .fifa-card-inner::before {
    background: linear-gradient(90deg, transparent, rgba(192,192,192,0.4), transparent);
}

.fifa-card-silver .fifa-rating-main {
    color: #C0C0C0;
}

/* Rating - hidden (removed from cards, using 0-10 scale) */
.fifa-rating-main {
    display: none;
}

.fifa-position {
    display: none;
}

/* Photo */
.fifa-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.15);
}

.fifa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fifa-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}

.fifa-card-gold .fifa-photo {
    border-color: rgba(255,215,0,0.4);
    width: 90px;
    height: 90px;
}

/* Name & Role */
.fifa-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.3;
}

.fifa-role {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

/* Stats Bar */
.fifa-stats {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.fifa-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px;
}

.fifa-stat-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--verde);
    line-height: 1;
}

.fifa-card-gold .fifa-stat-value {
    color: #FFD700;
}

.fifa-stat-label {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.fifa-specialty {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.team-footer-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .fifa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fifa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fifa-card-inner {
        padding: 18px 14px 14px;
    }
    .fifa-photo {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .fifa-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ==================== AWARDS / PRÊMIOS ==================== */
.awards-section {
    background: var(--off-white);
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.award-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition-medium);
}

.award-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.award-card-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    text-align: left;
    background: linear-gradient(135deg, var(--azul), var(--azul-dark));
    border-color: transparent;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(15,41,68,0.2);
}

.award-card-main:hover {
    border-color: var(--verde);
}

.award-card-main h3 {
    color: var(--white);
    font-size: 1.4rem;
}

.award-card-main .award-source {
    color: var(--verde);
}

.award-card-main .award-desc {
    color: var(--text-light);
}

.award-seal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-glow), var(--verde-glow-subtle));
    border: 2px solid var(--verde-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-seal-sm {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.award-seal-inner {
    text-align: center;
    line-height: 1.2;
}

.award-year {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--verde);
}

.award-seal-sm .award-year {
    font-size: 1.1rem;
}

.award-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--verde);
    opacity: 0.7;
    margin-top: 2px;
}

.award-seal-img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}
.award-seal-img-sm {
    width: 80px;
    margin: 0 auto 16px;
}

.award-seals-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.award-seal-img-lg {
    width: 140px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s;
    flex-shrink: 0;
}

.award-seal-img-lg:hover {
    transform: scale(1.08);
}

.award-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 4px;
}

.award-source {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--verde-dark);
    margin-bottom: 10px;
}

.award-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.award-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--verde);
    text-decoration: none;
    transition: var(--transition-fast);
}

.award-link:hover {
    gap: 10px;
    color: var(--verde-neg);
}

.award-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--verde-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-dark);
    margin: 0 auto 16px;
}

@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .award-card-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
    .award-card-main {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
    }
    .award-seals-row {
        justify-content: center;
    }
    .award-seal-img-lg {
        width: 120px;
    }
    .award-seal {
        margin: 0 auto;
    }
}

/* ==================== DASHBOARD KIAA ==================== */
.dashboard-section {
    background: var(--azul);
}

.dashboard-section .section-tag { color: var(--verde); }
.dashboard-section .section-title { color: var(--white); }
.dashboard-section .section-desc { color: var(--text-light); }

.dashboard-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--verde);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--verde-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dashboard-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dashboard-tab:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.dashboard-tab.active {
    background: var(--verde);
    color: var(--azul);
    border-color: var(--verde);
}

.dashboard-tab svg {
    flex-shrink: 0;
}

/* Dashboard Panels */
.dashboard-panel {
    display: none;
}

.dashboard-panel.active {
    display: block;
    animation: fadeInPanel 0.35s ease-out;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Cards Grid */
.dash-cards-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Hero Card (main platform link) */
.dash-hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-decoration: none;
    transition: var(--transition-medium);
}

.dash-hero-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--verde-border);
    transform: translateY(-4px);
}

.dash-hero-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-hero-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.35;
}

.dash-hero-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.dash-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde);
    transition: var(--transition-fast);
}

.dash-hero-card:hover .dash-hero-link {
    gap: 10px;
}

/* Links Column */
.dash-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--verde);
    color: var(--azul);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-green:hover {
    background: var(--verde-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--verde-glow);
}

/* Links Column */
.dash-links-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dash-link-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--verde-border);
    transform: translateX(4px);
}

.dash-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-link-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.dash-link-card p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

/* ==================== CASES KIAA ==================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid var(--verde);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition-medium);
}

.case-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.case-card-featured {
    grid-column: span 2;
}

.case-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.case-badge-success {
    background: var(--verde-glow);
    color: var(--verde);
}

.case-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.35;
}

.case-area {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--verde);
    margin-bottom: 10px;
}

.case-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.case-result-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
}

.case-result-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--verde);
}

/* ==================== INFORMATIVOS SETORIAIS ==================== */
.setoriais-section {
    background: var(--off-white);
    padding: 100px 0;
}

.setoriais-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.setorial-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.setorial-tab:hover {
    border-color: var(--verde);
    color: var(--verde-dark);
}

.setorial-tab.active {
    background: var(--verde);
    color: var(--azul);
    border-color: var(--verde);
}

.setorial-tab svg {
    flex-shrink: 0;
}

/* Setorial Panels */
.setorial-panel {
    display: none;
}

.setorial-panel.active {
    display: block;
    animation: fadeInPanel 0.35s ease-out;
}

.setorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.setorial-source-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-fast);
}

.setorial-source-card:hover {
    border-color: var(--verde);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.setorial-gov {
    border-left: 4px solid var(--verde);
}

.setorial-source-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 8px;
}

.setorial-source-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 14px;
}

.setorial-source-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--verde-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.setorial-source-card a:hover {
    color: var(--verde);
    gap: 10px;
}

/* ==================== DASHBOARD & SETORIAIS RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .dash-cards-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-card-featured {
        grid-column: span 2;
    }
    .setorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-tabs,
    .setoriais-tabs {
        gap: 6px;
    }
    .dashboard-tab,
    .setorial-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .dash-cards-grid {
        grid-template-columns: 1fr;
    }
    .dash-hero-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .case-card-featured {
        grid-column: span 1;
    }
    .setorial-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    background: var(--azul);
    padding: 80px 0;
}

.newsletter-wrapper {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--verde-glow);
    border: 1px solid var(--verde-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--verde);
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 32px;
}

.newsletter-form {
    text-align: left;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-field input,
.newsletter-field select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.newsletter-field input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-field select {
    color: rgba(255,255,255,0.4);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.newsletter-field select option {
    background: var(--azul);
    color: var(--white);
}

.newsletter-field input:focus,
.newsletter-field select:focus {
    border-color: var(--verde);
    background: rgba(255,255,255,0.1);
}

.newsletter-field select:valid {
    color: var(--white);
}

.newsletter-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--verde);
    color: var(--azul);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-medium);
}

.newsletter-btn:hover {
    background: var(--verde-neg);
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 12px;
    text-align: center;
}

.newsletter-disclaimer a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
}

.newsletter-success {
    text-align: center;
    padding: 20px 0;
}

.newsletter-success svg {
    color: var(--verde);
    margin-bottom: 16px;
}

.newsletter-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-success p {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .newsletter-fields {
        grid-template-columns: 1fr;
    }
    .newsletter-content h2 {
        font-size: 1.4rem;
    }
}

/* ==================== ANIMATED GRADIENT UTILITY ==================== */
.gradient-alive {
    position: relative;
    overflow: hidden;
}

.gradient-alive::after {
    content: '';
    position: absolute;
    inset: -30%;
    width: 160%;
    height: 160%;
    background:
        radial-gradient(ellipse 40% 50% at 25% 35%, rgba(134,230,0,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 75% 65%, rgba(21,101,192,0.04) 0%, transparent 60%);
    animation: gradientDrift 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--azul);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-bg-pattern {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(ellipse 40% 50% at 30% 40%, rgba(134,230,0,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 35% 45% at 70% 60%, rgba(21,101,192,0.05) 0%, transparent 60%);
    animation: gradientDrift 12s ease-in-out infinite alternate;
}

@keyframes gradientDrift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, -3%) rotate(2deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--azul-dark);
    padding: 80px 0 0;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--verde);
    color: var(--azul);
    transform: translateY(-2px);
}

.footer-links-group h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--verde);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--verde);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

.contact-item a:hover {
    color: var(--verde);
}

.map-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
    text-decoration: none;
}

.map-link:hover {
    background: var(--verde-glow);
    border-color: var(--verde-border);
    color: #86E600;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: var(--transition-medium);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--azul-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: var(--transition-medium);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 1rem;
        padding: 12px 16px;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

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

    .map-links {
        flex-wrap: wrap;
    }
}

/* ============================================================
   LGPD COOKIE BANNER
   ============================================================ */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 41, 68, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUpBanner 0.5s ease-out;
}

@keyframes slideUpBanner {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.lgpd-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.lgpd-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.lgpd-content a {
    color: var(--verde);
    text-decoration: underline;
}

.lgpd-btn {
    white-space: nowrap;
    padding: 10px 28px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .lgpd-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .lgpd-content p {
        font-size: 0.8rem;
    }
}

/* ============================================================
   NEWS LINK "EM BREVE"
   ============================================================ */
.news-link-soon {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* ============================================================
   FOOTER MAP
   ============================================================ */
.footer-map {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-map iframe:hover {
    filter: grayscale(0%) brightness(1);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg-img {
        animation: none !important;
    }
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--verde);
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-link:focus-visible {
    outline-offset: 6px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--verde);
    color: var(--azul);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ==================== INFORMATIVOS DOS TRIBUNAIS ==================== */
.informativos-section {
    background: var(--off-white);
}

.tribunal-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tribunal-tab {
    padding: 8px 20px;
    border: 2px solid var(--gray-100);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tribunal-tab:hover {
    border-color: var(--verde);
    color: var(--azul);
}

.tribunal-tab.active {
    background: var(--azul);
    border-color: var(--azul);
    color: var(--white);
}

.informativos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.informativo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

.informativo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.informativo-header {
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tribunal-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.tribunal-badge[data-tribunal="STF"] { background: #1B3A5C; }
.tribunal-badge[data-tribunal="STJ"] { background: #2E7D32; }
.tribunal-badge[data-tribunal="TRF1"] { background: #1565C0; }
.tribunal-badge[data-tribunal="TRT11"] { background: #E65100; }
.tribunal-badge[data-tribunal="TST"] { background: #6A1B9A; }

.informativo-date {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.informativo-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.informativo-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--azul);
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.informativo-body p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex: 1;
}

.informativo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--verde-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.informativo-link:hover {
    gap: 10px;
    color: var(--verde);
}

.informativos-footer {
    text-align: center;
    margin-top: 32px;
}

.btn-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--azul);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--azul);
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-ver-mais:hover {
    background: var(--azul);
    color: var(--white);
}

.informativos-updated {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 16px;
}

.informativos-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.informativos-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text-secondary);
}

/* Responsive informativos */
@media (max-width: 1024px) {
    .informativos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .informativos-grid {
        grid-template-columns: 1fr;
    }
    .tribunal-tabs {
        gap: 6px;
    }
    .tribunal-tab {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ==================== ESG / COMPROMISSO AMAZÔNIA ==================== */
.esg-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--azul) 0%, var(--azul-dark) 100%);
    position: relative;
    overflow: hidden;
}

.esg-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--verde-glow-subtle) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.esg-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.esg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--verde-glow);
    border-radius: 50%;
    color: var(--verde);
}

.esg-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.esg-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.esg-pillar {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

.esg-pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--verde);
    transform: translateY(-4px);
}

.esg-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--verde-glow);
    border-radius: var(--radius-sm);
    color: var(--verde);
    margin: 0 auto 16px auto;
}

.esg-pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--verde);
    margin-bottom: 8px;
}

.esg-pillar p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .esg-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .esg-section {
        padding: 40px 0;
    }
}

/* ==================== PRAZOS REGULATÓRIOS ==================== */
.prazos-strip {
    margin-bottom: 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.prazos-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--azul);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.prazos-header svg {
    color: var(--verde);
}

.prazos-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prazo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.prazo-badge:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.prazo-urgente {
    border-color: #ef4444;
    background: #fef2f2;
}

.prazo-area {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prazo-titulo {
    font-weight: 600;
    color: var(--azul);
}

.prazo-countdown {
    font-weight: 700;
    color: var(--verde-dark);
    font-size: 0.78rem;
}

.prazo-urgente .prazo-countdown {
    color: #ef4444;
}

@media (max-width: 768px) {
    .prazos-badges {
        flex-direction: column;
    }
    .prazo-badge {
        width: 100%;
    }
}

/* ==================== MATERIA TABS (Subject Filters) ==================== */

.materia-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.materia-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-right: 8px;
    font-weight: 500;
}

.materia-tab {
    padding: 6px 16px;
    border: 2px solid var(--gray-100);
    border-radius: 100px;
    background: var(--white);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.materia-tab:hover {
    border-color: var(--verde);
    color: var(--azul);
}

.materia-tab.active {
    background: var(--azul);
    border-color: var(--azul);
    color: var(--white);
}

@media (max-width: 768px) {
    .materia-tabs {
        gap: 4px;
    }
    .materia-tab {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    .materia-label {
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 4px;
    }
}

/* ==================== CLIENTS CAROUSEL ==================== */

.clients-section {
    background: var(--white);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 48px;
    animation: clients-scroll 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-duration: 60s;
}

.client-logo {
    min-width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 12px;
}

.client-logo img {
    max-height: 65px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

/* Carousel wrapper and arrows */
.clients-carousel-wrapper {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--azul);
    color: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    background: var(--verde);
    color: var(--azul);
}

.carousel-arrow-left {
    left: -20px;
}

.carousel-arrow-right {
    right: -20px;
}

@keyframes clients-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    .carousel-arrow-left {
        left: -10px;
    }
    .carousel-arrow-right {
        right: -10px;
    }
    .client-logo {
        min-width: 120px;
        height: 60px;
    }
    .clients-track {
        gap: 32px;
    }
}

/* ==================== RADAR AMBIENTAL ==================== */
.radar-container { max-width: 900px; margin: 0 auto; }

.radar-header { text-align: center; margin-bottom: 32px; }
.radar-header h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.radar-header p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.radar-search { margin-bottom: 32px; }

.radar-search-tabs {
    display: flex; justify-content: center; gap: 8px; margin-bottom: 16px;
}

.radar-search-tab {
    padding: 8px 20px; border: 2px solid rgba(255,255,255,0.12); border-radius: 50px;
    background: transparent; color: rgba(255,255,255,0.5); font-family: inherit;
    font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}

.radar-search-tab.active {
    background: var(--verde); border-color: var(--verde); color: var(--azul);
}

.radar-input-group {
    display: flex; gap: 12px; max-width: 600px; margin: 0 auto;
}

.radar-input {
    flex: 1; padding: 14px 20px; border: 2px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md); background: rgba(255,255,255,0.06);
    color: var(--white); font-family: inherit; font-size: 0.9rem; outline: none;
}

.radar-input::placeholder { color: rgba(255,255,255,0.3); }
.radar-input:focus { border-color: var(--verde); background: rgba(255,255,255,0.1); }

.radar-search-btn {
    display: flex; align-items: center; gap: 8px; padding: 14px 24px;
    background: var(--verde); color: var(--azul); border: none; border-radius: var(--radius-md);
    font-family: inherit; font-size: 0.9rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s;
}

.radar-search-btn:hover { background: var(--verde-neg); transform: translateY(-2px); }

.radar-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.radar-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 24px; transition: all 0.3s;
}

.radar-card:hover { background: rgba(255,255,255,0.08); border-color: var(--verde-border); transform: translateY(-4px); }

.radar-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

.radar-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.radar-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin-bottom: 14px; }

.radar-card-link {
    font-size: 0.8rem; font-weight: 600; color: var(--verde); text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
}

.radar-card-link:hover { gap: 8px; }
.radar-card-link-green { color: var(--verde); }

.radar-card-cta { border-color: var(--verde-border); background: var(--verde-glow-subtle); }

@media (max-width: 768px) {
    .radar-cards-grid { grid-template-columns: 1fr; }
    .radar-input-group { flex-direction: column; }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    nav,
    footer,
    .area-footer,
    .whatsapp-float,
    .lgpd-banner,
    .lgpd-btn {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }

    a { color: #000 !important; text-decoration: underline; }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* ==================== JURIMETRIA KIAA ==================== */
.jurimetria-kiaa-section { background: var(--off-white); }

/* Screen reader only - WCAG */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content - WCAG 2.4.1 */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: #86E600;
    color: #0F2944;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* WCAG 2.1 AA - Focus visible */
:focus-visible {
    outline: 2px solid #86E600;
    outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #86E600;
    outline-offset: 2px;
}
