/* ===============================
   BASE STYLES
   =============================== */

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

:root {
    /* Cores principais - Nova identidade visual */
    --primary-color: #083FCF;
    --secondary-color: #FC7D55;
    --tertiary-color: #B073FF;
    --quaternary-color: #FFE4DC;
    --quinary-color: #FFE4DC;
    --senary-color: #EFE2FF;
    
    /* Cores de apoio */
    --accent-color: #B073FF;
    --text-color: #1F2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --background-light: #EFE2FF;
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-family-headings: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-family-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border radius */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--background-color);
}

/* ===============================
   TYPOGRAPHY
   =============================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===============================
   MARKDOWN UTILITIES (Tamanhos levemente maiores)
   =============================== */

/* Use em blocos/linhas de Introdução */
.md-intro {
    font-size: 1.125em; /* ~12.5% maior que o texto base do contexto */
}

/* Use em blocos/linhas de Conclusão */
.md-conclusao {
    font-size: 1.125em;
}

/* Use em itens de tópicos (listas) */
.md-topico {
    font-size: 1.10em; /* ~10% maior que o texto base do contexto */
}

p {
    font-family: var(--font-family-body);
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--secondary-color);
}

/* ===============================
   BUTTONS - Componente de Botões
   =============================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--spacing-md);
    height: 60px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 0 var(--spacing-lg);
    height: 60px;
    font-size: 1.125rem;
}

/* ===============================
   NAVBAR - Navegação Principal
   =============================== */

.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
}

.navbar-brand .navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--background-color);
    font-family: var(--font-family-body);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
}

.navbar-cta {
    margin-left: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.navbar-cta .btn {
    height: 45px;
    padding: 0 var(--spacing-md);
    font-size: 0.9rem;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 1055px) {
    .navbar-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-container {
        height: 55px;
    }
    
    .navbar-cta {
        display: none; /* Esconder completamente os botões no mobile */
    }
    
    /* Classes para menu mobile ativo */
    .navbar-menu.active {
        display: flex !important;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    
    .navbar-menu.active .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .navbar-menu.active .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu.active .nav-link {
        padding: var(--spacing-md) var(--spacing-md);
        width: 100%;
        text-align: left;
        border-radius: 0;
        font-size: 1.1rem;
        font-weight: 500;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    /* Animação do hambúrguer ativo (transforma em X) */
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile nav-links adjustments */
    .navbar-menu.active .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    /* Mobile Mega Menu - Oculto por padrão */
    .mega-menu {
        display: none;
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mega-menu-content {
        padding: 0;
    }
    
    .mega-menu-item {
        padding: var(--spacing-lg) var(--spacing-md);
        flex-direction: row;
        min-height: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        align-items: center;
        text-decoration: none;
        color: white;
        transition: background-color 0.3s ease;
        background: transparent;
        border: none;
        display: flex;
    }
    
    .mega-menu-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
        border: none;
        box-shadow: none;
    }
    
    .mega-menu-item:last-child {
        border-bottom: none;
    }
    
    .mega-menu-item-icon {
        width: 40px;
        height: 40px;
        margin-right: var(--spacing-md);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius-sm);
        background-color: rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }
    
    .mega-menu-item-icon svg {
        width: 20px;
        height: 20px;
        color: white;
        fill: currentColor;
        display: block;
        opacity: 1;
    }
    
    .mega-menu-item-content h5 {
        font-size: 1.1rem;
        font-weight: 500;
        margin: 0;
        color: white;
    }
    
    .mega-menu-item-crm:hover,
    .mega-menu-item-whatsapp:hover,
    .mega-menu-item-marketing:hover,
    .mega-menu-item-agente:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
        border: none;
        box-shadow: none;
    }
    
    .mega-menu-item-crm:hover .mega-menu-item-icon,
    .mega-menu-item-whatsapp:hover .mega-menu-item-icon,
    .mega-menu-item-marketing:hover .mega-menu-item-icon,
    .mega-menu-item-agente:hover .mega-menu-item-icon {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        transform: none;
    }
    
    .mega-menu-item-crm:hover .mega-menu-item-content h5,
    .mega-menu-item-whatsapp:hover .mega-menu-item-content h5,
    .mega-menu-item-marketing:hover .mega-menu-item-content h5,
    .mega-menu-item-agente:hover .mega-menu-item-content h5 {
        color: white;
    }
    
    /* Mobile Mega Menu - Mostrar quando ativo */
    .navbar-menu.active .nav-item-dropdown.active .mega-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        transition: all 0.3s ease !important;
    }
    
    /* Garantir que conteúdo seja visível no mobile quando ativo */
    .navbar-menu.active .nav-item-dropdown.active .mega-menu-item {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-menu.active .nav-item-dropdown.active .mega-menu-item svg {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-menu.active .nav-item-dropdown.active .mega-menu-item-content h5 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 50px;
    }
    
    .navbar-cta {
        display: none; /* Manter escondido também em telas muito pequenas */
    }
    
    .navbar-menu.active {
        top: 50px;
    }
    
    .navbar-menu.active .nav-link {
        padding: var(--spacing-sm);
        font-size: 1rem;
        min-height: 44px;
    }
    
    .mega-menu-item {
        padding: var(--spacing-md) !important;
        min-height: 44px !important;
    }
    
    .mega-menu-item-icon {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }
    
    .mega-menu-item-icon svg {
        width: 18px !important;
        height: 18px !important;
        display: block !important;
        opacity: 1 !important;
        color: white !important;
        fill: currentColor !important;
    }
    
    .mega-menu-item-content h5 {
        font-size: 1rem;
    }
}

/* ===============================
   HERO SECTION - Seção Principal
   =============================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

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

.hero-cards-grid {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 450px;
}

.hero-card {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.08);
    animation-play-state: paused;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-main {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    z-index: 3;
    animation-delay: 0s;
}

.hero-card-secondary {
    top: 180px;
    left: 0;
    width: 220px;
    z-index: 2;
    opacity: 0.9;
    animation: cardFloatLeft 6s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-card-accent {
    top: 180px;
    right: 0;
    width: 180px;
    z-index: 1;
    opacity: 0.9;
    animation: cardFloatRight 6s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: var(--font-family-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.gradient-text {
    background: linear-gradient(135deg, #FC7D55 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Typewriter Effect */
#typewriter {
    display: inline-block;
    min-width: 200px;
    text-align: left;
}

#typewriter::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 0.9em;
    background-color: var(--secondary-color);
    animation: blink 1s infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 49% { 
        opacity: 1; 
    }
    50%, 100% { 
        opacity: 0; 
    }
}

#typewriter-ia {
    display: inline-block;
    min-width: 350px;
    text-align: left;
    position: relative;
}

/* Cursor piscante apenas durante pausa */
#typewriter-ia.typing-pause::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background-color: white;
    animation: blink 0.8s ease-in-out infinite;
    margin-left: 4px;
    vertical-align: text-bottom;
}

/* Cursor estático durante digitação */
#typewriter-ia:not(.typing-pause)::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background-color: white;
    margin-left: 4px;
    vertical-align: text-bottom;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-highlight-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin: 0 auto var(--spacing-lg);
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-highlight-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.highlight-check {
    font-size: 1.2rem;
    line-height: 1;
}

