"/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85A28;
    --secondary-color: #25D366;
    --dark-bg: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --ease-organic: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(60, 60, 60, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.4s var(--ease-organic);
    animation: slideDown 0.6s var(--ease-organic);
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-organic);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s var(--ease-organic);
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-whatsapp-header {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 600;
    transition: all 0.3s var(--ease-organic);
}

.btn-whatsapp-header::after {
    display: none;
}

.btn-whatsapp-header:hover {
    background: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

/* Botão Fixo Laranja */
.btn-fixed-orange {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s var(--ease-organic);
    animation: pulse 2s infinite, fadeInUp 0.8s var(--ease-organic);
}

.btn-fixed-orange:hover {
    background: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.5);
}

.btn-fixed-orange i {
    transition: transform 0.3s var(--ease-bounce);
}

.btn-fixed-orange:hover i {
    transform: translateY(-3px);
}

.btn-fixed-orange i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 35px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.delivery-icon-bg {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.15;
}

.delivery-icon-bg .logo-bg {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s var(--ease-organic) backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s var(--ease-organic) 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 0.8s var(--ease-organic) 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s var(--ease-organic);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInUp 0.8s var(--ease-organic) 0.3s backwards;
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: fadeInUp 0.8s var(--ease-organic) 0.5s backwards;
    z-index: 2;
    margin-left: auto;
    margin-right: -50px;
}

@media (max-width: 768px) {
    .hero-photo-wrapper {
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
    }
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    object-fit: cover;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

/* Seção Problema */
.problema {
    padding: 2.5rem 0 0 0;
    background: var(--dark-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s var(--ease-organic), transform 1s var(--ease-organic);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    padding-bottom: 1rem;
}

.problema-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 0.8s var(--ease-organic), transform 0.8s var(--ease-organic), all 0.4s var(--ease-organic);
    min-width: 150px;
    box-sizing: border-box;
}

.problema-card:nth-child(1) { transition-delay: 0.1s; }
.problema-card:nth-child(2) { transition-delay: 0.15s; }
.problema-card:nth-child(3) { transition-delay: 0.2s; }
.problema-card:nth-child(4) { transition-delay: 0.25s; }
.problema-card:nth-child(5) { transition-delay: 0.3s; }

.problema-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.problema-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-bounce);
}


.problema-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.problema-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

.impact-phrase {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 1s var(--ease-organic) 0.6s, transform 1s var(--ease-organic) 0.6s;
    width: 100%;
    box-sizing: border-box;
}

.impact-phrase.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.impact-phrase p {
    font-size: 1.3rem;
    color: var(--white);
}

/* Seção Solução */
.solucao {
    padding: 2.5rem 0 0 0;;
    background: var(--dark-bg);
}

.solucao .section-title {
    color: var(--white);
}

.solucao .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

.como-funciona .section-title {
    margin-bottom: 1rem;
}

.como-funciona .section-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.solucao .section-title {
    margin-bottom: 0.5rem;
}

.solucao .section-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s var(--ease-organic) 0.2s, transform 1s var(--ease-organic) 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotateY(5deg);
    transition: opacity 0.8s var(--ease-organic), transform 0.8s var(--ease-organic), all 0.4s var(--ease-organic);
}

.beneficio-card:nth-child(1) { transition-delay: 0.1s; }
.beneficio-card:nth-child(2) { transition-delay: 0.15s; }
.beneficio-card:nth-child(3) { transition-delay: 0.2s; }
.beneficio-card:nth-child(4) { transition-delay: 0.25s; }
.beneficio-card:nth-child(5) { transition-delay: 0.3s; }

.beneficio-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0deg);
}

.beneficio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease-bounce);
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
}

.beneficio-icon i {
    font-size: 2rem;
    color: var(--white);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.beneficio-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Novos Cards Estilo Painel */
.beneficio-card-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transform: translateY(60px) scale(0.85);
    transition: opacity 1s var(--ease-organic), transform 1s var(--ease-organic), all 0.5s var(--ease-organic);
    width: 100%;
    box-sizing: border-box;
}

.beneficio-card-panel:nth-child(1) { transition-delay: 0.1s; }
.beneficio-card-panel:nth-child(2) { transition-delay: 0.15s; }
.beneficio-card-panel:nth-child(3) { transition-delay: 0.2s; }
.beneficio-card-panel:nth-child(4) { transition-delay: 0.25s; }
.beneficio-card-panel:nth-child(5) { transition-delay: 0.3s; }
.beneficio-card-panel:nth-child(6) { transition-delay: 0.35s; }

