﻿@charset "UTF-8";

/* Home page sections (extracted from main/sections.css) */

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-hero-bg-from) 0%, var(--color-hero-bg-to) 100%);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 0.35;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(230, 57, 70, 0.05) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-10) var(--space-4);
}

.hero-title {
    font-size: 40px;
    color: var(--color-hero-title);
    margin-bottom: var(--space-3);
    font-weight: 900;
}

.hero-title .highlight {
    color: var(--bssf-orange-primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--bssf-orange-primary),
        var(--bssf-yellow-accent),
        var(--bssf-red-accent),
        var(--bssf-orange-light),
        var(--bssf-yellow-bright),
        var(--bssf-orange-dark),
        var(--bssf-orange-primary)
    );
    background-size: 300% 100%;
    border-radius: 2px;
    animation: bssfBarFlow 3s linear infinite;
}

@keyframes bssfBarFlow {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-hero-subtitle);
    margin-bottom: var(--space-6);
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number, .stat-symbol {
    display: inline;
    font-size: var(--text-5xl);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--bssf-orange-primary);
    line-height: 1;
}

.stat-symbol {
    font-size: var(--text-3xl);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-hero-stat-lbl);
    margin-top: var(--space-1);
}

.stat-divider {
    color: var(--bssf-orange-primary);
    font-size: var(--text-2xl);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

.hero-video-preview {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    width: 250px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--bssf-orange-primary);
    box-shadow: 0 8px 32px var(--bssf-orange-glow);
}

.hero-video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    position: absolute;
    bottom: var(--space-1);
    left: var(--space-1);
    right: var(--space-1);
    background: rgba(0, 0, 0, 0.7);
    color: var(--bssf-white);
    font-size: var(--text-xs);
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
}

/* === HERO Z LAYOUT === */
.hero-z {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: var(--space-8);
    padding: calc(var(--space-12) + 72px) 0 var(--space-12);
}

.hero-z .hero-content {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-z .hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.hero-z .stat-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-z .stat-divider {
    display: flex;
    align-items: center;
}

.hero-z .hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.hero-z .scroll-indicator {
    position: static;
    transform: none;
    margin-top: var(--space-6);
}

.hero-media {
    display: flex;
    justify-content: flex-end;
}

.hero-media .hero-video-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 380px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-media .video-caption {
    position: absolute;
    bottom: var(--space-2);
    left: var(--space-2);
    background: rgba(0, 0, 0, 0.7);
    padding: var(--space-1) var(--space-2);
    border-radius: 6px;
    font-size: var(--text-xs);
    color: var(--bssf-gray-light);
}


/* --- */

/* === PROBLEMA/SOLUÇÃO SECTION === */
.problem-solution-section {
    background: var(--bssf-white-soft);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-4);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto var(--space-8);
}

.comparison-card {
    background: var(--bssf-white);
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-card {
    border: 2px solid var(--bssf-red-accent);
}

.solution-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 139, 97, 0.05) 100%);
    border: 2px solid var(--bssf-orange-primary);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    text-align: center;
}

.problem-title {
    color: var(--bssf-red-accent);
}

.solution-title {
    color: var(--bssf-orange-primary);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
}

