/* Como Funciona */
.section-como-funciona {
    background: linear-gradient(to bottom right, #fffbeb, #dbeafe);
}

.card-rotina {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rotina-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--blue-700), var(--blue-900));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: 1.25rem;
    color: var(--blue-900);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-text p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.rotina-step p {
    font-size: 1.125rem;
    color: var(--gray-700);
    padding-top: 4px;
}

.rotina-resultado {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.rotina-resultado p {
    font-size: 1.25rem;
    color: var(--blue-900);
    font-weight: 600;
    text-align: center;
}

.rotina-resultado span {
    color: var(--yellow-600);
}

/* CTA Final */
.section-cta {
    position: relative;
    background: linear-gradient(to bottom right, var(--blue-900), var(--blue-800), var(--blue-900));
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-effects .effect-1 {
    top: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: var(--yellow-500);
}

.cta-effects .effect-2 {
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: var(--blue-600);
}

.section-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 24px;
}

.section-cta p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--blue-900);
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #0c1e3d;
    color: white;
    padding: 48px 24px;
    text-align: center;
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

footer p {
    color: #bfdbfe;
    font-size: 0.875rem;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

#servicos .animate-on-scroll.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

#publico .animate-on-scroll.visible {
    animation: slideInRight 0.6s ease-out forwards;
}

#jornada .animate-on-scroll.visible {
    animation: fadeInScale 0.7s ease-out forwards;
}

#como-funciona .animate-on-scroll.visible {
    animation: zoomIn 0.8s ease-out forwards;
}

#depoimento .animate-on-scroll.visible {
    animation: fadeInUp 1s ease-out forwards;
}

/* Delays para animações em sequência */
.card-diferencial:nth-child(1) { animation-delay: 0s; }
.card-diferencial:nth-child(2) { animation-delay: 0.1s; }
.card-diferencial:nth-child(3) { animation-delay: 0.2s; }
.card-diferencial:nth-child(4) { animation-delay: 0.3s; }
.card-diferencial:nth-child(5) { animation-delay: 0.4s; }
.card-diferencial:nth-child(6) { animation-delay: 0.5s; }

.card-servico:nth-child(1) { animation-delay: 0s; }
.card-servico:nth-child(2) { animation-delay: 0.15s; }
.card-servico:nth-child(3) { animation-delay: 0.3s; }

.card-jornada:nth-child(1) { animation-delay: 0s; }
.card-jornada:nth-child(2) { animation-delay: 0.2s; }
.card-jornada:nth-child(3) { animation-delay: 0.4s; }

.card-publico:nth-child(1) { animation-delay: 0s; }
.card-publico:nth-child(2) { animation-delay: 0.1s; }
.card-publico:nth-child(3) { animation-delay: 0.2s; }
.card-publico:nth-child(4) { animation-delay: 0.3s; }
.card-publico:nth-child(5) { animation-delay: 0.4s; }

