/* RESET E BASE */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f8fa;
    color: #23272a;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER FIXO NO TOPO */
.ziro-navbar {
    background: #fff;
    border-bottom: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(30,41,59,0.04);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.2s;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.ziro-logo {
    text-decoration: none;
    color: #1e293b;
    font-weight: 800;
    font-size: 2.3rem;
    letter-spacing: 2.5px;
    margin-right: 2.5rem;
    padding-left: 0.2rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.ziro-logo .logo-image {
    height: 70px;
    width: auto;
    /* max-width: 120px; */
    transition: transform 0.2s;
}
.ziro-logo:hover {
    color: #2563eb;
}
.ziro-logo:hover .logo-image {
    transform: scale(1.05);
}

/* MENU HAMBÚRGUER - IMPLEMENTAÇÃO LIMPA */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* NAVEGAÇÃO DESKTOP */
.ziro-navbar nav {
    display: flex;
    gap: 2.8rem;
    align-items: center;
    margin-left: auto;
}

.ziro-navbar nav a {
    color: #23272a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.2s, background 0.2s;
    padding: 14px 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ziro-navbar nav a:hover, .ziro-navbar nav a.btn-primary {
    /* color: #2563eb; */
    /* background: #f1f5f9; */
}
.btn-primary {
    background: #1e293b;
    color: #fff;
    padding: 0.7rem 1.7rem;
    border: none;
    border-radius: 32px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(30,41,59,0.07);
}
.btn-primary:hover {
    background: #2563eb;
    color: #fff;
}

/* HERO MELHORADO */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0 3rem 0;
    color: #23272a;
    min-height: 70vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
}

.hero-highlight {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    color: #22c55e;
}

.highlight-text {
    color: #2563eb;
    font-size: 1.1rem;
}

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

.btn-secondary {
    background: #f1f5f9;
    color: #2563eb;
    padding: 0.7rem 1.7rem;
    border: 2px solid #2563eb;
    border-radius: 32px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.hero-img {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.dashboard-preview {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(30,41,59,0.10);
    border: 1px solid #e5e7eb;
}

.preview-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.preview-dots span:first-child {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #f59e0b;
}

.preview-dots span:last-child {
    background: #22c55e;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.preview-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: #f7f8fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.preview-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.preview-stats .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.preview-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 60px;
    padding: 0.5rem;
    background: #f7f8fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #2563eb, #60a5fa);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.chart-bar:nth-child(1) { height: 40%; }
.chart-bar:nth-child(2) { height: 70%; }
.chart-bar:nth-child(3) { height: 90%; }
.chart-bar:nth-child(4) { height: 60%; }

/* PROBLEMA E SOLUÇÃO */
.problem-solution {
    background: #fff;
    padding: 5rem 0 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.problem-section, .solution-section {
    margin-bottom: 4rem;
}

.problem-section h2, .solution-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.problem-card:hover {
    box-shadow: 0 4px 20px rgba(30,41,59,0.08);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.problem-card:hover .problem-icon {
    background: #334155;
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.problem-card p {
    color: #475569;
    line-height: 1.6;
}

.solution-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

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

.transformation-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.funnel-step {
    background: #1e293b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 150px;
    text-align: center;
}

.funnel-arrow {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: bold;
}

.solution-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f172a;
}

.solution-text p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-benefits {
    list-style: none;
    padding: 0;
}

.solution-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

/* ESTATÍSTICAS */
.stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem 0 2rem 0;
    color: #fff;
    border-bottom: none;
}

.stats-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.stats-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stats-grid .stat-item {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(30,41,59,0.10);
    color: #1e293b;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
}

.stats-grid .stat-item:hover {
    box-shadow: 0 8px 32px rgba(30,41,59,0.15);
}

.stats-grid .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
    display: block;
}

.stats-grid .stat-label {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stats-grid .stat-item p {
    color: #475569;
    line-height: 1.5;
}

/* AUTORIDADE */
.authority-section {
    background: #fff;
    padding: 5rem 0 2rem 0;
}

.authority-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.authority-section .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.authority-card {
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(30,41,59,0.04);
}

.authority-card:hover {
    box-shadow: 0 4px 20px rgba(30,41,59,0.08);
}

.authority-icon {
    width: 64px;
    height: 64px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.authority-card:hover .authority-icon {
    background: #334155;
    transform: scale(1.1);
}

.authority-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.authority-card p {
    color: #475569;
    line-height: 1.6;
}

/* SERVIÇOS MELHORADOS */
.servicos {
    background: #fff;
    padding: 5rem 0 2rem 0;
}

.servicos h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.servicos .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(30,41,59,0.04);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30,41,59,0.1);
}

.servico-card.destaque {
    border-color: #2563eb;
    background: #f1f5f9;
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.servico-card:hover .servico-icon {
    background: #334155;
    transform: scale(1.1);
}

.servico-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.servico-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.servico-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.servico-benefits span {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
}

.servico-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.servico-link:hover {
    gap: 0.75rem;
}

/* CTA FINAL - Mesma paleta das páginas de serviço */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 5rem 0 2rem 0;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefit {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    background: #fbbf24;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    border: 2px solid #fff;
    cursor: pointer;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #1e293b;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 1.5rem;
    font-style: italic;
}

/* BENEFÍCIOS */
.beneficios {
    background: #fff;
    padding: 4rem 0 2rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.beneficios h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1e293b;
}
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.beneficio-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,41,59,0.04);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, border 0.2s;
}
.beneficio-card:hover {
    box-shadow: 0 4px 20px rgba(30,41,59,0.08);
    border-color: #2563eb;
}
.beneficio-icon {
    width: 64px;
    height: 64px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}
.beneficio-card:hover .beneficio-icon {
    background: #334155;
    transform: scale(1.1);
}
.beneficio-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1e293b;
}
.beneficio-card p {
    color: #64748b;
    line-height: 1.5;
}

/* COMO FUNCIONA */
.como-funciona {
    background: #f8fafc;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.como-funciona h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}
.como-funciona .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}
.timeline-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.timeline-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 200px;
    min-height: 280px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(30,41,59,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.timeline-step:hover {
    box-shadow: 0 4px 20px rgba(30,41,59,0.08);
    transform: translateY(-2px);
}
.timeline-icon {
    width: 64px;
    height: 64px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.timeline-step:hover .timeline-icon {
    background: #334155;
    transform: scale(1.1);
}
.timeline-divider {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 1px;
}
.timeline-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.timeline-step p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
.timeline-step > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FAQ */
.faq {
    background: #f7f8fa;
    padding: 4rem 0;
}
.faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1e293b;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-list details {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-list details[open] {
    box-shadow: 0 4px 20px rgba(30,41,59,0.08);
}
.faq-list summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    transition: background 0.2s;
    position: relative;
}
.faq-list summary:hover {
    background: #f8fafc;
}
.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.2s;
}
.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-list p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
    .container {
        padding: 0 20px;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .header-flex {
        justify-content: space-between;
        gap: 1rem;
    }
    .hamburger-menu {
        display: flex;
    }
    .ziro-navbar nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        margin-left: 0;
        transform: none;
    }
    .ziro-navbar nav.active {
        right: 0;
    }
    .ziro-navbar nav a {
        font-size: 1.25rem;
        padding: 1rem 0;
        width: auto;
        max-width: none;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        color: #1e293b;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
        border-bottom: 2px solid transparent;
    }
    .ziro-navbar nav a:last-child {
        background: #1e293b;
        color: #fff;
        margin-top: 1rem;
        padding: 1rem 2rem;
        border-radius: 6px;
    }
    .ziro-navbar nav a:hover {
        border-bottom: 2px solid #1e293b;
    }
    .ziro-navbar nav .dropdown {
        width: auto;
        max-width: none;
    }
    .ziro-navbar nav .dropdown-toggle {
        width: auto;
        justify-content: center;
        padding: 1rem 0;
        border-radius: 0;
        background: transparent;
        color: #1e293b;
        font-size: 1.25rem;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 2px solid transparent;
        transition: color 0.2s;
    }
    .ziro-navbar nav .dropdown-toggle:hover {
        color: #1e293b;
        border-bottom: 2px solid #1e293b;
    }
    .ziro-navbar nav .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 1rem;
        width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .ziro-navbar nav .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .ziro-navbar nav .dropdown-menu a {
        padding: 0.8rem 0;
        border-radius: 0;
        background: transparent;
        color: #475569;
        font-size: 1rem;
        width: auto;
        text-align: center;
        margin-bottom: 0;
        border-bottom: 2px solid transparent;
    }
    .ziro-navbar nav .dropdown-menu a:hover {
        background: transparent;
        color: #1e293b;
        border-bottom: 2px solid #1e293b;
    }
    .ziro-logo {
        font-size: 2rem;
        margin-right: 0;
    }
    .ziro-logo .logo-image {
        height: 40px;
    }
}

@media (max-width: 940px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-img img {
        max-width: 100%;
    }
    .timeline-modern {
        flex-direction: column;
        gap: 2rem;
    }
    .timeline-divider {
        width: 2px;
        height: 40px;
        flex: none;
    }
    .timeline-step {
        flex: none;
    }
    .beneficios-grid, .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }
    body {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 0.95rem;
    }
    .hero-img img {
        max-width: 100%;
    }
    .beneficios-grid, .servicos-grid {
        grid-template-columns: 1fr;
    }
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    .header-flex {
        padding: 0 1rem;
    }
    .hamburger-menu {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .hero-img img {
        max-width: 100%;
    }
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .beneficio-card, .servico-card {
        padding: 1.5rem;
    }
    .ziro-logo {
        font-size: 1.8rem;
    }
    .ziro-logo .logo-image {
        height: 35px;
    }
}

/* DROPDOWN */
.dropdown {
    position: relative;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.4rem 1.1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    color: #23272a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    background: none;
    border: none;
}
.dropdown-toggle:hover, .dropdown.open .dropdown-toggle, .dropdown-toggle:focus {
    background: #f1f5f9;
    color: #2563eb;
}
.dropdown-arrow {
    transition: transform 0.2s;
    color: #23272a;
}
.dropdown-toggle:hover .dropdown-arrow, 
.dropdown.open .dropdown-arrow, 
.dropdown-toggle:focus .dropdown-arrow {
    color: #2563eb;
}
.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(30,41,59,0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 4px;
    margin: 0.2rem;
}
.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

@media (min-width: 901px) {
    .hamburger-menu {
        display: none !important;
    }
    .ziro-navbar nav {
        position: static !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 2.8rem !important;
        transition: none !important;
        z-index: auto !important;
        padding: 0 !important;
        margin-left: auto !important;
        transform: none !important;
    }
} 
.ziro-footer{
    background: #0f172a;
    color: #64748b;
    padding: 2rem 0;
    text-align: center;
}
@media (max-width: 600px) {
    .solution-highlight{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

/* HERO IMPACTANTE exclusivo do index.html */
.home .hero-bg {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url(https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) center/cover no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.home .hero {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 0;
}
.home .hero-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 3;
}
@media (max-width: 900px) {
    .home .hero-flex {
        flex-direction: column;
        gap: 32px;
    }
}
.home .hero-text {
    position: relative;
    z-index: 3;
    color: #fff!important;
    background: rgba(0,0,0,0.45);
    border-radius: 18px;
    padding: 40px 32px 32px 32px;
    max-width: 540px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.home .hero-text h1 {
    margin-bottom: 22px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}
.home .hero-subtitle {
    margin-bottom: 28px;
    font-size: 1.15rem;
    color: #e0e0e0;
}
.home .hero-highlight {
    margin-bottom: 32px;
    justify-content: center;
}
.home .highlight-text {
    font-size: 1rem;
    color: #04722b;
}
.home .hero-cta {
    justify-content: center;
    margin-top: 18px;
    gap: 20px;
}
.home .btn-primary {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff!important;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 12px 0 rgba(34,197,94,0.18);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.home .btn-primary:hover, .home .btn-primary:focus {
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 4px 18px 0 rgba(34,197,94,0.28);
}
.home .btn-secondary {
    background: #fff;
    color: #16a34a !important;
    border: 2px solid #22c55e;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 12px 0 rgba(34,197,94,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.home .btn-secondary:hover, .home .btn-secondary:focus {
    background: #bbf7d0;
    color: #166534 !important;
    box-shadow: 0 4px 18px 0 rgba(34,197,94,0.18);
}
@media (max-width: 900px) {
    .home .hero-text {
        max-width: 100%;
        padding: 28px 16px 24px 16px;
    }
}
@media (max-width: 600px) {
    .home .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

.home .hero-badge {
    display: inline-block;
    background: #fff;
    color: #1e293b;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px 0 rgba(30,41,59,0.07);
    text-align: center;
    border: 1.5px solid #1e293b;
    opacity: 0.98;
}

.home .hero-text h1 {
    color: #fff;
}

.home .hero-subtitle {
    color: #f1f5f9;
}

.home .btn-primary {
    background: #1e293b;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(30,41,59,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.home .btn-primary:hover, .home .btn-primary:focus {
    background: #2563eb;
    color: #fff !important;
    box-shadow: 0 4px 18px 0 rgba(37,99,235,0.13);
}

.home .btn-secondary {
    background: #fff;
    color: #1e293b !important;
    border: 2px solid #1e293b;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 8px 0 rgba(30,41,59,0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.home .btn-secondary:hover, .home .btn-secondary:focus {
    background: #f1f5f9;
    color: #2563eb !important;
    box-shadow: 0 4px 18px 0 rgba(37,99,235,0.10);
}