.comparison-list .icon {
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.comparison-arrow {
    font-size: var(--text-4xl);
    color: var(--bssf-orange-primary);
    font-weight: 700;
}

/* === TECH SHOWCASE SECTION (Diferencial Logo Após Hero) === */
.tech-showcase-section {
    background: var(--bssf-gray-darkest);
    padding: var(--space-10) 0;
}

.section-label {
    color: var(--bssf-orange-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--bssf-gray-light);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.showcase-card {
    background: var(--bssf-gray-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.showcase-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-content {
    padding: var(--space-4);
}

.showcase-content h3 {
    color: var(--bssf-white);
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    font-family: var(--font-heading);
    font-weight: 700;
}

.showcase-content p {
    color: var(--bssf-gray-light);
    line-height: 1.6;
    font-size: var(--text-base);
}

/* === TECNOLOGIA SECTION === */
.tech-section {
    background: var(--bssf-gray-dark);
    color: var(--bssf-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.tech-card {
    background: var(--bssf-gray-darkest);
    border: 1px solid var(--bssf-gray-medium);
    border-radius: 12px;
    padding: var(--space-6);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-card:hover {
    border-color: var(--bssf-orange-primary);
    box-shadow: 0 0 30px var(--bssf-orange-glow);
    transform: translateY(-8px);
}

.tech-card.coming-soon {
    opacity: 0.7;
    border-style: dashed;
}

.tech-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.tech-title {
    font-size: var(--text-xl);
    color: var(--bssf-white);
    margin-bottom: var(--space-2);
}

.tech-description {
    font-size: var(--text-base);
    color: var(--bssf-gray-light);
    margin-bottom: var(--space-4);
}

.tech-metric {
    font-size: var(--text-2xl);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--bssf-orange-primary);
    margin-bottom: var(--space-3);
}

.tech-badge {
    display: inline-block;
    background: var(--bssf-orange-primary);
    color: var(--bssf-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* === MODELO OPERACIONAL SECTION === */
.model-section {
    background: var(--bssf-white);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto var(--space-8);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-3);
    align-items: center;
    margin-bottom: var(--space-2);
}

.table-header {
    font-weight: 700;
    font-size: var(--text-lg);
    padding-bottom: var(--space-2);
    border-bottom: 3px solid var(--bssf-orange-primary);
    margin-bottom: var(--space-4);
}

.table-row {
    padding: var(--space-3);
    background: var(--bssf-white-soft);
    border-radius: 8px;
}

.table-cell,
.table-col {
    padding: var(--space-2);
}

.table-divider {
    color: var(--bssf-orange-primary);
    font-weight: 700;
    text-align: center;
}

.highlight-col {
    color: var(--bssf-orange-primary);
}

.highlight-cell {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 139, 97, 0.05) 100%);
    border-radius: 6px;
    font-weight: 600;
}

/* === RESULTADOS SECTION === */
.results-section {
    background: linear-gradient(135deg, var(--bssf-orange-dark) 0%, var(--bssf-red-accent) 100%);
    color: var(--bssf-white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: var(--space-6);
    text-align: center;
}

.result-number {
    font-size: var(--text-4xl);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--bssf-white);
    margin-bottom: var(--space-2);
}

.result-number .plus,
.result-number .percent {
    font-size: var(--text-3xl);
}

.result-label {
    font-size: var(--text-base);
    opacity: 0.9;
}

.result-note {
    font-size: var(--text-sm);
    opacity: 0.7;
    margin-top: var(--space-1);
}

.portfolio-info {
    max-width: 700px;
    margin: 0 auto var(--space-8);
    text-align: center;
}

.portfolio-info h3 {
    font-size: var(--text-2xl);
    color: var(--bssf-white);
    margin-bottom: var(--space-3);
}

.portfolio-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2);
    font-size: var(--text-lg);
}

/* === SUSTENTABILIDADE SECTION === */
.sustainability-section {
    background: var(--bssf-white-soft);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.sustainability-card {
    background: var(--bssf-white);
    border: 2px solid var(--bssf-tech-green);
    border-radius: 12px;
    padding: var(--space-6);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sustainability-card .card-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.sustainability-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.impact-number {
    font-size: var(--text-4xl);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--bssf-tech-green);
    margin: var(--space-3) 0;
}

.sustainability-process {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-6);
    background: var(--bssf-white);
    border-radius: 12px;
    border: 2px solid var(--bssf-orange-primary);
}

.sustainability-process h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--bssf-orange-primary);
}

.process-list {
    list-style: none;
    margin-bottom: var(--space-4);
}

.process-list li {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--bssf-gray-dark);
}