.beneficio-card-panel.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.beneficio-card-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.beneficio-card-panel:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-card-panel:hover .panel-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.5s var(--ease-bounce);
}

.panel-icon {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s var(--ease-organic);
}

.panel-icon i {
    transition: transform 0.4s var(--ease-bounce);
    font-size: 5rem !important;
}

.panel-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.title-white {
    color: var(--white);
    display: inline-block;
}

.title-orange {
    color: var(--primary-color);
    display: inline-block;
    margin-left: 0.5rem;
}

.title-orange-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0 0.3rem;
}

.panel-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Seção Como Funciona */
.como-funciona {
    padding: 2.5rem 0 0 0;;
    background: var(--dark-bg);
}

.passos-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto auto auto auto auto;
    gap: 2rem 1rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    align-items: start;
    position: relative;
}

.passos-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.3;
}


.passo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotateX(10deg);
    transition: opacity 0.9s var(--ease-organic), transform 0.9s var(--ease-organic), all 0.4s var(--ease-organic);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    box-sizing: border-box;
}

.passo-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.passo-card:nth-child(3) {
    grid-column: 3;
    grid-row: 3;
    justify-self: start;
}

.passo-card:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
    justify-self: end;
}

.passo-card:nth-child(7) {
    grid-column: 3;
    grid-row: 7;
    justify-self: start;
}

.passo-card:nth-child(1) { transition-delay: 0.1s; }
.passo-card:nth-child(3) { transition-delay: 0.2s; }
.passo-card:nth-child(5) { transition-delay: 0.3s; }
.passo-card:nth-child(7) { transition-delay: 0.4s; }

.passo-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.passo-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.passo-card:hover .passo-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s var(--ease-bounce);
}

.passo-card {
    position: relative;
}

.passo-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Posiciona os números no centro do grid (coluna 2), alinhados com a linha vertical */
/* Números 1 e 3 centralizados horizontalmente na linha do tempo */
.passo-card:nth-child(1) .passo-number {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 20;
}

.passo-card:nth-child(3) .passo-number {
    position: absolute;
    left: calc(-0.5rem - 25px);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

/* Número 3 (card 5) centralizado horizontalmente na linha do tempo */
.passo-card:nth-child(5) .passo-number {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 20;
}

/* Para o card 7, o número fica na borda esquerda */
.passo-card:nth-child(7) .passo-number {
    position: absolute;
    left: calc(-0.5rem - 25px);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.passo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 0.75rem;
    transition: transform 0.4s var(--ease-bounce);
    flex-shrink: 0;
}

.passo-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.passo-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 0;
    line-height: 1.4;
}

.passo-arrow {
    display: none;
}


.nota-destaque {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 1s var(--ease-organic) 0.5s, transform 1s var(--ease-organic) 0.5s;
    width: 100%;
    box-sizing: border-box;
}

.nota-destaque.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nota-destaque p {
    font-size: 1.2rem;
    color: var(--white);
}

/* Seção Linha do Tempo */
.timeline-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.timeline-section .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    width: 100%;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 4px var(--dark-bg), 0 0 0 6px var(--primary-color);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: calc(50% - 3rem);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-organic), transform 0.8s var(--ease-organic), all 0.4s var(--ease-organic);
    box-sizing: border-box;
}

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

.timeline-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Alternância automática: ímpar à esquerda, par à direita */
.timeline-item:nth-child(odd) .timeline-card {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
    margin-right: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.4s var(--ease-bounce);
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
}

