/* ============================================
   PÁGINAS DE SOLUÇÕES — SOLNER
   CSS compartilhado para todas as soluções
============================================ */


html { overflow-x: hidden; }

body { margin: 0; padding: 0; overflow-x: hidden; }

.solucao-premium-page {
    background: var(--white);
    overflow-x: hidden;
}


/* ============================================
   HERO SECTION
============================================ */
.hero-solucao-premium {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 120px;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.72);
    z-index: 2;
}

.hero-gradient-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,182,0,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220,88,42,0.12) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 3;
}

.hero-grid-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-cinema {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.2);
}

.badge-pulse {
    position: relative;
    width: 8px; height: 8px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    margin: 0 0 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-inline {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.feature-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

/* .btn-hero-cta, .scroll-indicator, @keyframes arrow-float — definidos globalmente em base.css */

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}


.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================
   BENEFÍCIOS / FEATURES GRID
============================================ */
.beneficios-section {
    padding: 100px 0;
    background: var(--white);
}

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

.beneficio-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-md);
    text-align: center;
}

/* hover e ::before → centralizado em cards.css */

.beneficio-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(220,88,42,0.1) 0%, rgba(255,182,0,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-orange);
}

.beneficio-icon svg { width: 28px; height: 28px; }

.beneficio-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 12px;
}

.beneficio-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   COMO FUNCIONA
============================================ */
.como-funciona-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.passos-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, #dc582a, #FFB600);
    z-index: 0;
}

.passo-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.passo-numero {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #dc582a 0%, #ea580c 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(220,88,42,0.35);
}

.passo-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 10px;
}

.passo-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   DADOS TÉCNICOS / SPECS — LAYOUT PREMIUM
============================================ */
.specs-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

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

.specs-texto h3 {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.specs-texto h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
    margin-top: 16px;
}

.specs-texto p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-500);
    margin: 0;
}

.specs-lista-col {
    display: flex;
    align-items: flex-start;
}

.specs-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.specs-lista li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.55;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: var(--transition-base);
}

.specs-lista li:hover {
    border-color: var(--accent-orange);
    transform: translateX(4px);
}

.specs-lista li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"), linear-gradient(135deg, #dc582a, #FFB600);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px, 100%;
    border-radius: 50%;
    margin-top: 1px;
}

/* ============================================
   DEPOIMENTOS
============================================ */
.depoimento-solucao {
    padding: 100px 0;
    background: var(--gray-50);
}

.depoimentos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.dep-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-smooth);
}

/* hover e ::before → centralizado em cards.css */

.dep-stars { color: var(--accent-yellow); font-size: 18px; margin-bottom: 16px; }

.dep-texto {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    font-style: italic;
    margin: 0 0 24px;
}

.dep-autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dep-inicial {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2b9e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.dep-info strong { display: block; font-size: 15px; color: var(--gray-800); }
.dep-info span { font-size: 13px; color: var(--gray-500); }

/* ============================================
   FAQ
============================================ */
.faq-solucao-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover { border-color: var(--accent-orange); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-blue);
    gap: 16px;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   CTA FINAL
============================================ */
.cta-solucao-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #001489 0%, #001f6b 60%, #0d1f6a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-solucao-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(220,88,42,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-solucao-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    color: var(--white);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-solucao-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 40px;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* .btn-cta-primary e .btn-cta-secondary — definidos globalmente em base.css */

/* ============================================
   NÚMEROS DESTAQUE (barra rápida)
============================================ */
.numeros-solucao-section {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.numeros-solucao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.numero-solucao-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--gray-200);
}

.numero-solucao-item:last-child { border-right: none; }

.numero-solucao-item .valor {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
    display: block;
}

.numero-solucao-item .rotulo {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .beneficios-grid { grid-template-columns: repeat(2, 1fr); }
    .passos-grid { grid-template-columns: repeat(2, 1fr); }
    .passos-grid::before { display: none; }
    .specs-grid { grid-template-columns: 1fr; gap: 40px; }
    .specs-section { padding: 80px 0; }
    .numeros-solucao-grid { grid-template-columns: repeat(2, 1fr); }
    .numero-solucao-item:nth-child(2) { border-right: none; }
    .numero-solucao-item:nth-child(3),
    .numero-solucao-item:nth-child(4) { border-top: 1px solid var(--gray-200); }
}

@media (max-width: 768px) {
    .hero-solucao-premium { padding-top: 120px; padding-bottom: 80px; }
    .hero-title { font-size: 32px; }
    .beneficios-grid { grid-template-columns: 1fr; }
    .passos-grid { grid-template-columns: 1fr; }
    .depoimentos-row { grid-template-columns: 1fr; }
    .specs-texto h3 { font-size: 26px; }
    .specs-section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .numeros-solucao-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-btns { flex-direction: column; align-items: center; }
    .specs-texto h3 { font-size: 24px; }
}