.esg-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--bssf-orange-primary) 0%, var(--bssf-red-accent) 100%);
    color: var(--bssf-white);
    padding: var(--space-2) var(--space-4);
    border-radius: 8px;
    font-weight: 700;
}

.badge-icon {
    font-size: var(--text-xl);
}

/* === BEYOND SECTION === */
.beyond-section {
    background: var(--bssf-white);
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.beyond-card {
    background: var(--bssf-white-soft);
    border: 2px solid var(--bssf-gray-lighter);
    border-radius: 12px;
    padding: var(--space-6);
    transition: all 0.3s ease;
    text-align: center;
}

.beyond-card:hover {
    border-color: var(--bssf-orange-primary);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
    transform: translateY(-4px);
}

.beyond-card .card-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-3);
}

.beyond-card h3 {
    font-size: var(--text-2xl);
    color: var(--bssf-orange-primary);
    margin-bottom: var(--space-2);
}

.card-tagline {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--bssf-gray-darkest);
    margin-bottom: var(--space-3);
}

.card-description {
    font-size: var(--text-base);
    color: var(--bssf-gray-medium);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: var(--bssf-white);
    border-radius: 8px;
    margin-bottom: var(--space-4);
    font-weight: 600;
    color: var(--bssf-orange-primary);
}

.revenue-sources {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.revenue-sources span {
    background: var(--bssf-orange-primary);
    color: var(--bssf-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 600;
}

.dashboard-preview {
    margin-bottom: var(--space-4);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--bssf-orange-primary);
}

.dashboard-preview img {
    width: 100%;
    height: auto;
}

/* === TARGET SECTION === */
.target-section {
    background: var(--bssf-white-soft);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.target-card {
    background: var(--bssf-white);
    border-radius: 12px;
    padding: var(--space-6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.target-card.positive {
    border-left: 4px solid var(--bssf-tech-green);
}

.target-card.negative {
    border-left: 4px solid var(--bssf-red-accent);
}

.target-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.target-card ul {
    list-style: none;
}

.target-card li {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
    color: var(--bssf-gray-dark);
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--bssf-white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bssf-white-soft);
    border-radius: 12px;
    margin-bottom: var(--space-3);
    overflow: hidden;
    border: 1px solid var(--bssf-gray-lighter);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-4);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--bssf-gray-darkest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--bssf-orange-primary);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--bssf-orange-primary);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--space-4);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-4) var(--space-4);
}

.faq-answer p {
    color: var(--bssf-gray-dark);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

/* === CTA FINAL SECTION === */
.final-cta-section {
    background: var(--bssf-gray-darkest);
    color: var(--bssf-white);
}

.qualification-form {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8);
    background: var(--bssf-white);
    border-radius: 16px;
    border: 2px solid var(--bssf-orange-primary);
    box-shadow: 0 0 40px var(--bssf-orange-glow);
}

.form-section {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--bssf-gray-darkest);
    margin-bottom: var(--space-3);
}

.form-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-2);
}

.option-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    background: var(--bssf-white-soft);
    border: 2px solid var(--bssf-gray-lighter);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--bssf-orange-primary);
    background: rgba(255, 107, 53, 0.05);
}

.option-card input {
    display: none;
}

.option-card input:checked + span {
    color: var(--bssf-orange-primary);
    font-weight: 700;
}

.option-card input:checked ~ * {
    border-color: var(--bssf-orange-primary);
    background: rgba(255, 107, 53, 0.1);
}

.form-input,
.form-select {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--bssf-gray-lighter);
    border-radius: 8px;
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--bssf-orange-primary);
    box-shadow: 0 0 0 4px var(--bssf-orange-glow);
}

.form-divider {
    height: 2px;
    background: var(--bssf-gray-lighter);
    margin: var(--space-6) 0;
}

.form-subtitle {
    font-size: var(--text-2xl);
    color: var(--bssf-orange-primary);
    margin-bottom: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-promise {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--bssf-gray-medium);
    margin-top: var(--space-4);
}