.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.timeline-item:nth-child(1) .timeline-card {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(2) .timeline-card {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(3) .timeline-card {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(4) .timeline-card {
    transition-delay: 0.4s;
}

/* Seção Diferenciais */
.diferenciais {
    padding: 2.5rem 0 0 0;;
    background: var(--dark-bg);
    color: var(--white);
}

.diferenciais .section-title {
    color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
    transition: opacity 0.8s var(--ease-organic), transform 0.8s var(--ease-organic), all 0.4s var(--ease-organic);
    width: 100%;
    box-sizing: border-box;
}

.diferencial-item:nth-child(1) { transition-delay: 0.1s; }
.diferencial-item:nth-child(2) { transition-delay: 0.15s; }
.diferencial-item:nth-child(3) { transition-delay: 0.2s; }
.diferencial-item:nth-child(4) { transition-delay: 0.25s; }
.diferencial-item:nth-child(5) { transition-delay: 0.3s; }
.diferencial-item:nth-child(6) { transition-delay: 0.35s; }

.diferencial-item.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.diferencial-item:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.diferencial-item:hover i {
    transition: transform 0.4s var(--ease-bounce);
}

.diferencial-item i {
    transition: all 0.4s var(--ease-organic);
}

.diferencial-item:hover span {
    color: var(--primary-color);
}

.diferencial-item span {
    transition: all 0.4s var(--ease-organic);
}

.diferencial-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.diferencial-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.diferencial-frase {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 1s var(--ease-organic) 0.7s, transform 1s var(--ease-organic) 0.7s;
    width: 100%;
    box-sizing: border-box;
}

.diferencial-frase.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.diferencial-frase p {
    font-size: 1.3rem;
    color: var(--white);
}

/* FAQ */
.faq {
    padding: 2.5rem 0;
    background: var(--dark-bg);
}

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

.faq-item {
    margin-bottom: 0.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s var(--ease-organic), transform 0.8s var(--ease-organic), all 0.4s var(--ease-organic);
}

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq-item:nth-child(4) { transition-delay: 0.25s; }
.faq-item:nth-child(5) { transition-delay: 0.3s; }

.faq-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.faq-question {
    padding: 1.5rem;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--ease-organic);
}

.faq-question:hover {
    background: #EDEDED;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.4s var(--ease-organic);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Formulário de Contato */
.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-text {
    animation: fadeInLeft 0.8s var(--ease-organic) backwards;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-title span {
    color: var(--dark-bg);
}

.form-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.form-wrapper {
    animation: fadeInRight 0.8s var(--ease-organic) backwards;
}

.contact-form {
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s var(--ease-organic);
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s var(--ease-organic);
    font-family: 'Inter', sans-serif;
    margin-top: 0.25rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.form-message.error {
    display: block;
    background: rgba(234, 29, 45, 0.2);
    color: #EA1D2D;
    border: 1px solid #EA1D2D;
}

/* CTA Final */
.cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-final .section-title {
    color: var(--white);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s var(--ease-organic) backwards;
}

.cta-final .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--ease-organic) 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-organic) 0.4s backwards;
}

.cta-buttons .btn {
    min-width: 250px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: left;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.footer-col h4 {
    text-align: left;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s var(--ease-organic);
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s var(--ease-organic);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s var(--ease-organic);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 1200px) {
    .problemas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .header {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: calc(100vw - 20px);
        border-radius: 25px;
        box-sizing: border-box;
    }

    .header .container {
        padding: 0;
        width: 100%;
    }

    .header-content {
        padding: 0.75rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        position: relative;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero {
        margin-top: 80px;
        padding: 0;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 0;
        align-items: flex-start;
    }

    .hero .container {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-text {
        text-align: left;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
        min-width: 100px;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        box-sizing: border-box;
        text-align: center;
    }

    .hero-image {
        width: 100%;
    }

    .hero-photo-wrapper {
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .delivery-icon-bg {
        display: block;
        opacity: 0.08;
        max-width: 300px;
        left: 50%;
    }

    .delivery-icon-bg .logo-bg {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .problemas-grid {
        grid-template-columns: repeat(5, minmax(150px, 1fr));
        gap: 1rem;
        width: 100%;
    }

    .problema-card {
        padding: 1.25rem 0.75rem;
        min-width: 150px;
        box-sizing: border-box;
    }

    .problema-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
    }

    .problema-icon i {
        font-size: 1.5rem;
    }

    .problema-card h3 {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        width: 100%;
    }

    .beneficio-card-panel {
        width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }

    .panel-title {
        font-size: 1.3rem;
    }

    .panel-icon i {
        font-size: 3rem !important;
    }

    .passos-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto auto auto auto auto auto;
        gap: 1.5rem 0.75rem;
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        align-items: start;
        position: relative;
    }

    .passos-grid::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.3;
    }
    
    .passo-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        justify-self: end;
    }

    .passo-card:nth-child(3) {
        grid-column: 3;
        grid-row: 3;
        justify-self: start;
    }

    .passo-card:nth-child(5) {
        grid-column: 1;
        grid-row: 5;
        justify-self: end;
    }

    .passo-card:nth-child(7) {
        grid-column: 3;
        grid-row: 7;
        justify-self: start;
    }
    
    .passo-card {
        width: 100%;
        max-width: 600px;
        min-height: 250px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    /* Números 1 e 3 centralizados horizontalmente na linha do tempo */
    .passo-card:nth-child(1) .passo-number {
        right: calc(-0.375rem - 25px);
        top: 50%;
        transform: translate(50%, -50%);
    }

    .passo-card:nth-child(3) .passo-number {
        left: calc(-0.375rem - 25px);
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Números 5 e 7 na borda interna */
    .passo-card:nth-child(5) .passo-number {
        right: calc(-0.375rem - 25px);
        top: 50%;
        transform: translate(50%, -50%);
    }

    .passo-card:nth-child(7) .passo-number {
        left: calc(-0.375rem - 25px);
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .btn-fixed-orange {
        bottom: 20px;
        right: 20px;
        padding: 0.9rem 1.3rem;
        font-size: 0.85rem;
        max-width: calc(100vw - 40px);
    }

    .btn-fixed-orange span {
        display: inline;
    }

    .form-section {
        padding: 4rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .problema {
        padding: 3rem 0;
    }

    .solucao {
        padding: 3rem 0;
    }

    .como-funciona {
        padding: 3rem 0;
    }

    .diferenciais {
        padding: 3rem 0;
    }

    .faq {
        padding: 3rem 0;
    }

    .faq-list {
        max-width: 100%;
        width: 100%;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .form-section {
        padding: 3rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .form-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .form-text {
        text-align: left;
        width: 100%;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.75rem;
        width: 100%;
        box-sizing: border-box;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .cta-buttons .btn {
        flex: 1 1 auto;
        min-width: 180px;
        box-sizing: border-box;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        width: 100%;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .header {
        top: 10px;
        width: calc(100% - 20px);
        max-width: calc(100vw - 20px);
        border-radius: 20px;
        box-sizing: border-box;
    }

    .header-content {
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.75rem;
    }

    .hero {
        padding: 0;
        margin-top: 70px;
        margin-bottom: 0;
        align-items: flex-start;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.5rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
        min-width: 85px;
        padding: 0.35rem 0.6rem;
        font-size: 0.5rem;
        text-align: center;
    }

    .delivery-icon-bg {
        max-width: 200px;
        opacity: 0.1;
    }

    .delivery-icon-bg .logo-bg {
        max-width: 200px;
    }

    .section-title {
        font-size: 0.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
        line-height: 1.5;
    }

    .problemas-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.25rem;
        margin-bottom: 0rem;
        padding: 0 0 0.5rem 0;
        width: 100%;
    }

    .problema-card {
        min-width: 0;
        width: 100%;
        padding: 0.5rem 0.25rem;
        flex-shrink: 0;
    }

    .problema-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .problema-icon i {
        font-size: 1rem;
    }

    .problema-card h3 {
        font-size: 0.5rem;
        line-height: 1.4;
    }

    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .beneficio-card {
        padding: 0.75rem 0.625rem;
    }

    .beneficio-card h3 {
        font-size: 0.6rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }

    .beneficio-card p {
        font-size: 0.5rem;
        line-height: 1.5;
    }

    .beneficio-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }

    .beneficio-icon i {
        font-size: 1.1rem;
    }

    .beneficio-card-panel {
        padding: 0.75rem 0.625rem;
    }

    .panel-title {
        font-size: 0.6rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .panel-icon i {
        font-size: 2.5rem !important;
    }

    .panel-icon {
        margin-bottom: 0.75rem;
    }

    .panel-description {
        font-size: 0.5rem;
        line-height: 1.5;
    }

    .passos-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1rem 0.5rem;
        margin-bottom: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        align-items: start;
        position: relative;
    }

    .passos-grid::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.3;
    }

    .passo-card {
        width: 100%;
        padding: 0.75rem 0.625rem;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .passo-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        justify-self: end;
    }

    .passo-card:nth-child(3) {
        grid-column: 3;
        grid-row: 3;
        justify-self: start;
    }

    .passo-card:nth-child(5) {
        grid-column: 1;
        grid-row: 5;
        justify-self: end;
    }

    .passo-card:nth-child(7) {
        grid-column: 3;
        grid-row: 7;
        justify-self: start;
    }

    .passo-card h3 {
        font-size: 0.55rem;
        line-height: 1.4;
    }

    .passo-number {
        font-size: 0.7rem;
        width: 22px;
        height: 22px;
    }

    /* Números 1 e 3 centralizados horizontalmente na linha do tempo */
    .passo-card:nth-child(1) .passo-number {
        right: -0.25rem;
        top: 50%;
        transform: translate(50%, -50%);
    }

    .passo-card:nth-child(3) .passo-number {
        left: calc(-0.25rem - 11px);
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Número 3 (card 5) centralizado horizontalmente na linha do tempo */
    .passo-card:nth-child(5) .passo-number {
        right: -0.25rem;
        top: 50%;
        transform: translate(50%, -50%);
    }

    /* Para o card 7, o número fica na borda esquerda */
    .passo-card:nth-child(7) .passo-number {
        left: calc(-0.25rem - 11px);
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .passo-icon {
        width: 40px;
        height: 40px;
    }

    .passo-icon i {
        font-size: 1rem;
    }

    .diferenciais-grid {
        margin-bottom: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .diferencial-item {
        padding: 0.5rem;
        font-size: 0.55rem;
        gap: 0.5rem;
    }

    .diferencial-item i {
        font-size: 0.7rem;
    }

    .diferencial-item span {
        font-size: 0.55rem;
        line-height: 1.5;
    }

    .impact-phrase,
    .nota-destaque,
    .diferencial-frase {
        padding: 0.75rem;
    }

    .impact-phrase p,
    .nota-destaque p,
    .diferencial-frase p {
        font-size: 0.6rem;
        line-height: 1.5;
    }

    .problema {
        padding: 2.5rem 0 0 0;
        margin-bottom: 0;
    }

    .solucao {
        padding: 2.5rem 0 0 0;
        margin-bottom: 0;
    }

    .como-funciona {
        padding: 2.5rem 0 0 0;
        margin-bottom: 0;
    }

    .timeline-section {
        padding: 2.5rem 0 0 0;
        margin-bottom: 0;
    }

    .timeline-section .section-title {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }

    .timeline-section .section-subtitle {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }

    .timeline-container {
        padding: 1rem 0;
    }

    .timeline-line {
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
    }

    .timeline-item {
        margin-bottom: 2rem;
        padding-left: 0;
    }

    .timeline-item::before {
        left: 50%;
        width: 14px;
        height: 14px;
        box-shadow: 0 0 0 2px var(--dark-bg), 0 0 0 4px var(--primary-color);
        transform: translate(-50%, -50%);
    }

    .timeline-card {
        width: calc(50% - 1.5rem);
        padding: 0.75rem;
    }

    /* Alternância automática no mobile: ímpar à esquerda, par à direita */
    .timeline-item:nth-child(odd) .timeline-card {
        margin-right: auto;
        margin-left: 0;
    }

    .timeline-item:nth-child(even) .timeline-card {
        margin-left: auto;
        margin-right: 0;
    }

    .timeline-card h3 {
        font-size: 0.6rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .timeline-card p {
        font-size: 0.5rem;
        line-height: 1.5;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .timeline-icon i {
        font-size: 1rem;
    }

    .diferenciais {
        padding: 2.5rem 0 0 0;
        margin-bottom: 0;
    }

    .faq {
        padding: 2.5rem 0;
        margin-bottom: 0;
    }

    .faq-question {
        padding: 0 0.75rem 0 0.75rem;
    }

    .faq-question h3 {
        font-size: 0.6rem;
        line-height: 1.4;
    }

    .faq-answer p {
        padding: 0.5rem;
        font-size: 0.5rem;
        line-height: 1.5;
    }

    .form-section {
        padding: 2.5rem 0;
        margin-bottom: 0;
    }

    .form-container {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .form-title {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }

    .form-subtitle {
        font-size: 0.5rem;
        line-height: 1.5;
        margin-bottom: 0.375rem;
    }

    .contact-form {
        padding: 0.75rem;
    }

    .form-group {
        margin-bottom: 0.625rem;
    }

    .form-group label {
        font-size: 0.55rem;
        margin-bottom: 0.25rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.45rem 0.5rem;
        font-size: 0.6rem;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-submit {
        padding: 0.45rem 0.65rem;
        font-size: 0.6rem;
        width: 100%;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-fixed-orange {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        bottom: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }

    .btn-fixed-orange span {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 1.5rem;
    }
}