/* Responsivo */
@media (max-width: 768px) {
    /* ============================================
       MOBILE - CONFIGURAÇÃO GLOBAL ANTI-OVERFLOW
       ============================================ */
    html,
    body {
        width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* ============================================
       HEADER MOBILE - LOGO CENTRALIZADO
       ============================================ */
    header {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 15px 20px !important;
        background: transparent !important;
        position: static !important;
        box-shadow: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: auto !important;
    }
    
    header,
    header.scrolled {
        background: transparent !important;
        box-shadow: none !important;
        position: static !important;
    }
    
    header.scrolled {
        padding: 15px 20px !important;
        background: transparent !important;
    }
    
    header .container {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        background: transparent !important;
    }
    
    header nav {
        display: none !important;
    }
    
    header .logo {
        height: 50px !important;
        width: auto !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    header .logo img {
        height: 50px !important;
        width: auto !important;
        filter: none !important;
    }
    
    /* ============================================
       SEÇÕES E CONTAINERS MOBILE
       ============================================ */
    section {
        width: 100%;
        padding: 50px 20px !important;
        overflow: visible !important;
        margin: 0 !important;
    }
    
    .container,
    .container-small {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }
    
    /* ============================================
       TÍTULOS MOBILE
       ============================================ */
    h2 {
        font-size: 1.5rem !important;
        margin-bottom: 30px !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    /* ============================================
       GRIDS MOBILE
       ============================================ */
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }
    
    /* Seção público - corrigir overflow */
    .card-publico {
        padding: 16px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-publico span {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Serviços mobile */
    .servicos-list {
        width: 100%;
    }
    
    .card-servico {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-servico .arrow {
        display: none;
    }
    
    .servico-content {
        width: 100%;
    }
    
    .servico-content h3 {
        font-size: 1.2rem;
    }
    
    .servico-content p {
        font-size: 0.95rem;
    }
    
    /* ============================================
       HERO MOBILE
       ============================================ */
    .hero {
        padding: 80px 20px 60px !important;
        min-height: auto !important;
        width: 100% !important;
    }
    
    .hero-content {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-buttons {
        width: 100% !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    /* ============================================
       BOTÕES MOBILE
       ============================================ */
    .btn-primary,
    .btn-secondary,
    .btn-white {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        height: auto !important;
        min-height: 48px !important;
        text-align: center !important;
        justify-content: center !important;
        margin-top: 24px !important;
    }
    
    .btn-primary svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }
    
    .btn-container,
    .cta-buttons {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 24px !important;
    }
    
    /* Diferenciais mobile */
    .card-diferencial {
        padding: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-diferencial h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .card-diferencial p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Jornada mobile */
    .card-jornada {
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-jornada h3 {
        font-size: 1.2rem;
    }
    
    .card-jornada p {
        font-size: 0.95rem;
    }
    
    /* Reforma Tributária mobile */
    .reforma-content {
        width: 100%;
    }
    
    .reforma-content p {
        font-size: 1.05rem;
    }
    
    /* Rotina mobile */
    .card-rotina {
        padding: 24px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .step-text h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .step-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .rotina-resultado p {
        font-size: 1rem;
    }
    
    /* ============================================
       CARROSSEL DE DEPOIMENTOS MOBILE - PERFEITO
       ============================================ */
    .section-depoimento {
        padding: 50px 0 !important;
    }
    
    .section-depoimento .container-small {
        padding: 0 20px !important;
    }
    
    .carousel-container {
        width: 100% !important;
        display: flex !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    .carousel-wrapper {
        width: 100% !important;
        flex: 1 !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .carousel-track {
        display: flex !important;
        width: 100% !important;
    }
    
    .carousel-slide {
        width: 100% !important;
        min-width: 100% !important;
        flex-shrink: 0 !important;
    }
    
    .card-depoimento {
        padding: 20px 16px !important;
        width: 100% !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .card-depoimento .stars {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }
    
    .card-depoimento .quote {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        flex: 1 !important;
    }
    
    .card-depoimento .author {
        font-size: 0.85rem !important;
    }
    
    .carousel-dots {
        display: flex !important;
        margin-top: 20px !important;
        gap: 6px !important;
        justify-content: center !important;
    }
    
    .carousel-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .carousel-dot.active {
        width: 24px !important;
    }
    
    /* Rotina mobile */
    .card-rotina {
        padding: 24px 20px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .step-text h4 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .step-text p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .rotina-resultado p {
        font-size: 1rem !important;
    }
    
    /* Cards públicos */
    .card-publico {
        padding: 16px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .card-publico span {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    /* Cards serviços */
    .servicos-list {
        width: 100% !important;
    }
    
    .card-servico {
        flex-direction: column !important;
        padding: 24px 20px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .servico-icon {
        width: 48px !important;
        height: 48px !important;
        margin: 0 auto 16px !important;
    }
    
    .servico-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .card-servico .arrow {
        display: none !important;
    }
    
    .servico-content h3 {
        font-size: 1.2rem !important;
    }
    
    .servico-content p {
        font-size: 0.95rem !important;
    }
    
    /* Cards diferenciais */
    .card-diferencial {
        padding: 20px !important;
        width: 100% !important;
    }
    
    .card-diferencial h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .card-diferencial p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    /* Cards jornada */
    .card-jornada {
        width: 100% !important;
    }
    
    .card-jornada h3 {
        font-size: 1.2rem !important;
    }
    
    .card-jornada p {
        font-size: 0.95rem !important;
    }
    
    /* Reforma */
    .reforma-content p {
        font-size: 1.05rem !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remover sublinhado de todos os links */
a {
    text-decoration: none;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none;
}

:root {
    --blue-900: #1e3a8a;
    --blue-800: #1e40af;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --yellow-600: #ca8a04;
    --yellow-500: #eab308;
    --yellow-400: #facc15;
    --gray-50: #f9fafb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 24px 0;
}

header.scrolled {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

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

header .logo img {
    height: 56px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

header.scrolled .logo img {
    filter: none;
}

header nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

header nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

header nav a:hover {
    color: var(--yellow-400);
}

header.scrolled nav a {
    color: var(--gray-700);
    text-shadow: none;
}

header.scrolled nav a:hover {
    color: var(--blue-700);
}

header nav .btn-header {
    background: linear-gradient(to right, var(--yellow-500), var(--yellow-600));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.3s;
}

header nav .btn-header:hover {
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    padding-top: 140px;
    background: linear-gradient(to bottom right, var(--blue-900), var(--blue-800), var(--blue-900));
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./assets/bghero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.8), rgba(30, 64, 175, 0.7), rgba(30, 58, 138, 0.8));
}

.hero-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.effect-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-effects .effect-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: var(--yellow-500);
}

.hero-effects .effect-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: var(--blue-600);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--yellow-400);
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #bfdbfe;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--yellow-500);
    color: var(--blue-900);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

a.btn-primary {
    text-decoration: none !important;
}

.btn-primary:hover {
    background: var(--yellow-400);
    transform: scale(1.05);
    text-decoration: none !important;
}

a.btn-primary:hover {
    text-decoration: none !important;
}

/* Remover sublinhado dos links dos botões */
.btn-primary,
.btn-header,
a.btn-primary,
a.btn-header {
    text-decoration: none !important;
}

.btn-primary:hover,
.btn-header:hover,
a.btn-primary:hover,
a.btn-header:hover {
    text-decoration: none !important;
}

.btn-primary:active,
.btn-header:active,
a.btn-primary:active,
a.btn-header:active {
    text-decoration: none !important;
}

.btn-primary:focus,
.btn-header:focus,
a.btn-primary:focus,
a.btn-header:focus {
    text-decoration: none !important;
}

.btn-primary:visited,
.btn-header:visited,
a.btn-primary:visited,
a.btn-header:visited {
    text-decoration: none !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(to top, white, transparent);
}

/* Seções */
section {
    padding: 80px 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--blue-900);
}

h2 span {
    color: var(--yellow-600);
}

/* Container de botão centralizado */
.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* Diferenciais */
.section-diferenciais {
    background: var(--gray-50);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-diferencial {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card-diferencial:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-diferencial .icon {
    margin-bottom: 16px;
    color: var(--yellow-600);
}

.card-diferencial h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 12px;
}

.card-diferencial p {
    color: var(--gray-600);
}

/* Serviços */
.servicos-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.card-servico {
    background: var(--gray-50);
    padding: 48px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s;
}

.card-servico:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.servico-icon.bg-blue {
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-700));
}

.servico-icon.bg-yellow {
    background: linear-gradient(to bottom right, var(--yellow-500), var(--yellow-600));
}

.servico-icon.bg-blue-dark {
    background: linear-gradient(to bottom right, var(--blue-700), var(--blue-900));
}

.servico-content {
    flex: 1;
}

.servico-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 12px;
}

.servico-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.card-servico .arrow {
    color: var(--yellow-600);
    flex-shrink: 0;
}

/* Reforma Tributária */
.section-reforma {
    background: linear-gradient(to bottom right, #fffbeb, #fef3c7);
    text-align: center;
}

.reforma-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.reforma-content p {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.reforma-content p:last-child {
    margin-bottom: 0;
}

/* Jornada */
.section-jornada {
    background: linear-gradient(to bottom right, var(--blue-900), var(--blue-800));
    color: white;
}

.section-jornada h2 {
    color: white;
}

.section-jornada h2 span {
    color: var(--yellow-400);
}

.card-jornada {
    position: relative;
}

.jornada-num {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(250, 204, 21, 0.2);
    margin-bottom: 16px;
}

.card-jornada h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-jornada p {
    color: #bfdbfe;
    line-height: 1.7;
}

/* Depoimento */
.section-depoimento {
    background: var(--gray-50);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.carousel-btn {
    background: white;
    border: 2px solid var(--blue-900);
    color: var(--blue-900);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--blue-900);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: var(--blue-900);
    transform: scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--blue-900);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--blue-700);
}

.card-depoimento {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--yellow-500);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-depoimento .stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--yellow-600);
}

.card-depoimento .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
    flex: 1;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card-depoimento .author {
    color: var(--blue-900);
    font-weight: 600;
    white-space: normal;
    word-wrap: break-word;
}

/* Público */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.card-publico {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s;
}

.card-publico:hover {
    background: #dbeafe;
}

.card-publico svg {
    color: var(--yellow-600);
    flex-shrink: 0;
}

.card-publico span {
    font-size: 1.125rem;
    color: var(--gray-800);
}

/*