.highlight-text {
    color: #083FCF;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlight-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
        text-align: center;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        height: 60px;
    }
    
    /* Typewriter responsivo */
    #typewriter {
        min-width: 160px;
    }
    
    #typewriter-ia {
        min-width: 280px;
    }
    
    .hero-cards-grid {
        max-width: 280px;
        height: auto;
        min-height: 300px;
    }
    
    .hero-card-main {
        width: 170px;
    }
    
    .hero-card-secondary,
    .hero-card-accent {
        width: 130px;
        top: 160px;
    }

    /* Hover effects for mobile */
    .hero-card:hover {
        transform: translateY(-8px) scale(1.05);
        animation-play-state: paused;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-highlight-badge {
        padding: var(--spacing-xs) var(--spacing-sm);
        gap: 6px;
    }
    
    .highlight-icon {
        font-size: 1.2rem;
    }
    
    .highlight-check {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
    
    /* Typewriter em telas pequenas */
    #typewriter {
        min-width: 140px;
    }
    
    #typewriter-ia {
        min-width: 220px;
        font-size: 0.9em;
    }
    
    .hero-cards-grid {
        max-width: 280px;
        height: 250px;
    }
    
    .hero-card-main {
        width: 160px;
        height: 130px;
    }
    
    .hero-card-secondary,
    .hero-card-accent {
        width: 120px;
        height: 90px;
        top: 100px;
    }

    /* Hover effects for smaller mobile */
    .hero-card:hover {
        transform: translateY(-6px) scale(1.03);
        animation-play-state: paused;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* ===============================
   CLIENTS SECTION - Seção de Clientes
   =============================== */

.clients-section {
    background-color: var(--background-light);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.clients-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.clients-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.clients-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metric-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.metric-number {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.metric-label {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.clients-carousel-section {
    text-align: center;
}

.carousel-title {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.carousel-subtitle {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--spacing-xxl);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl) 0;
    backdrop-filter: blur(10px);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: var(--spacing-xl);
    align-items: center;
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 160px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo img {
    max-height: 60px;
    max-width: 140px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.clients-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.cta-text {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cta-button span {
    font-size: 1.2rem;
}

/* Animação do carrossel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Clients Section */
@media (max-width: 768px) {
    .clients-section {
        padding: var(--spacing-xl) 0;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .clients-subtitle {
        font-size: 1rem;
    }
    
    .clients-metrics {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .metric-item {
        padding: var(--spacing-md);
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
    
    .carousel-subtitle {
        font-size: 0.9rem;
    }
    
    .clients-carousel {
        padding: var(--spacing-lg) 0;
    }
    
    .carousel-track {
        gap: var(--spacing-lg);
    }
    
    .client-logo {
        height: 60px;
        width: 120px;
    }
    
    .client-logo img {
        max-height: 45px;
        max-width: 100px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 1.75rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .client-logo {
        height: 50px;
        width: 100px;
    }
    
    .client-logo img {
        max-height: 35px;
        max-width: 80px;
    }
    
    .carousel-track {
        animation: scroll 20s linear infinite;
    }
}

/* Crescer Section */
.crescer-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.crescer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.crescer-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crescer-main-image {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 20px 40px rgba(8, 63, 207, 0.2);
    transition: transform 0.3s ease;
}

.crescer-main-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.crescer-img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease;
}

.crescer-secondary-images {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.crescer-secondary-img-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 70px;
    max-width: 90px;
    border: 3px solid transparent;
}

.crescer-secondary-img-item:nth-child(1) {
    transform: rotate(2deg);
}

.crescer-secondary-img-item:nth-child(2) {
    transform: rotate(-2deg);
}

.crescer-secondary-img-item:nth-child(3) {
    transform: rotate(1deg);
}

.crescer-secondary-img-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crescer-secondary-img-item.active {
    border-color: var(--secondary-color);
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(252, 125, 85, 0.3);
    background: rgba(252, 125, 85, 0.1);
}

.crescer-secondary-img-item.active:hover {
    transform: rotate(0deg) scale(1.1) translateY(-2px);
}

.crescer-secondary-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    max-height: 80px;
    object-fit: cover;
}

.crescer-content {
    text-align: left;
}

.crescer-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.crescer-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.crescer-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.crescer-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.crescer-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.crescer-feature > * {
    position: relative;
    z-index: 2;
}

.crescer-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.crescer-feature:hover .feature-icon {
    transform: scale(1.1);
}

.crescer-feature .feature-icon svg {
    width: 24px;
    height: 24px;
}

.crescer-feature .feature-content h4 {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.crescer-feature .feature-content p {
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.crescer-cta {
    margin-top: var(--spacing-lg);
}

/* ===============================
   AGENTE IA SECTION - Seção de Demonstração do Agente IA
   =============================== */

.agente-ia-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-color);
}

.agente-ia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.agente-ia-chat {
    display: flex;
    justify-content: center;
}

/* Chat Demo Container (reutilizando estilos da página de IA) */
.chat-demo-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chat-demo-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    padding: 20px;
}

.chat-demo-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.contact-status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-demo-messages {
    padding: 30px 20px;
    background: #f5f5f5;
    height: 600px;
    min-height: 600px;
    max-height: 600px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.chat-message {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.user-message {
    align-items: flex-end;
}

.ai-message {
    align-items: flex-start;
}

.message-sender {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.ai-badge {
    font-size: 1rem;
}

.message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 80%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.user-message .message-bubble {
    background: var(--primary-color);
    color: white;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
}

.chat-status-change {
    background: rgba(176, 115, 255, 0.1);
    border: 1px solid var(--tertiary-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

/* Typing Indicator */
.typing-indicator {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.typing-indicator-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.typing-dots {
    display: flex;
    gap: 4px;
    margin-left: 8px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typingDots 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-6px);
    }
}

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

/* ===============================
   DIAGNOSTICO SECTION - Seção de Diagnóstico
   =============================== */

.diagnostico-section {
    background-color: var(--background-color);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.diagnostico-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.diagnostico-main-image {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 20px 40px rgba(8, 63, 207, 0.2);
    transition: transform 0.3s ease;
}

.diagnostico-main-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.diagnostico-img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease;
}

.diagnostico-secondary-images {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.secondary-img-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 70px;
    max-width: 90px;
    border: 3px solid transparent;
}

.secondary-img-item:nth-child(1) {
    transform: rotate(2deg);
}

.secondary-img-item:nth-child(2) {
    transform: rotate(-2deg);
}

.secondary-img-item:nth-child(3) {
    transform: rotate(1deg);
}

.secondary-img-item:nth-child(4) {
    transform: rotate(-1deg);
}

.secondary-img-item:nth-child(5) {
    transform: rotate(2deg);
}

.secondary-img-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.secondary-img-item.active {
    border-color: var(--secondary-color);
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(252, 125, 85, 0.3);
    background: rgba(252, 125, 85, 0.1);
}

.secondary-img-item.active:hover {
    transform: rotate(0deg) scale(1.1) translateY(-2px);
}

.secondary-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    max-height: 80px;
    object-fit: cover;
}

.diagnostico-content {
    padding-left: var(--spacing-lg);
}

.diagnostico-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.diagnostico-subtitle {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.diagnostico-description {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.diagnostico-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.diagnostico-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.diagnostico-feature > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.diagnostico-feature:hover .feature-icon {
    transform: scale(1.1);
}

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

.feature-content h4 {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.diagnostico-cta {
    margin-top: var(--spacing-lg);
}

/* ===============================
   FAQ SECTION - Seção de Perguntas Frequentes
   =============================== */

.faq-section {
    background-color: var(--background-color);
    padding: var(--spacing-xxl) 0;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.faq-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: var(--spacing-xxl);
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    background-color: var(--background-color);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
}

.faq-question:hover {
    background-color: rgba(8, 63, 207, 0.05);
}

.faq-item.active .faq-question {
    background-color: rgba(8, 63, 207, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex: 1;
    line-height: 1.4;
    padding-right: var(--spacing-md);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background-color: var(--secondary-color);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--background-color);
    padding: 0 var(--spacing-lg);
    
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-xl) var(--spacing-lg);
}

.faq-answer p {
    font-family: var(--font-family-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.faq-cta {
    text-align: center;
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(239, 226, 255, 0.5) 100%);
    margin: var(--spacing-xxl) 0 0 0;
}

.faq-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(239, 226, 255, 0.5) 100%);
    border-radius: var(--border-radius-lg);
}

.faq-cta h2 {
    font-family: var(--font-family-headings);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.faq-cta-text {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .crm-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--spacing-xl) 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: var(--spacing-sm);
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: var(--spacing-xl) 0;
        margin: var(--spacing-xl) 0 0 0;
    }
    
    .faq-cta .container {
        padding: 0 var(--spacing-lg);
    }
    
    .faq-cta h2 {
        font-size: 1.75rem;
    }
    
    .faq-cta-text {
        font-size: 1rem;
    }
    
    .faq-cta .crm-hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .faq-cta .crm-hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .faq-cta {
        padding: var(--spacing-lg) 0;
        margin: var(--spacing-lg) 0 0 0;
    }
    
    .faq-cta .container {
        padding: 0 var(--spacing-md);
    }
    
    .faq-cta h2 {
        font-size: 1.5rem;
    }
    
    .faq-cta-text {
        font-size: 0.95rem;
    }
}

/* ===============================
   FOOTER - Rodapé
   =============================== */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section {
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    color: white;
    font-family: var(--font-family-headings);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-subtitle {
    color: white;
    font-family: var(--font-family-headings);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-description {
    color: #d1d5db;
    font-family: var(--font-family-body);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.social-link {
    color: #d1d5db;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-contact p {
    margin-bottom: var(--spacing-xs);
    color: #d1d5db;
}

.footer-contact a {
    color: white;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid white;
    text-align: center;
    color: white;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.footer-bottom div {
    margin-top: 0.25rem;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-section {
        margin-bottom: var(--spacing-md);
    }
    
    .footer-social {
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .social-link {
        padding: 6px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* ===============================
   UTILITIES - Classes Utilitárias
   =============================== */

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

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* ===============================
   PAGES - Páginas Internas
   =============================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-header .lead {
    font-family: var(--font-family-body);
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.about-content {
    padding: var(--spacing-xxl) 0;
}

.about-content h2 {
    color: var(--primary-color);
    font-family: var(--font-family-headings);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-content h3 {
    color: var(--text-color);
    font-family: var(--font-family-headings);
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.about-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.about-content ul li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.125rem;
    }
    
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-content {
        padding: var(--spacing-xl) 0;
    }
}

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

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

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

/* Mega Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav-dropdown-toggle:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--background-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 350px;
    margin-top: var(--spacing-sm);
    overflow: hidden;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    padding: var(--spacing-lg);
}

.mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
}

.mega-menu-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: var(--spacing-md);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.mega-menu-item-icon svg {
    transition: all 0.3s ease;
}

.mega-menu-item-content h5 {
    color: var(--text-color);
    font-family: var(--font-family-headings);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Cores específicas para cada solução */
.mega-menu-item-crm:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(8, 63, 207, 0.1) 100%);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(8, 63, 207, 0.2);
}

.mega-menu-item-crm:hover .mega-menu-item-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.mega-menu-item-crm:hover .mega-menu-item-content h5 {
    color: var(--primary-color);
}

.mega-menu-item-whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, rgba(37, 211, 102, 0.1) 100%);
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.mega-menu-item-whatsapp:hover .mega-menu-item-icon {
    background: #25D366;
    color: white;
    transform: scale(1.1);
}

.mega-menu-item-whatsapp:hover .mega-menu-item-content h5 {
    color: #25D366;
}

.mega-menu-item-marketing:hover {
    background: linear-gradient(135deg, #FF6B6B 0%, rgba(255, 107, 107, 0.1) 100%);
    border-color: #FF6B6B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.mega-menu-item-marketing:hover .mega-menu-item-icon {
    background: #FF6B6B;
    color: white;
    transform: scale(1.1);
}

.mega-menu-item-marketing:hover .mega-menu-item-content h5 {
    color: #FF6B6B;
}

.mega-menu-item-agente:hover {
    background: linear-gradient(135deg, #FC7D55 0%, rgba(252, 125, 85, 0.1) 100%);
    border-color: #FC7D55;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 125, 85, 0.3);
}

.mega-menu-item-agente:hover .mega-menu-item-icon {
    background: #FC7D55;
    color: white;
    transform: scale(1.1);
}

.mega-menu-item-agente:hover .mega-menu-item-content h5 {
    color: #FC7D55;
}

.mega-menu-item:hover {
    transform: none;
}

@media (max-width: 768px) {
    .crescer-section {
        padding: var(--spacing-lg) 0;
    }
    
    .crescer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .agente-ia-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .agente-ia-chat {
        order: 2;
    }
    
    .chat-demo-messages {
        height: 500px;
        min-height: 500px;
        max-height: 500px;
    }
    
    .crescer-content {
        order: 2;
    }
    
    .crescer-title {
        font-size: 2.5rem;
    }
    
    .crescer-subtitle {
        font-size: 1.3rem;
    }
    
    .crescer-description {
        font-size: 1rem;
    }
    
    .crescer-main-image {
        margin: 0 auto;
        max-width: 90%;
        transform: rotate(0deg);
    }
    
    .crescer-secondary-images {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-md);
        transform: none;
    }
    
    .crescer-secondary-img-item {
        min-width: 60px;
        max-width: 80px;
        transform: none !important;
    }
    
    .crescer-secondary-img {
        max-height: 60px;
    }
    
    .crescer-feature {
        padding: var(--spacing-md);
        text-align: left;
    }
    
    .crescer-feature .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .crescer-feature .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .crescer-feature .feature-content p {
        font-size: 0.95rem;
    }
    
    .crescer-cta {
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .crescer-title {
        font-size: 2rem;
    }
    
    .crescer-subtitle {
        font-size: 1.2rem;
    }
    
    .crescer-main-image {
        max-width: 100%;
    }
    
    .crescer-secondary-images {
        margin-top: var(--spacing-sm);
    }
    
    .crescer-secondary-img-item {
        min-width: 50px;
        max-width: 70px;
    }
    
    .crescer-secondary-img {
        max-height: 50px;
    }
    
    .crescer-feature {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .crescer-feature .feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
}

/* Mobile Diagnostico Section */
@media (max-width: 768px) {
    .diagnostico-section {
        padding: var(--spacing-xl) 0;
    }
    
    .diagnostico-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .diagnostico-content {
        padding-left: 0;
    }
    
    .diagnostico-title {
        font-size: 2rem;
    }
    
    .diagnostico-subtitle {
        font-size: 1.25rem;
    }
    
    .diagnostico-description {
        font-size: 1rem;
    }
    
    .diagnostico-main-image {
        transform: rotate(0deg);
        margin: 0 auto;
        max-width: 400px;
    }
    
    .diagnostico-secondary-images {
        margin-top: var(--spacing-lg);
        justify-content: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .secondary-img-item {
        max-width: 120px;
    }
    
    .secondary-img {
        max-height: 80px;
    }
    
    .diagnostico-feature {
        text-align: left;
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .diagnostico-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .diagnostico-title {
        font-size: 1.75rem;
    }
    
    .diagnostico-subtitle {
        font-size: 1.125rem;
    }
    
    .diagnostico-main-image {
        max-width: 320px;
    }
    
    .diagnostico-secondary-images {
        max-width: 250px;
        gap: var(--spacing-sm);
    }
    
    .secondary-img-item {
        max-width: 100px;
    }
    
    .secondary-img {
        max-height: 60px;
    }
    
    .diagnostico-feature {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .feature-icon {
        align-self: center;
    }
}

/* ===============================
   SOLUÇÕES SECTION - Seção de Soluções
   =============================== */

.solucoes-section {
    background-color: var(--background-color);
    padding: var(--spacing-xxl) 0;
}

.solucoes-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solucoes-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.solucoes-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.solucao-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(8, 63, 207, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.solucao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.solucao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: transform 0.3s ease;
}

.solucao-card:hover .solucao-icon {
    transform: scale(1.1);
}

.solucao-icon svg {
    color: white;
}

.solucao-title {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucao-description {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    height: 5.2rem;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.solucao-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl);
    text-align: left;
    flex-grow: 1;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.solucao-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.solucao-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Mobile Soluções Section */
@media (max-width: 768px) {
    .solucoes-section {
        padding: var(--spacing-xl) 0;
    }
    
    .solucoes-header {
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .solucoes-title {
        font-size: 2rem;
    }
    
    .solucoes-subtitle {
        font-size: 1rem;
    }
    
    .solucoes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .solucao-card {
        padding: var(--spacing-lg);
        min-height: auto;
    }
    
    .solucao-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--spacing-md);
    }
    
    .solucao-title {
        font-size: 1.25rem;
        min-height: auto;
    }
    
    .solucao-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        height: auto;
        overflow: visible;
    }
    
    .solucao-features {
        margin-bottom: var(--spacing-lg);
        height: auto;
    }
    
    .solucao-features li {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .solucoes-section {
        padding: var(--spacing-lg) 0;
    }
    
    .solucoes-title {
        font-size: 1.75rem;
    }
    
    .solucoes-subtitle {
        font-size: 0.95rem;
    }
    
    .solucoes-grid {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .solucao-card {
        padding: var(--spacing-md);
    }
    
    .solucao-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .solucao-title {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .solucao-description {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .solucao-features li {
        font-size: 0.85rem;
    }
    
    .check-icon {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }
}

/* ===============================
   TIMELINE - Seção de Trajetória
   =============================== */

/* Animações base para timeline */
.timeline-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Animação da linha principal */
.timeline-line {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-line.animate {
    transform: scaleX(1);
}

/* Animação da linha vertical mobile */
.timeline-line-vertical {
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-line-vertical.animate {
    transform: scaleY(1);
}

/* Delays escalonados para progressão */
.timeline-item:nth-child(1) { transition-delay: 0.2s; }
.timeline-item:nth-child(2) { transition-delay: 0.4s; }
.timeline-item:nth-child(3) { transition-delay: 0.6s; }
.timeline-item:nth-child(4) { transition-delay: 0.8s; }
.timeline-item:nth-child(5) { transition-delay: 1.0s; }

/* Animação do círculo do ícone */
.timeline-circle {
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.timeline-circle.animate {
    transform: scale(1);
}

/* Delays para os círculos */
.timeline-item:nth-child(1) .timeline-circle { transition-delay: 0.4s; }
.timeline-item:nth-child(2) .timeline-circle { transition-delay: 0.6s; }
.timeline-item:nth-child(3) .timeline-circle { transition-delay: 0.8s; }
.timeline-item:nth-child(4) .timeline-circle { transition-delay: 1.0s; }
.timeline-item:nth-child(5) .timeline-circle { transition-delay: 1.2s; }

/* Animação do card de conteúdo */
.timeline-card {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.timeline-card.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Delays para os cards */
.timeline-item:nth-child(1) .timeline-card { transition-delay: 0.5s; }
.timeline-item:nth-child(2) .timeline-card { transition-delay: 0.7s; }
.timeline-item:nth-child(3) .timeline-card { transition-delay: 0.9s; }
.timeline-item:nth-child(4) .timeline-card { transition-delay: 1.1s; }
.timeline-item:nth-child(5) .timeline-card { transition-delay: 1.3s; }

/* Hover effects */
.timeline-item:hover .timeline-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-item:hover .timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile adaptations */
@media (max-width: 1023px) {
    .timeline-item {
        transform: translateX(-30px);
    }
    
    .timeline-item.animate {
        transform: translateX(0);
    }
}

/* Timeline Desktop - visível apenas em telas maiores */
@media (min-width: 1024px) {
    .timeline-desktop {
        display: block !important;
    }
    
    .timeline-mobile {
        display: none !important;
    }
}

/* Timeline Mobile - visível em telas menores */
@media (max-width: 1023px) {
    .timeline-desktop {
        display: none !important;
    }
    
    .timeline-mobile {
        display: block !important;
    }
}

/* ===============================
   QUEM SOMOS PAGE STYLES - Estilos da Página Quem Somos
   =============================== */

/* Override hero styles for Quem Somos page */
.quemsomos .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.quemsomos .hero-content {
    z-index: 2;
}

.quemsomos .hero-title {
    font-family: var(--font-family-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: #1F2937 !important;
}

/* Força a cor para todos os elementos dentro do título */
body.quemsomos .hero-title,
body.quemsomos .hero-title * {
    color: #1F2937 !important;
}

.quemsomos .hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.quemsomos .hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.quemsomos .hero-cards-grid {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
}

.quemsomos .hero-card {
    position: absolute;
    width: 140px;
    height: 120px;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.quemsomos .hero-card:hover {
    transform: translateY(-8px) scale(1.05);
    z-index: 10;
}

.quemsomos .hero-card-main {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    width: 300px;
}

.quemsomos .hero-card-secondary {
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
    width: 270px;
}

.quemsomos .hero-card-accent {
    bottom: 35%;
    left: 10%;
    animation-delay: 3s;
    transform: rotate(-8deg);
    width: 220px;
}

.quemsomos .hero-card-fourth {
    bottom: 20%;
    right: 15%;
    animation-delay: 4.5s;
    transform: rotate(5deg);
    width: 220px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--initial-rotation, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--initial-rotation, 0deg));
    }
}

/* Team Cards Hover Effect */
.team-section .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===============================
   NOSSA HISTÓRIA SECTION - Nova Seção História
   =============================== */

.historia-section {
    background: var(--background-light);
    padding: var(--spacing-xxl) 0;
}

.historia-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: calc(var(--spacing-lg) / 2);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Lado Esquerdo - Conteúdo */
.historia-content {
    padding-right: var(--spacing-sm);
}

.historia-title {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.historia-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-xxl);
}

/* Ilustração */
.historia-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
}



/* Figura da pessoa */
.person-figure {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.person-body {
    width: 80px;
    height: 100px;
    background: #1f2937;
    border-radius: 40px 40px 20px 20px;
    position: relative;
}

.person-head {
    width: 50px;
    height: 50px;
    background: #fbbf24;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 15px;
}

.person-laptop {
    width: 60px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    left: 10px;
    border: 2px solid #6b7280;
}

.person-laptop::after {
    content: '';
    width: 50px;
    height: 30px;
    background: #1f2937;
    border-radius: 4px;
    position: absolute;
    top: 5px;
    left: 5px;
}

/* Lado Direito - Timeline */
.historia-timeline {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
}

.timeline-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
}

.timeline-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.timeline-dot:hover {
    background: #d1d5db;
    transform: scale(1.1);
}

.timeline-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

.timeline-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-nav-btn:hover {
    background: var(--tertiary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.timeline-nav-btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.timeline-nav-btn:active {
    transform: scale(0.95);
}

.timeline-next {
    background: var(--primary-color) !important;
    cursor: pointer !important;
}

/* Cards da Timeline */
.timeline-cards {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

/* Slides da Timeline */
.timeline-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.timeline-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateX(0) !important;
    pointer-events: auto;
    z-index: 2;
}

/* Garantir que o primeiro slide seja sempre visível */
.timeline-slide:first-child {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

/* Grid dos Cards */
.timeline-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    width: 100%;
    align-items: start;
}

.timeline-cards-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.666%;
    margin: 0 auto;
    align-items: start;
}

/* Individual Cards */
.timeline-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 125, 85, 0.1);
    opacity: 1;
    visibility: visible;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.timeline-date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
}

/* Ícones removidos - estilos não necessários */



/* Estilo para telas grandes (desktop) */
@media (min-width: 1024px) {
    .timeline-cards-grid {
        gap: var(--spacing-lg);
    }
    
    .timeline-card {
        padding: var(--spacing-md);
        min-height: 320px;
    }
    
    .timeline-content h3 {
        font-size: 1.75rem;
    }
    
    .timeline-content p {
        font-size: 1.1rem;
    }
    
    .timeline-date {
        font-size: 1.25rem;
    }
    
    .timeline-cards {
        min-height: 600px;
    }
    
    /* Ícones removidos - estilos não necessários */
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.timeline-content h3 {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    line-height: 1.3;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .historia-content {
        padding-right: 0;
        text-align: center;
    }
    
    .historia-title {
        font-size: 2.5rem;
    }
    
    .historia-illustration {
        height: 300px;
    }
    

    
    .historia-timeline {
        padding: var(--spacing-lg);
    }
    
    .timeline-cards {
        min-height: 450px;
    }
    
    .timeline-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .timeline-cards-grid-two {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .timeline-card {
        padding: var(--spacing-xs);
        min-height: 260px;
    }
    
    /* Ícones removidos - estilos não necessários */
}

@media (max-width: 480px) {
    .historia-title {
        font-size: 2rem;
    }
    
    .historia-subtitle {
        font-size: 1rem;
    }
    
    .historia-illustration {
        height: 250px;
    }
    
    .timeline-cards {
        min-height: 300px;
    }
    
    .timeline-card {
        padding: var(--spacing-xs);
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-date {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    /* Ícones removidos - estilos não necessários */
}



/* Mobile Responsiveness for Quem Somos Page */
@media (max-width: 768px) {
    .quemsomos .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .quemsomos .hero-title {
        font-size: 2.5rem !important;
    }
    
    .quemsomos .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quemsomos .hero-cards-grid {
        max-width: 350px;
        height: 350px;
    }
    
    .quemsomos .hero-card {
        width: 150px;
        height: 100px;
    }
    
    .timeline-desktop {
        display: none !important;
    }
    
    .timeline-mobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .timeline-desktop {
        display: block !important;
    }
    
    .timeline-mobile {
        display: none !important;
    }
}

/* Additional responsive adjustments for Quem Somos */
@media (max-width: 480px) {
    .quemsomos .hero-title {
        font-size: 2rem !important;
    }
    
    .quemsomos .hero-cards-grid {
        max-width: 280px;
        height: 280px;
    }
    
    .quemsomos .hero-card {
        width: 120px;
        height: 80px;
    }
}



/* ===============================
   CRM PAGE STYLES - Estilos da Página CRM
   =============================== */

/* CRM Hero Section */
.crm-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.crm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewX(-15deg);
    transform-origin: top;
}

.crm-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    position: relative;
    z-index: 2;
}

.crm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.crm-hero-content {
    text-align: left;
}

.crm-hero-title {
    font-family: var(--font-family-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.crm-hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.crm-hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.crm-hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.crm-hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.crm-hero-feature-text {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.crm-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

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

.crm-hero-cards-grid {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 520px;
}

.crm-hero-card {
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    animation: cardFloat 6s ease-in-out infinite;
    cursor: pointer;
}

.crm-hero-card:hover {
    animation-play-state: paused;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crm-hero-card-main:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
}

.crm-hero-card-secondary:hover {
    transform: translateY(-10px) scale(1.05);
}

.crm-hero-card-accent:hover {
    transform: translateY(-10px) scale(1.05);
}

.crm-hero-card-main {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 3;
    animation-delay: 0s;
}

.crm-hero-card-secondary {
    top: 140px;
    left: 40px;
    width: 270px;
    z-index: 2;
    animation: cardFloatLeft 6s ease-in-out infinite;
    animation-delay: 2s;
}

.crm-hero-card-accent {
    top: 140px;
    right: 40px;
    width: 220px;
    z-index: 1;
    animation: cardFloatRight 6s ease-in-out infinite;
    animation-delay: 4s;
}

.crm-hero-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* CRM Hero Mobile */
@media (max-width: 768px) {
    .crm-hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .crm-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .crm-hero-content {
        text-align: center;
    }
    
    .crm-hero-title {
        font-size: 2.5rem;
    }
    
    .crm-hero-subtitle {
        font-size: 1rem;
    }
    
    .crm-hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .crm-hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .crm-hero-cards-grid {
        max-width: 380px;
        min-height: 420px;
    }
    
    .crm-hero-card-main {
        width: 200px;
    }
    
    .crm-hero-card-secondary {
        width: 150px;
        top: 140px;
        left: 30px;
    }
    
    .crm-hero-card-accent {
        width: 150px;
        top: 140px;
        right: 30px;
    }
    
    .crm-hero-card-main:hover {
        transform: translateX(-50%) translateY(-8px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
    
    .crm-hero-card-secondary:hover,
    .crm-hero-card-accent:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .crm-hero-title {
        font-size: 2rem;
    }
    
    .crm-hero-cards-grid {
        max-width: 340px;
        min-height: 380px;
    }
    
    .crm-hero-card-main {
        width: 190px;
    }
    
    .crm-hero-card-secondary {
        width: 140px;
        top: 120px;
        left: 20px;
    }
    
    .crm-hero-card-accent {
        width: 140px;
        top: 120px;
        right: 20px;
    }
    
    .crm-hero-card-main:hover {
        transform: translateX(-50%) translateY(-6px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .crm-hero-card-secondary:hover,
    .crm-hero-card-accent:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* ===============================
   WHATSAPP PAGE STYLES - Estilos da Página WhatsApp
   =============================== */

/* WhatsApp Hero Section */
.whatsapp-hero {
    background: #25D366;
    color: white;
    padding: var(--spacing-xxl) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.07)"/><circle cx="40" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="1" fill="rgba(255,255,255,0.15)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.whatsapp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    position: relative;
    z-index: 2;
}

.whatsapp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.whatsapp-hero-content {
    text-align: left;
}

.whatsapp-hero-title {
    font-family: var(--font-family-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.whatsapp-hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

.whatsapp-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.whatsapp-hero-stat {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.whatsapp-hero-stat-number {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.whatsapp-hero-stat-label {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

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

.whatsapp-mockup-gif {
    max-width: 400px;
    height: auto;
}

/* WhatsApp Hero Mobile */
@media (max-width: 768px) {
    .whatsapp-hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .whatsapp-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .whatsapp-hero-content {
        text-align: center;
    }
    
    .whatsapp-hero-title {
        font-size: 2.5rem;
    }
    
    .whatsapp-hero-subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .whatsapp-hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    
}

@media (max-width: 480px) {
    .whatsapp-hero-title {
        font-size: 2rem;
    }
    
    .whatsapp-mockup-gif {
        max-width: 200px;
    }
}

/* ===============================
   WHATSAPP AUTOMATION SECTION - Seção de Automação
   =============================== */

.whatsapp-automation-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-automation-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-automation-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.whatsapp-automation-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.whatsapp-automation-flow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.automation-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
}

.automation-step {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 500px;
}

.automation-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.automation-step:nth-child(1) { transition-delay: 0.2s; }
.automation-step:nth-child(2) { transition-delay: 0.6s; }
.automation-step:nth-child(3) { transition-delay: 1.0s; }
.automation-step:nth-child(4) { transition-delay: 1.4s; }

.automation-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 10;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.automation-step.animate .automation-step-number {
    transform: scale(1);
}

.automation-step:nth-child(1) .automation-step-number { transition-delay: 0.4s; }
.automation-step:nth-child(2) .automation-step-number { transition-delay: 0.8s; }
.automation-step:nth-child(3) .automation-step-number { transition-delay: 1.2s; }
.automation-step:nth-child(4) .automation-step-number { transition-delay: 1.6s; }

.automation-step-image {
    position: relative;
    margin-bottom: var(--spacing-lg);
    transform: scale(0.8);
    transition: transform 0.6s ease-out;
    flex-shrink: 0;
    width: 100%;
    max-width: 220px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.automation-step.animate .automation-step-image {
    transform: scale(1);
}

.automation-step:nth-child(1) .automation-step-image { transition-delay: 0.5s; }
.automation-step:nth-child(2) .automation-step-image { transition-delay: 0.9s; }
.automation-step:nth-child(3) .automation-step-image { transition-delay: 1.3s; }
.automation-step:nth-child(4) .automation-step-image { transition-delay: 1.7s; }

.automation-step-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.automation-step:hover .automation-step-image img {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.automation-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 120px;
    margin-top: auto;
}

.automation-step-title {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-step-description {
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
    text-align: center;
}

/* Linhas conectoras do fluxo - Redesenhadas */
.automation-connector {
    position: absolute;
    top: 75px; /* Alinhado com o centro dos números */
    height: 4px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    border-radius: 2px;
    opacity: 0;
    z-index: 5;
    animation: drawLine 1s ease-out forwards;
}

/* Ajuste das posições das linhas conectoras */
.automation-connector:nth-child(5) {
    left: calc(12.5% + 25px); /* Início depois do primeiro número */
    width: calc(25% - 50px); /* Largura até antes do segundo número */
    animation-delay: 0.8s;
}

.automation-connector:nth-child(6) {
    left: calc(37.5% + 25px); /* Início depois do segundo número */
    width: calc(25% - 50px); /* Largura até antes do terceiro número */
    animation-delay: 1.2s;
}

.automation-connector:nth-child(7) {
    left: calc(62.5% + 25px); /* Início depois do terceiro número */
    width: calc(25% - 50px); /* Largura até antes do quarto número */
    animation-delay: 1.6s;
}

/* Setas nas linhas conectoras - Melhoradas */
.automation-connector::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #128C7E;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes drawLine {
    0% {
        opacity: 1;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Benefícios da automação */
.automation-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.automation-benefit {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.automation-benefit.animate {
    opacity: 1;
    transform: translateY(0);
}

.automation-benefit:nth-child(1) { transition-delay: 2.0s; }
.automation-benefit:nth-child(2) { transition-delay: 2.2s; }
.automation-benefit:nth-child(3) { transition-delay: 2.4s; }

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

.automation-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.automation-benefit:hover .automation-benefit-icon {
    transform: scale(1.1);
}

.automation-benefit-title {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.automation-benefit-description {
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile Automation Section */
@media (max-width: 768px) {
    .whatsapp-automation-section {
        padding: var(--spacing-xl) 0;
    }
    
    .whatsapp-automation-title {
        font-size: 2rem;
    }
    
    .whatsapp-automation-subtitle {
        font-size: 1rem;
    }
    
    .automation-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-xxl);
    }
    
    .automation-step {
        min-height: auto;
        flex-direction: column;
        align-items: center;
    }
    
    .automation-connector {
        display: none;
    }
    
    .automation-step-image {
        max-width: 280px;
    }
    
    .automation-step-image img {
        max-width: 250px;
    }
    
    .automation-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }
    
    .automation-benefit {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .whatsapp-automation-title {
        font-size: 1.75rem;
    }
    
    .automation-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .automation-step-image {
        max-width: 250px;
    }
    
    .automation-step-image img {
        max-width: 200px;
    }
    
    .automation-step-title {
        font-size: 1.125rem;
    }
    
    .automation-step-description {
        font-size: 0.9rem;
    }
}

/* ===============================
   QUEM SOMOS - Página Responsiva Completa
   =============================== */

/* Correções para todas as seções da página Quem Somos */
@media (max-width: 768px) {
    /* Hero Section */
    .quemsomos .hero-grid {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .quemsomos .hero-title {
        font-size: 2.25rem !important;
    }
    
    .quemsomos .hero-subtitle {
        font-size: 1rem;
    }
    
    .quemsomos .hero-cards-grid {
        max-width: 300px;
        height: 300px;
    }
    
    .quemsomos .hero-card {
        width: 120px;
        height: 100px;
    }
    

    
    /* Prêmios Section */
    .quemsomos .container > div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: var(--spacing-lg) !important;
        padding: 0 var(--spacing-md);
    }
    
    /* Missão, Visão, Valores */
    .quemsomos .container > div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
        padding: 0 var(--spacing-md);
    }
    
    /* Equipe Section */
    .quemsomos .team-section .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
        padding: 0 var(--spacing-md);
    }
    
    .quemsomos .team-section h2 {
        font-size: 2rem;
    }
    
    .quemsomos .team-section h4 {
        font-size: 1.25rem;
    }
    
    /* Trabalhe Conosco */
    .quemsomos section:last-child .container {
        padding: 0 var(--spacing-md);
    }
    
    .quemsomos section:last-child h2 {
        font-size: 2rem;
    }
    
    .quemsomos section:last-child p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Mobile */
    .quemsomos .hero-title {
        font-size: 1.75rem !important;
    }
    
    .quemsomos .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .quemsomos .hero-cards-grid {
        max-width: 250px;
        height: 250px;
    }
    
    .quemsomos .hero-card {
        width: 100px;
        height: 80px;
    }
    
    .quemsomos .hero-card h3 {
        font-size: 1rem;
    }
    

    
    /* Prêmios Section Mobile */
    .quemsomos .container > div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
        grid-template-columns: 1fr !important;
        padding: 0 var(--spacing-sm);
    }
    
    /* Missão, Visão, Valores Mobile */
    .quemsomos .container > div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        padding: 0 var(--spacing-sm);
    }
    
    /* Equipe Section Mobile */
    .quemsomos .team-section .container > div:last-child {
        padding: 0 var(--spacing-sm);
    }
    
    .quemsomos .team-section h2 {
        font-size: 1.75rem;
    }
    
    .quemsomos .team-section h4 {
        font-size: 1.125rem;
    }
    
    .quemsomos .team-section p {
        font-size: 0.9rem;
    }
    
    /* Trabalhe Conosco Mobile */
    .quemsomos section:last-child .container {
        padding: 0 var(--spacing-sm);
    }
    
    .quemsomos section:last-child h2 {
        font-size: 1.75rem;
    }
    
    .quemsomos section:last-child p {
        font-size: 0.9rem;
    }
    
    .quemsomos section:last-child .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
}

/* ===============================
   QUEM SOMOS - Mobile Fix ESPECÍFICO
   =============================== */

/* Força box-sizing para todos os elementos da página quemsomos */
.quemsomos * {
    box-sizing: border-box !important;
}

/* Correção específica para o container da história */
@media (max-width: 768px) {
    .quemsomos #historia .container {
        padding: 0 var(--spacing-md) !important;
        overflow-x: hidden !important;
    }
    
    .quemsomos #historia .container > div {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Força o bloco "Nascemos dentro de uma escola" a ser responsivo */
    .quemsomos #historia .container > div > div:first-child {
        width: 100% !important;
        margin: 0 0 var(--spacing-lg) 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    .quemsomos #historia .container > div > div:first-child > div {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        margin: 0 auto !important;
        padding: var(--spacing-lg) !important;
        display: block !important;
    }
    
    .quemsomos #historia .container > div > div:first-child > div > div {
        width: 90% !important;
        max-width: 280px !important;
        height: 180px !important;
        margin: 0 auto var(--spacing-md) auto !important;
    }
    
    /* Força todos os cards da história a serem responsivos */
    .quemsomos #historia .container > div > div {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        margin: 0 auto var(--spacing-lg) auto !important;
        padding: var(--spacing-lg) !important;
        box-sizing: border-box !important;
    }
    
    /* Força a seção flex "Como melhorar" a ser em coluna */
    .quemsomos #historia .container > div > div:nth-child(3) > div {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-lg) !important;
    }
    
    .quemsomos #historia .container > div > div:nth-child(3) > div > div:first-child {
        flex: none !important;
        min-width: auto !important;
        width: 100% !important;
    }
    
    .quemsomos #historia .container > div > div:nth-child(3) > div > div:last-child {
        width: 100% !important;
        text-align: center !important;
    }
    
    .quemsomos #historia .container > div > div:nth-child(3) > div > div:last-child > div {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto !important;
    }
    
    /* Força as seções de prêmios a serem responsivas */
    .quemsomos section:nth-child(3) .container > div {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: var(--spacing-lg) !important;
        margin: var(--spacing-lg) 0 !important;
        padding: 0 var(--spacing-md) !important;
        max-width: calc(100vw - 40px) !important;
    }
    
    /* Força Missão/Visão/Valores a serem em coluna única */
    .quemsomos section:nth-child(4) .container > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
        padding: 0 var(--spacing-md) !important;
        max-width: calc(100vw - 40px) !important;
    }
    
    /* Força a equipe a ser em coluna única */
    .quemsomos .team-section .container > div:last-child {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg) !important;
        padding: 0 var(--spacing-md) !important;
        max-width: calc(100vw - 40px) !important;
    }
}

@media (max-width: 480px) {

    
    /* Força as seções de prêmios em mobile */
    .quemsomos section:nth-child(3) .container > div {
        grid-template-columns: 1fr !important;
        padding: 0 var(--spacing-sm) !important;
        max-width: calc(100vw - 20px) !important;
    }
    
    .quemsomos section:nth-child(4) .container > div {
        padding: 0 var(--spacing-sm) !important;
        max-width: calc(100vw - 20px) !important;
    }
    
    .quemsomos .team-section .container > div:last-child {
        padding: 0 var(--spacing-sm) !important;
        max-width: calc(100vw - 20px) !important;
    }
}

/* CRM Crescer Section - Classes específicas para a página CRM */
.crm-crescer-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.crm-crescer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.crm-crescer-content {
    text-align: left;
}

.crm-crescer-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.crm-crescer-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.crm-crescer-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.crm-crescer-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.crm-crescer-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.crm-crescer-feature > * {
    position: relative;
    z-index: 2;
}

.crm-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.crm-crescer-feature:hover .crm-feature-icon {
    transform: scale(1.1);
}

.crm-feature-icon svg {
    width: 24px;
    height: 24px;
}

.crm-feature-content h4 {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.crm-feature-content p {
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.crm-crescer-cta {
    margin-top: var(--spacing-lg);
}

.crm-crescer-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crm-crescer-main-image {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 20px 40px rgba(8, 63, 207, 0.2);
    transition: transform 0.3s ease;
}

.crm-crescer-main-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.crm-crescer-img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease;
}

.crm-crescer-secondary-images {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.crm-crescer-secondary-img-item {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-crescer-secondary-img-item:nth-child(1) {
    transform: rotate(2deg);
}

.crm-crescer-secondary-img-item:nth-child(2) {
    transform: rotate(-2deg);
}

.crm-crescer-secondary-img-item:nth-child(3) {
    transform: rotate(1deg);
}

.crm-crescer-secondary-img-item:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crm-crescer-secondary-img-item.active {
    border-color: var(--secondary-color);
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(252, 125, 85, 0.3);
    background: rgba(252, 125, 85, 0.1);
}

.crm-crescer-secondary-img-item.active:hover {
    transform: rotate(0deg) scale(1.1) translateY(-2px);
}

.crm-crescer-secondary-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* CRM Crescer Section Mobile */
@media (max-width: 768px) {
    .crm-crescer-section {
        padding: var(--spacing-lg) 0;
    }
    
    .crm-crescer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .crm-crescer-content {
        order: 2;
    }
    
    .crm-crescer-title {
        font-size: 2.5rem;
    }
    
    .crm-crescer-subtitle {
        font-size: 1.3rem;
    }
    
    .crm-crescer-description {
        font-size: 1rem;
    }
    
    .crm-crescer-feature {
        padding: var(--spacing-md);
        text-align: left;
    }
    
    .crm-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .crm-feature-content h4 {
        font-size: 1.1rem;
    }
    
    .crm-feature-content p {
        font-size: 0.95rem;
    }
    
    .crm-crescer-cta {
        margin-top: var(--spacing-md);
    }
    
    .crm-crescer-main-image {
        margin: 0 auto;
        max-width: 90%;
        transform: rotate(0deg);
    }
    
    .crm-crescer-secondary-images {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-md);
        transform: none;
    }
    
    .crm-crescer-secondary-img-item {
        width: 70px;
        height: 70px;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .crm-crescer-title {
        font-size: 2rem;
    }
    
    .crm-crescer-subtitle {
        font-size: 1.2rem;
    }
    
    .crm-crescer-feature {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .crm-feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .crm-crescer-main-image {
        max-width: 100%;
    }
    
    .crm-crescer-secondary-images {
        margin-top: var(--spacing-sm);
    }
    
    .crm-crescer-secondary-img-item {
        width: 60px;
        height: 60px;
    }
}

/* Marketing Hero Images - Específico para página marketing */
.marketing-hero-img {
    width: 120%;
    height: auto;
    display: block;
    transform-origin: center;
}

/* Base transition for marketing hero cards */
body.marketing .hero-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ajustes para os cards do hero marketing - mesmos tamanhos da home */
.marketing .hero-card-main {
    width: 300px;
    transform: scale(1.0);
}

.marketing .hero-card-secondary {
    width: 270px;
    transform: scale(1.0);
}

.marketing .hero-card-accent {
    width: 220px;
    transform: scale(1.0);
}

/* Media queries para marketing hero */
@media (max-width: 768px) {
    .marketing-hero-img {
        width: 110%;
    }
    
    .marketing .hero-card-main {
        width: 200px;
        transform: scale(1.0);
    }
    
    .marketing .hero-card-secondary,
    .marketing .hero-card-accent {
        width: 150px;
        transform: scale(1.0);
    }
    
    /* Marketing hover effects for mobile */
    body.marketing .hero-card:hover {
        transform: translateY(-8px) scale(1.05);
        animation-play-state: paused;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    body.marketing .hero-card-main:hover {
        transform: translateX(-50%) translateY(-8px) scale(1.05);
        animation-play-state: paused;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 480px) {
    .marketing-hero-img {
        width: 100%;
    }
    
    .marketing .hero-card-main {
        width: 190px;
        transform: scale(1.0);
    }
    
    .marketing .hero-card-secondary,
    .marketing .hero-card-accent {
        width: 140px;
        transform: scale(1.0);
    }
    
    /* Marketing hover effects for smaller mobile */
    body.marketing .hero-card:hover {
        transform: translateY(-6px) scale(1.03);
        animation-play-state: paused;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    body.marketing .hero-card-main:hover {
        transform: translateX(-50%) translateY(-6px) scale(1.03);
        animation-play-state: paused;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Marketing Hero Title - Cor branca específica */
.marketing .hero-title {
    color: white !important;
}

/* Marketing Hero Cards Hover Effects - Com Sombra Elegante */
body.marketing .hero-card:hover {
    transform: translateY(-10px) scale(1.08);
    animation-play-state: paused;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ajuste específico para o card main da marketing que já tem transform */
body.marketing .hero-card-main:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.08);
    animation-play-state: paused;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CRM Hero Cards - Posicionamento Específico e Remoção de Opacidade */
body.crm .hero-card-secondary {
    top: 140px;
    left: 80px;
    opacity: 1;
}

body.crm .hero-card-accent {
    top: 140px;
    right: 80px;
    opacity: 1;
}

/* CRM Hero Cards Hover Effects - Com Sombra Elegante */
body.crm .hero-card:hover {
    transform: translateY(-10px) scale(1.08);
    animation-play-state: paused;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ajuste específico para o card main que já tem transform */
body.crm .hero-card-main:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.08);
    animation-play-state: paused;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile adjustments for CRM */
@media (max-width: 768px) {
    body.crm .hero-card-secondary {
        top: 140px;
        left: 50px;
    }
    
    body.crm .hero-card-accent {
        top: 140px;
        right: 50px;
    }
    
    /* Hover effects for mobile */
    body.crm .hero-card:hover {
        transform: translateY(-8px) scale(1.05);
        animation-play-state: paused;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    body.crm .hero-card-main:hover {
        transform: translateX(-50%) translateY(-8px) scale(1.05);
        animation-play-state: paused;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 480px) {
    body.crm .hero-card-secondary {
        top: 120px;
        left: 40px;
    }
    
    body.crm .hero-card-accent {
        top: 120px;
        right: 40px;
    }
    
    /* Hover effects for smaller mobile */
    body.crm .hero-card:hover {
        transform: translateY(-6px) scale(1.03);
        animation-play-state: paused;
    }
    
    body.crm .hero-card-main:hover {
        transform: translateX(-50%) translateY(-6px) scale(1.03);
        animation-play-state: paused;
    }
}

/* ===============================
   BLOG STYLES - Estilos do Blog
   =============================== */

.blog-featured {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
}

.blog-featured .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

/* Seção Mais Recentes - garantir cor azul */
.latest-posts .section-header h2 {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* Featured Main Card (Seção NOVO) */
.featured-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-card-large {
    height: 380px;
    position: relative;
}

.featured-card-large .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.featured-card-large .card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.featured-card-large .category-tag {
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 20px 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    margin: 0;
}

.featured-card-large .card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--spacing-sm) 0;
    color: white;
}

.featured-card-large .card-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.featured-card-large .card-title a:hover {
    opacity: 0.9;
}

.featured-card-large .card-author {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.featured-card-large .card-author strong {
    font-weight: 600;
}

/* Featured Sidebar Cards */
.featured-sidebar {
    display: flex;
    flex-direction: column;
}

.featured-cards-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.featured-card-small {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.featured-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.featured-card-small .card-image {
    width: 100%;
    height: 160px;
    border-radius: 0;
    overflow: hidden;
}

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

.featured-card-small .card-content {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.featured-card-small .category-tag {
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 0 0 12px 0;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    margin: 0;
}

.featured-card-small .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--text-color);
}

.featured-card-small .card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-card-small .card-title a:hover {
    color: var(--primary-color);
}

.featured-card-small .card-author {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

/* Seção Mais Recentes */
.latest-posts {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.latest-posts h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.recent-post-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
    display: flex;
    gap: var(--spacing-md);
    align-items: stretch;
    min-height: 120px;
}

.recent-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.recent-post-image {
    flex: 0 0 180px;
    align-self: stretch;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.05);
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.category-badge {
    background: var(--accent-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-post-title {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.recent-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--primary-color);
}

.recent-post-excerpt {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 0.9rem;
}

.recent-post-author {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    margin-top: auto;
}

.recent-post-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.recent-post-author strong a,
.card-author strong a,
.post-author strong a,
.post-author strong a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-author strong a:hover,
.card-author strong a:hover,
.post-author strong a:hover {
    color: var(--primary-color);
}

/* ===============================
   PAGINATION - Paginação
   =============================== */

.pagination-wrapper {
    margin-top: var(--spacing-xxl);
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    background: white;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(252, 125, 85, 0.3);
}

.pagination-current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    cursor: default;
    font-weight: 600;
}

.pagination-current:hover {
    transform: none;
    box-shadow: none;
}

/* Responsivo para paginação */
@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: var(--spacing-xl);
    }
    
    .pagination-link {
        min-width: 40px;
        height: 40px;
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .pagination-list {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .pagination-link {
        min-width: 36px;
        height: 36px;
        padding: 4px 8px;
        font-size: 0.85rem;
    }
    
    .pagination-list {
        gap: 4px;
    }
}

/* ===============================
   MOST READ SECTION - Seção Mais Lidos
   =============================== */

.most-read-posts {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.most-read-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .featured-card-large {
        height: 300px;
    }
    
    .featured-card-large .card-title {
        font-size: 1.5rem;
    }
    
    .featured-card-small {
        flex-direction: column;
    }
    
    .featured-card-small .card-image {
        height: 120px;
        width: 100%;
    }
    
    .latest-posts {
        padding: var(--spacing-xl) 0;
    }
    
    .latest-posts h2 {
        font-size: 1.5rem;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .most-read-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .featured-card-large {
        height: 250px;
    }
    
    .featured-card-large .card-content {
        padding: var(--spacing-lg);
    }
    
    .featured-card-large .card-title {
        font-size: 1.3rem;
    }
    
    .recent-post-item {
        flex-direction: column;
        padding: var(--spacing-md);
    }
    
.recent-post-image {
        flex: none;
        width: 100%;
        height: 160px;
        align-self: auto;
    }
    
    .recent-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .most-read-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

/* ===============================
   POST LAYOUT STYLES - Estilos de Layout dos Posts
   =============================== */

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xxl);
    margin: var(--spacing-xxl) auto;
    max-width: 1200px;
    padding: 0 var(--spacing-md);
    align-items: start;
}

.post-content {
    max-width: 100%;
    min-width: 0; /* Previne overflow em conteúdo longo */
}

.post-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-weight: 700;
}

.post-excerpt {
    font-family: var(--font-family-body);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.post-author {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    font-family: var(--font-family-body);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.post-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: var(--font-family-body);
}





.post-body {
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.post-body h2 {
    font-family: var(--font-family-headings);
    color: var(--primary-color);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.post-body h3 {
    font-family: var(--font-family-headings);
    color: var(--text-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.post-body p {
    margin-bottom: var(--spacing-md);
}

.post-body ul, .post-body ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.post-body li {
    margin-bottom: var(--spacing-xs);
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
}

.post-body blockquote {
    background: var(--background-light);
    padding: var(--spacing-md) var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-style: italic;
}

.post-body code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #e11d48;
}

.post-body pre {
    background: #1e293b;
    color: #f8fafc;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-sidebar,
.posts-sidebar {
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.post-sidebar h3 {
    font-family: var(--font-family-headings);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: var(--spacing-xl);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-family: var(--font-family-headings);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

.post-meta-sidebar {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Mobile Post Layout */
@media (max-width: 768px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin: var(--spacing-lg) auto;
        padding: 0 var(--spacing-md);
    }
    
    .post-sidebar,
    .posts-sidebar {
        position: static;
        margin-top: var(--spacing-xl);
        order: 2;
    }
    
    .post-content {
        order: 1;
    }
    
    .post-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .post-excerpt {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .post-author {
        text-align: center;
    }
    
    .post-meta {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
        text-align: center;
    }
    

    
    .post-body {
        font-size: 1rem;
    }
    

}

@media (max-width: 480px) {
    .post-layout {
        margin: var(--spacing-md) auto;
        padding: 0 var(--spacing-sm);
    }
    
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-excerpt {
        font-size: 1rem;
    }
    
    .post-sidebar,
    .posts-sidebar {
        padding: var(--spacing-lg);
    }
    

    

    
    .post-body {
        font-size: 0.95rem;
    }
}

/* ===============================
   CATEGORY PAGE STYLES - Estilos da Página de Categoria
   =============================== */

   .category-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.category-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--border-color);
}

.category-title {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.category-description {
    font-family: var(--font-family-body);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.category-meta {
    font-family: var(--font-family-body);
    color: var(--text-light);
    font-size: 0.95rem;
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.category-post-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.category-post-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.post-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-item-image:hover img {
    transform: scale(1.05);
}

.post-item-content {
    padding: var(--spacing-lg);
}

.post-item-title {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    margin: var(--spacing-sm) 0;
    line-height: 1.3;
}

.post-item-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-item-title a:hover {
    color: var(--primary-color);
}

.post-item-excerpt {
    font-family: var(--font-family-body);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.post-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family-body);
    font-size: 0.85rem;
    color: var(--text-light);
}

.category-back {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

/* Mobile Category Page */
@media (max-width: 768px) {
    .category-page {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .post-item-content {
        padding: var(--spacing-md);
    }
    
    .post-item-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 1.75rem;
    }
    
    .post-item-title {
        font-size: 1.125rem;
    }
}

/* ===============================
   AUTHOR PAGE STYLES - Estilos da Página de Autor
   =============================== */

.author-page, .authors-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.author-header {
    margin-bottom: var(--spacing-xxl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--border-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.author-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.author-bio {
    font-family: var(--font-family-body);
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.author-meta {
    font-family: var(--font-family-body);
    color: var(--text-light);
    font-size: 0.95rem;
}

.author-posts-section {
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.author-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.author-post-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.author-post-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.author-back {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

/* Authors Index Page */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.author-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.author-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-color);
}

.author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card-name {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.author-card-name a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-card-name a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.author-card-bio {
    font-family: var(--font-family-body);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.author-card-stats {
    margin-bottom: var(--spacing-lg);
}

.author-card-stats .post-count {
    font-family: var(--font-family-body);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.authors-back {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

/* Mobile Author Pages */
@media (max-width: 768px) {
    .author-page, .authors-page {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .author-avatar {
        width: 100px;
        height: 100px;
    }
    
    .author-name {
        font-size: 2rem;
    }
    
    .author-bio {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .author-posts-grid, .authors-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .author-card {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .author-name {
        font-size: 1.75rem;
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
    }
    
    .author-card-avatar {
        width: 80px;
        height: 80px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}

/* ===============================
   AUTHOR PROFILE CARD STYLES - Estilo Profissional da Página de Autor
   =============================== */

.author-profile-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    border: 1px solid var(--border-color);
}

.author-profile-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-xxl);
}

.author-profile-main {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    flex: 1;
}

.author-profile-card .author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--background-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-profile-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-card .author-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
}

.author-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.5;
    font-style: italic;
}

.author-info-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.author-stat {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.author-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: flex-end;
    min-width: 180px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    background: var(--background-light);
    border: 1px solid var(--border-color);
    min-width: 160px;
    justify-content: flex-start;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
}

.contact-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-link:hover svg {
    transform: scale(1.1);
}

.contact-link.instagram {
    color: #E4405F;
}

.contact-link.instagram:hover {
    color: #C13584;
}

.contact-link.email {
    color: #0066CC;
}

.contact-link.email:hover {
    color: #0052A3;
}

.contact-link.phone {
    color: #25D366;
}

.contact-link.phone:hover {
    color: #128C7E;
}

/* Responsive para Author Profile Card */
@media (max-width: 768px) {
    .author-profile-card {
        padding: var(--spacing-xl);
    }
    
    .author-profile-layout {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .author-profile-main {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .author-profile-card .author-avatar {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .author-profile-card .author-name {
        font-size: 1.75rem;
    }
    
    .author-description {
        font-size: 1rem;
    }
    
    .author-info-stats {
        align-items: center;
    }
    
    .author-contact {
        align-items: center;
        min-width: auto;
        width: 100%;
    }
    
    .contact-link {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .author-profile-card {
        padding: var(--spacing-lg);
    }
    
    .author-profile-card .author-avatar {
        width: 80px;
        height: 80px;
    }
    
    .author-profile-card .author-name {
        font-size: 1.5rem;
    }
    
    .author-description {
        font-size: 0.95rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
}

/* ===============================
   POST SHARE BUTTONS - Botões de Compartilhamento Social
   =============================== */

.post-share {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.share-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 var(--spacing-lg) 0;
    font-family: var(--font-family-headings);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
    justify-content: center;
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn span {
    font-family: var(--font-family-body);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Facebook Button */
.facebook-btn {
    background: #1877F2;
    color: white;
}

.facebook-btn:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* Email Button */
.email-btn {
    background: #6B7280;
    color: white;
}

.email-btn:hover {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

/* Responsive para Share Buttons */
@media (max-width: 768px) {
    .post-share {
        padding: var(--spacing-lg);
    }
    
    .share-buttons {
        gap: var(--spacing-md);
    }
    
    .share-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .share-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .share-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .share-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ===============================
   POST AUTHOR SECTION - Seção do Autor no Final do Post
   =============================== */

.post-author-section {
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.author-info-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.author-left {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    flex: 1;
}

.author-photo-link {
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.author-photo-link:hover {
    transform: scale(1.05);
}

.author-photo {
    flex-shrink: 0;
}

.author-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--background-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.author-photo-link:hover .author-photo img {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-details {
    flex: 1;
}

.post-author-section .author-name {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
}

.post-author-section .author-name a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-author-section .author-name a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.author-description {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--text-color);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.4;
    font-style: italic;
}

.author-institution {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.author-contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    min-width: 200px;
}

.post-author-section .contact-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--background-light);
    border: 1px solid transparent;
}

.post-author-section .contact-link svg {
    flex-shrink: 0;
}

.post-author-section .contact-link span {
    font-weight: 500;
}

/* Email Link */
.post-author-section .contact-link.email {
    color: #6B7280;
}

.post-author-section .contact-link.email:hover {
    background: #6B7280;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

/* Phone/WhatsApp Link */
.post-author-section .contact-link.phone {
    color: #25D366;
}

.post-author-section .contact-link.phone:hover {
    background: #25D366;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive para Post Author Section */
@media (max-width: 768px) {
    .post-author-section {
        padding: var(--spacing-lg);
    }
    
    .author-info-card {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .author-left {
        gap: var(--spacing-md);
    }
    
    .author-photo img {
        width: 70px;
        height: 70px;
    }
    
    .post-author-section .author-name {
        font-size: 1.3rem;
    }
    
    .post-author-section .author-name a {
        font-size: 1.3rem;
    }
    
    .author-contact-links {
        min-width: auto;
        width: 100%;
    }
    
    .post-author-section .contact-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .author-left {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .author-photo img {
        width: 60px;
        height: 60px;
    }
    
    .post-author-section .author-name {
        font-size: 1.2rem;
    }
    
    .post-author-section .author-name a {
        font-size: 1.2rem;
    }
    
    .author-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .author-institution {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* ===============================
   BREADCRUMB NAVIGATION 
   =============================== */

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    display: inline-block;
}

.breadcrumb-link:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-light);
    font-weight: normal;
    user-select: none;
}

.breadcrumb-current {
    color: var(--text-light);
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
    display: inline-block;
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        font-size: 0.8rem;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }
    
    .breadcrumb-link {
        max-width: 150px;
    }
    
    .breadcrumb-current {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-nav {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-link {
        max-width: 120px;
    }
    
    .breadcrumb-current {
        max-width: 130px;
    }
}

/* ===============================
   MOBILE/DESKTOP VISIBILITY CONTROLS
   =============================== */

/* Por padrão, mostrar elementos desktop e esconder mobile */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* No mobile, inverter a lógica */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }
    
    /* Garantir que os links mobile apareçam corretamente no menu ativo */
    .navbar-menu.active .mobile-only {
        display: block;
        width: 100%;
    }
    
    .navbar-menu.active .mobile-only .nav-link {
        padding: var(--spacing-md) var(--spacing-md);
        width: 100%;
        text-align: left;
        border-radius: 0;
        font-size: 1.1rem;
        font-weight: 500;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ===============================
   DESKTOP/MOBILE UTILITIES
   =============================== */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .navbar-menu.active .mobile-only {
        display: block;
    }
    
    .navbar-menu.active .mobile-only .nav-link {
        color: white;
    }
}

/* ===============================
   POLÍTICA DE PRIVACIDADE
   =============================== */

.privacy-content {
    margin: 60px 0;
    padding: 40px 0;
}

.privacy-content h1, 
.privacy-content h2, 
.privacy-content h3, 
.privacy-content h4 {
    color: #1e40af;
}

.privacy-content h1 {
    margin-bottom: 30px;
}

.privacy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.uso-section {
    margin-left: 30px;
    padding-left: 20px;
    border-left: 3px solid #e5e7eb;
}

/* Estilos para Timeline Mobile */
.timeline-desktop {
    display: block;
}

.timeline-mobile {
    display: none;
}

.timeline-navigation-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
}

.timeline-dots-mobile {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
    margin-right: var(--spacing-md);
}

.timeline-dot-mobile {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.timeline-dot-mobile:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.timeline-dot-mobile.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.timeline-nav-btn-mobile {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-nav-btn-mobile:hover {
    background: var(--tertiary-color);
    transform: scale(1.05);
}

.timeline-nav-btn-mobile:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.timeline-nav-btn-mobile:active {
    transform: scale(0.95);
}

.timeline-cards-mobile {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.timeline-slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: none;
    transition: all 0.5s ease;
}

.timeline-slide-mobile.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    display: block;
    position: relative;
}

/* Estilos para o novo hero da página Quem Somos */
.hero-quemsomos {
    position: relative;
    overflow: hidden;
}

.hero-quemsomos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
}

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

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-xl);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-content-container {
    padding-left: var(--spacing-lg);
}

.hero-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease-out;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hero-stat-card {
    position: absolute;
    text-align: center;
    padding: var(--spacing-xl);
    background: transparent;
    border: none;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-stat-card:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 240px;
    z-index: 3;
    animation-delay: 0s;
}

.hero-stat-card:nth-child(2) {
    top: 180px;
    left: 0;
    transform: rotate(1deg);
    width: 200px;
    z-index: 2;
    opacity: 0.95;
    animation: cardFloatLeft 6s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-stat-card:nth-child(3) {
    top: 180px;
    right: 0;
    transform: rotate(-1.5deg);
    width: 180px;
    z-index: 1;
    opacity: 0.95;
    animation: cardFloatRight 6s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-stat-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(0deg);
    animation-play-state: paused;
    z-index: 10;
}

.hero-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
}

.hero-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.3;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}



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

/* Media Queries para o novo hero */
@media (max-width: 1024px) {
    .hero-quemsomos-grid {
        gap: var(--spacing-xl);
    }
    
    .hero-content-container {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-quemsomos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        min-height: auto;
        text-align: center;
    }
    
    .hero-image-container {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
        display: block !important; /* Garantir que a imagem apareça */
        visibility: visible !important;
    }
    
    .hero-image-wrapper {
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-image-wrapper img {
        display: block !important;
        visibility: visible !important;
        width: 100%;
        height: auto;
    }
    
    .hero-content-container {
        padding-left: 0; /* Remove deslocamento */
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-content-container h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-container p {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
        max-width: 350px;
        min-height: 350px;
        margin: var(--spacing-xl) 0;
    }
    
    .hero-stat-card {
        padding: var(--spacing-md);
    }
    
    .hero-stat-card:nth-child(1) {
        width: 180px;
        transform: translateX(-50%) rotate(-1.5deg);
    }
    
    .hero-stat-card:nth-child(2) {
        top: 140px;
        width: 160px;
        transform: rotate(0.8deg);
    }
    
    .hero-stat-card:nth-child(3) {
        top: 140px;
        width: 140px;
        transform: rotate(-1deg);
    }
    
    .hero-stat-number {
        font-size: 2.8rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-quemsomos {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .hero-content-container h1 {
        font-size: 2rem;
    }
    
    .hero-content-container p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-item div:first-child {
        font-size: 1.5rem;
    }
    
    .stat-item div:last-child {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
        max-width: 280px;
        min-height: 300px;
    }
    
    .hero-stat-card {
        padding: var(--spacing-sm);
    }
    
    .hero-stat-card:nth-child(1) {
        width: 150px;
        transform: translateX(-50%) rotate(-1deg);
    }
    
    .hero-stat-card:nth-child(2) {
        top: 120px;
        width: 130px;
        transform: rotate(0.5deg);
    }
    
    .hero-stat-card:nth-child(3) {
        top: 120px;
        width: 120px;
        transform: rotate(-0.8deg);
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }

}

/* Melhorar visibilidade do botão secundário no hero Quem Somos */
.hero-quemsomos .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

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

/* ===============================
   PNAE PAGE STYLES
   =============================== */

/* PNAE Specific Styles */
.pnae-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pnae-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pnae-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.pnae-chart-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.chart-element {
    position: absolute;
    border-radius: var(--border-radius);
    animation: float 6s ease-in-out infinite;
}

.chart-1 {
    width: 80px;
    height: 120px;
    background: var(--secondary-color);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.chart-2 {
    width: 80px;
    height: 180px;
    background: var(--quaternary-color);
    top: 10%;
    left: 40%;
    animation-delay: 2s;
}

.chart-3 {
    width: 80px;
    height: 140px;
    background: rgba(255, 255, 255, 0.9);
    top: 25%;
    right: 10%;
    animation-delay: 4s;
}

.slogan-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.slogan-text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.highlight {
    color: var(--primary-color);
}

.highlight-secondary {
    color: var(--secondary-color);
}

.apoiadores-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: white;
}

.apoiadores-header h3 {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.valores-section {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.valor-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    background: var(--background-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.valor-icon {
    margin-bottom: var(--spacing-md);
}

.valor-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.valor-description {
    color: var(--text-color);
    line-height: 1.6;
}

.cta-intermediaria,
.cta-final {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.beneficios-section {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.beneficio-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    background: white;
}

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

.beneficio-icon {
    margin-bottom: var(--spacing-md);
}

.beneficio-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.beneficio-description {
    color: var(--text-color);
    line-height: 1.6;
}

.cronograma-section {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.cronograma-timeline {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
}

.cronograma-item {
    display: flex;
    margin-bottom: var(--spacing-xl);
    align-items: flex-start;
}

.cronograma-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.cronograma-content h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.cronograma-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.final-slogan-section {
    padding: var(--spacing-xxl) 0;
    background: var(--primary-color);
    color: white;
}

.final-slogan {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

/* PNAE Responsive Design */
@media (max-width: 768px) {
    .slogan-text {
        font-size: 1.8rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .valor-card {
        padding: var(--spacing-lg);
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .cronograma-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cronograma-number {
        margin: 0 auto var(--spacing-md);
    }
    
    .final-slogan {
        font-size: 1.5rem;
    }
    
    .pnae-chart-container {
        width: 250px;
        height: 250px;
    }
    
    .chart-1, .chart-2, .chart-3 {
        width: 60px;
    }
    
    .chart-1 { height: 90px; }
    .chart-2 { height: 140px; }
    .chart-3 { height: 110px; }
}

@media (max-width: 480px) {
    .slogan-text {
        font-size: 1.5rem;
    }
    
    .final-slogan {
        font-size: 1.25rem;
    }
    
    .pnae-visual {
        height: 300px;
    }
    
    .pnae-chart-container {
        width: 200px;
        height: 200px;
    }
}

/* ===============================
   PRICING CARDS - Seção de Planos IA
   =============================== */

.pricing-card .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 0;
    color: var(--text-color);
    flex-shrink: 0;
}

.pricing-card .feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.feature-item span:not(.feature-icon) {
    flex: 1;
    line-height: 1.5;
}

/* Trust badges styling */
.pricing-trust-section {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .pricing-trust-section {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
}

/* IA Benefits Section */
.ia-benefits {
    padding: var(--spacing-xxl) 0;
    background: #f8f9fa;
}

.results-section {
    margin: var(--spacing-xxl) 0;
}

.results-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.result-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.result-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.how-to-close-section {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
}

.close-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-color);
}

.close-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.close-step-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.close-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.close-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.close-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.close-step-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.close-step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .close-steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .close-step-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }
    
    .results-title,
    .close-title {
        font-size: 1.5rem;
    }
}