/* ============================================
   HOME PREMIUM - SOLNER
   Página Principal com Layout Moderno
============================================ */


/* ============================================
   CORREÇÃO CRÍTICA - BUG VIEWPORT MOBILE
   Força reset completo de todos os estilos
   que podem estar causando o squeeze
============================================ */

/* Reset agressivo do HTML e Body */
html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body,
body.home,
body.page-template-default,
body.page-template-front-page,
body[class*="body-"],
.body-4,
.body-8 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

/* Força a página principal a ocupar 100% da largura */
.home-premium-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--white);
    overflow-x: hidden !important;
    overflow-y: visible !important;
    position: relative !important;
    left: 0 !important;
}

/* Container padrão */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Garante que seções ocupem 100% da largura */
.hero-slider-section,
.numeros-home-section,
.por-que-section,
.pronto-section,
.por-que-solner-section,
.passos-section,
.funcionamento-section,
.faq-section,
.cta-home-section,
.depoimentos-home-section,
.diferenciais-home-section,
.blog-home-section {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Esconde qualquer elemento do Webflow antigo que possa estar interferindo */
.slide-capa,
.w-slider,
.w-slider-mask,
.w-slide,
.slider-home,
.section .w-slider,
.menu,
.section-1,
.section-3,
.div-block-9,
.div-block-10,
body > .section,
body > .div-block,
.w-nav {
    display: none !important;
}

/* Força o main a ocupar toda a largura */
main,
main.home-premium-page {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

/* Reset de qualquer wrapper que o Webflow pode ter criado */
.w-layout-blockcontainer,
.w-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ============================================
   ANIMAÇÕES
============================================ */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element.delay-1 { transition-delay: 0.1s; }
.fade-in-element.delay-2 { transition-delay: 0.2s; }
.fade-in-element.delay-3 { transition-delay: 0.3s; }
.fade-in-element.delay-4 { transition-delay: 0.4s; }

/* ============================================
   HERO SLIDER - REDESIGN PREMIUM
============================================ */
.hero-slider-section {
    position: relative;
    min-height: auto;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

/* Cada Slide */
.hero-slide {
    position: relative;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 100px;
}

/* Slides inativos ficam sobrepostos sem ocupar espaço */
.hero-slide:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.hero-slide .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}

.hero-slide.active .slide-background {
    transform: scale(1);
}

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

.hero-slide .hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 80%, rgba(220, 88, 42, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(255, 182, 0, 0.10) 0%, transparent 45%);
    z-index: 3;
}

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

/* Linha decorativa lateral removida (conteúdo centralizado) */
.hero-slide::after {
    content: none;
}

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

/* Controles do Slider */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 20;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.slider-arrow svg {
    stroke: var(--white);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(220, 88, 42, 0.6);
}

.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;
    box-shadow: 0 0 8px rgba(220, 88, 42, 0.8),
                0 0 16px rgba(220, 88, 42, 0.4);
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 88, 42, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: radar-ping 2s ease-out infinite;
}

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

@keyframes radar-ping {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    80% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(50px, 5.5vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.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;
}

.text-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: 19px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 44px;
    max-width: 620px;
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #dc582a 0%, #f06030 50%, #dc582a 100%);
    background-size: 200% 100%;
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 6px 28px rgba(220, 88, 42, 0.5),
                0 0 0 0 rgba(220, 88, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    border-radius: 14px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 88, 42, 0.6),
                0 0 0 6px rgba(220, 88, 42, 0.15);
    background-position: 100% 0;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.arrow {
    opacity: 0;
    animation: arrow-float 2s ease-in-out infinite;
}

.arrow-1 { animation-delay: 0s; }
.arrow-2 { animation-delay: 0.3s; }
.arrow-3 { animation-delay: 0.6s; }

@keyframes arrow-float {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ============================================
   NÚMEROS DESTAQUE
============================================ */
.numeros-home-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

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

.numero-item {
    text-align: center;
    color: var(--gray-900);
}

.numero-valor {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.numero-label {
    font-size: 15px;
    color: var(--gray-600);
}

/* ============================================
   POR QUE ENERGIA SOLAR
============================================ */
.por-que-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    margin: 0;
}

.por-que-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.por-que-video {
    position: sticky;
    top: 120px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.por-que-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition-base);
}

.info-card.active .card-icon {
    background: var(--gradient-orange);
}

.card-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(76%) saturate(1447%) hue-rotate(347deg) brightness(92%) contrast(92%);
    transition: var(--transition-base);
}

.info-card.active .card-icon img {
    filter: brightness(0) invert(1);
}

/* SVG icons (Lucide inline) — mesma cor que as img com filter */
.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-orange);
    transition: var(--transition-base);
}

.info-card.active .card-icon svg {
    color: var(--white);
}

.card-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.info-card.active .card-content p {
    max-height: 200px;
    margin-top: 8px;
}

/* ============================================
   ESTOU PRONTO
============================================ */
.pronto-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.pronto-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pronto-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 20px;
}

.pronto-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0 0 32px;
}

.btn-pronto {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(220, 88, 42, 0.3);
}

.btn-pronto:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 88, 42, 0.4);
}

/* ============================================
   POR QUE SOLNER
============================================ */
.por-que-solner-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.solner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solner-row:last-child {
    margin-bottom: 0;
}

.solner-row.reverse {
    direction: rtl;
}

.solner-row.reverse > * {
    direction: ltr;
}

.solner-texto h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 24px;
}

.solner-texto .texto-destaque {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-800);
    margin: 0 0 16px;
    font-weight: 500;
}

.solner-texto p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0 0 24px;
}

.btn-solner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: var(--white);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(220, 88, 42, 0.25);
}

.btn-solner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 88, 42, 0.35);
}

.solner-imagem {
    position: relative;
}

.solner-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ============================================
   PASSO A PASSO
============================================ */
.passos-section {
    padding: 100px 0;
    background: var(--white);
}

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

/* passo-card styles defined in carousel section below */

/* ============================================
   FUNCIONAMENTO - NOVO LAYOUT: 3 colunas + vídeo abaixo
============================================ */
.funcionamento-section {
    padding: 100px 0;
    background: var(--white);
}

/* 3 colunas lado a lado */
.funcionamento-horarios-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.horario-col {
    position: relative;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

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

.horario-col .horario-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horario-col .horario-icon img {
    width: 56px;
    height: 56px;
}

.horario-col h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.horario-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Vídeo grande abaixo */
.funcionamento-video-full {
    width: 100%;
}

.funcionamento-video-full .video-wrapper {
    position: relative;
    padding-bottom: 50%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.funcionamento-video-full .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.faq-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.faq-tab-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-tab-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-main);
}

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

.faq-tab-btn.active {
    background: var(--gradient-blue);
    border: none;
    color: var(--white);
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-900);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

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

/* ============================================
   CTA FINAL
============================================ */
.cta-home-section {
    padding: 100px 0;
    background: var(--gradient-blue);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
}

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

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(220, 88, 42, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 88, 42, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
    .por-que-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .por-que-video {
        position: static;
    }

    .solner-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solner-row.reverse {
        direction: ltr;
    }

    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .funcionamento-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .funcionamento-horarios-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Carousel: 2 cards visíveis em tablet */
    .passo-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    /* CORREÇÃO CRÍTICA MOBILE - Reset forçado */
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .home-premium-page {
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
    }

    .hero-slider-section {
        width: 100% !important;
        min-height: auto;
    }

    .hero-slider {
        width: 100% !important;
        height: auto;
        min-height: auto;
    }

    .hero-slide {
        width: 100% !important;
        position: relative;
        min-height: auto;
        /* Reset desktop padding — mobile usa padding no .hero-content */
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-slide:not(.active) {
        position: absolute;
    }

    .hero-slide .hero-content {
        width: 100% !important;
        padding-top: 130px;
        padding-bottom: 80px;
        text-align: center;
        max-width: 100%;
    }

    .hero-slide .container {
        width: 100% !important;
        padding: 0 20px !important;
    }

    .hero-title {
        font-size: 33px;
        padding: 0;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        gap: 12px;
    }

    /* Carousel: 1 card visível em mobile */
    .passo-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    /* Funcionamento: coluna única em mobile */
    .funcionamento-horarios-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .slider-controls {
        bottom: 40px;
        gap: 16px;
        width: 100%;
        justify-content: center;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        flex-shrink: 0;
    }

    .scroll-indicator {
        display: none;
    }

    .numeros-home-section {
        padding: 40px 0;
    }

    .numero-valor {
        font-size: 36px;
    }

    .numero-label {
        font-size: 13px;
    }

    .por-que-section,
    .pronto-section,
    .por-que-solner-section,
    .passos-section,
    .funcionamento-section,
    .faq-section,
    .cta-home-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .solner-texto h2 {
        font-size: 28px;
    }

    .pronto-content h2 {
        font-size: 28px;
    }

    .passos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .passo-card {
        padding: 32px 24px;
    }

    .faq-tab-buttons {
        gap: 8px;
    }

    .faq-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slide .hero-content {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-badge-cinema {
        font-size: 12px;
        padding: 8px 16px;
    }

    .slider-controls {
        bottom: 30px;
        gap: 12px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .numeros-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .numero-valor {
        font-size: 28px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        margin: 0 auto;
    }

    .horario-item {
        flex-direction: column;
        text-align: center;
    }

    .horario-icon {
        margin: 0 auto;
    }

    .faq-question span {
        font-size: 14px;
    }
}

/* ============================================
   PASSOS CAROUSEL - Multi-card (3 visible, scroll 1)
============================================ */
.passos-carousel-wrapper {
    position: relative;
    overflow: visible;
}

.passos-carousel {
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.passos-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    padding: 16px 0;
}

.passo-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

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

.passo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.passo-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   GLASS ARROWS (shared by passos & depoimentos)
============================================ */
.carousel-glass-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: var(--transition-base);
}

.carousel-glass-arrow:hover {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transform: scale(1.08);
}

/* ============================================
   BOTTOM NAV (shared layout for passos & depoimentos)
============================================ */
.passos-nav-bottom,
.depoimentos-nav-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.passos-dots,
.depoimentos-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.passo-dot,
.depoimento-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.passo-dot.active,
.depoimento-dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
}

/* ============================================
   DEPOIMENTOS CAROUSEL - Multi-card (3 visible, scroll 1)
============================================ */
.depoimentos-carousel-wrapper {
    position: relative;
    overflow: visible;
}

.depoimentos-carousel {
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.depoimentos-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    padding: 16px 0;
}

.depoimentos-home-section .depoimento-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: left;
    transition: var(--transition-smooth);
}

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

.depoimentos-home-section .depoimento-rating {
    font-size: 16px;
    color: var(--accent-yellow);
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.depoimentos-home-section .depoimento-texto {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0 0 20px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.depoimentos-home-section .depoimento-autor {
    display: flex;
    align-items: center;
    gap: 0;
}

.depoimentos-home-section .autor-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.depoimentos-home-section .autor-info span {
    font-size: 12px;
    color: var(--gray-500);
}

.depoimentos-dots .depoimento-dot {
    width: 8px;
    height: 8px;
}

.depoimentos-home-section .google-rating-badge {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .passo-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .depoimentos-home-section .depoimento-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .passo-card {
        flex: 0 0 100%;
        padding: 28px 20px;
    }
    .depoimentos-home-section .depoimento-card {
        flex: 0 0 100%;
        padding: 28px 20px;
    }
    .carousel-glass-arrow {
        width: 38px;
        height: 38px;
    }
    .depoimentos-dots .depoimento-dot {
        width: 7px;
        height: 7px;
    }
    .depoimentos-dots {
        gap: 6px;
    }
    .passos-nav-bottom,
    .depoimentos-nav-bottom {
        gap: 10px;
    }
    .google-rating-badge {
        flex-wrap: wrap;
        padding: 16px 20px;
        gap: 12px;
    }
    .blog-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 380px) {
    .depoimentos-dots .depoimento-dot {
        width: 6px;
        height: 6px;
    }
    .depoimentos-dots {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 200px;
    }
    .depoimentos-nav-bottom {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ============================================
   POR QUE ENERGIA SOLAR - 3 COLUNAS + VÍDEO
============================================ */
.por-que-cols-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.por-que-col {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.pq-col-icon {
    width: 64px;
    height: 64px;
    background: rgba(220, 88, 42, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.por-que-col h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.por-que-col p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.por-que-video-full {
    width: 100%;
}

.por-que-video-full .video-wrapper {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.por-que-video-full .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ============================================
   DEPOIMENTOS HOME
============================================ */
.depoimentos-home-section {
    padding: 100px 0;
    background: var(--gray-50);
}

/* ============================================
   BLOG HOME
============================================ */
.blog-home-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.blog-home-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

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

.blog-home-img {
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-home-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.blog-home-thumb-placeholder {
    background: var(--gradient-blue);
}

.blog-home-card:hover .blog-home-thumb {
    transform: scale(1.04);
}

.blog-home-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-home-date {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

.blog-home-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
}

.blog-home-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.blog-home-leia {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: 4px;
}

.blog-home-cta { text-align: center; }

.btn-ver-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-ver-blog:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .por-que-cols-row { grid-template-columns: 1fr; }
    .blog-home-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .depoimentos-home-section { padding: 60px 0; }
}

/* ============================================
   BENEFÍCIOS HOME (Inteligente / Renovável / etc.)
============================================ */
.beneficios-home-section {
    padding: 80px 0 0;
    background: var(--white);
}

.beneficios-home-section .beneficio-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-100);
}

.beneficios-home-section .beneficio-row:last-child {
    border-bottom: none;
}

.beneficios-home-section .beneficio-row.reverse {
    direction: rtl;
}

.beneficios-home-section .beneficio-row.reverse > * {
    direction: ltr;
}

.beneficios-home-section .beneficio-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    background: transparent;
}

.beneficios-home-section .beneficio-texto h3 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0 0 20px;
}

.beneficios-home-section .beneficio-texto p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Diferenciais strip below benefícios */
.diferenciais-home-strip {
    background: var(--gray-50);
    padding: 80px 0;
}

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

@media (max-width: 1024px) {
    .beneficios-home-section .beneficio-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .beneficios-home-section .beneficio-row.reverse {
        direction: ltr;
    }
    .diferenciais-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .beneficios-home-section { padding: 60px 0 0; }
    .beneficios-home-section .beneficio-row { padding: 40px 0; }
    .beneficios-home-section .beneficio-texto h3 { font-size: 28px; }
    .diferenciais-home-strip { padding: 60px 0; }
}

/* ============================================
   DIFERENCIAL CARDS - Home
============================================ */
.diferenciais-home-strip .diferencial-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: var(--transition-smooth);
    border: 2px solid var(--gray-200);
}

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

.diferenciais-home-strip .diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferenciais-home-strip .diferencial-card:hover .diferencial-icon {
    background: var(--gradient-orange);
}

.diferenciais-home-strip .diferencial-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(76%) saturate(1447%) hue-rotate(347deg) brightness(92%) contrast(92%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.diferenciais-home-strip .diferencial-card:hover .diferencial-icon img {
    filter: brightness(0) invert(1);
}

.diferenciais-home-strip .diferencial-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 16px;
    line-height: 1.4;
}

.diferenciais-home-strip .diferencial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* Gradient border animation → centralizado em cards.css */

/* ============================================
   PORTFOLIO CARROSSEL — LOOP INFINITO
   ============================================ */

.portfolio-carrossel-section {
    padding: 80px 0 0;
    background: var(--white);
    overflow: hidden;
}

.portfolio-carrossel-section .section-header {
    margin-bottom: 48px;
}

.portfolio-carrossel-viewport {
    width: 100%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Segunda linha: direção inversa (esquerda → direita) */
.portfolio-carrossel-track-reverse {
    display: flex;
    gap: 12px;
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.portfolio-carrossel-track {
    display: flex;
    gap: 14px;
    width: max-content;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
}

.portfolio-carrossel-track:active {
    cursor: grabbing;
}

.portfolio-item {
    flex: none;
    width: 300px;
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.portfolio-item:hover {
    transform: scale(1.045);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    z-index: 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.45s ease;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

.portfolio-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-nome {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2px;
}

.portfolio-item-ver {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 400;
}

/* Responsivo */
@media (max-width: 1024px) {
    .portfolio-item {
        width: 260px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .portfolio-carrossel-section {
        padding: 60px 0 0;
    }

    .portfolio-carrossel-viewport {
        padding-bottom: 60px;
    }

    .portfolio-item {
        width: 220px;
        height: 155px;
        border-radius: 10px;
    }

    .portfolio-carrossel-track {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        width: 180px;
        height: 126px;
        border-radius: 8px;
    }
}

/* ============================================
   SOLUÇÕES BENTO — DARK SECTION (com imagens)
============================================ */

.solucoes-bento-section {
    position: relative;
    background: linear-gradient(140deg, #060b1a 0%, #001489 60%, #0d1a4a 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.solucoes-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.solucoes-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 88, 42, 0.25) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.solucoes-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 20, 137, 0.5) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 48px;
}

.section-label-dark {
    display: inline-block;
    background: rgba(220, 88, 42, 0.2);
    color: #dc582a;
    border: 1px solid rgba(220, 88, 42, 0.4);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header-dark h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-header-dark p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient-solucoes {
    background: linear-gradient(135deg, #dc582a 0%, #FFB600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Bento Grid ---- */
.solucoes-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 330px 300px 290px 260px;
    gap: 14px;
    margin-bottom: 0;
}

/* Card 1 (BESS): ocupa col 1-2 — linha 1: largo esquerdo */
.sol-card:nth-child(1) { grid-column: 1 / 3; }
/* Card 4 (Eletropostos): ocupa col 2-3 — linha 2: largo direito */
.sol-card:nth-child(4) { grid-column: 2 / 4; }
/* Card 5 (Mercado Livre): ocupa col 1-2 — linha 3: largo esquerdo (espelha linha 1) */
.sol-card:nth-child(5) { grid-column: 1 / 3; }
/* Card 6 (Carregadores): auto → col 3 — linha 3: estreito direito */
/* Card 7 (Baterias Portáteis): largura total na linha 4 */
.sol-card:nth-child(7) { grid-column: 1 / -1; }

/* ---- Card base ---- */
.sol-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    cursor: pointer;
}

.sol-img-bg {
    position: absolute;
    inset: 0;
    background-image: var(--sol-img);
    background-size: cover;
    background-position: center;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.sol-card:hover .sol-img-bg {
    transform: scale(1.07);
}

.sol-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.10) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.sol-card:hover .sol-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.58) 45%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

.sol-content {
    position: relative;
    z-index: 2;
    padding: 62px 26px 22px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* hover: apenas imagem e botão "Ver solução" animam */

.sol-badge {
    display: inline-block;
    background: rgba(220, 88, 42, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
    backdrop-filter: blur(4px);
}

.sol-titulo {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

/* Cards largos têm título maior */
.sol-card:nth-child(1) .sol-titulo,
.sol-card:nth-child(4) .sol-titulo,
.sol-card:nth-child(5) .sol-titulo {
    font-size: 26px;
}

.sol-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.sol-ver {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease, gap 0.2s ease;
}

.sol-card:hover .sol-ver {
    color: #dc582a;
    gap: 8px;
}

/* CTA */
.solucoes-bento-cta {
    text-align: center;
    margin-top: 8px;
}

.btn-solucoes-orcamento {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc582a 0%, #f06030 50%, #dc582a 100%);
    background-size: 200% 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 38px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 88, 42, 0.4);
    border: none;
}

.btn-solucoes-orcamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 88, 42, 0.55);
    background-position: 100% 0;
    color: #fff;
}

/* Responsivo */
@media (max-width: 1024px) {
    .solucoes-bento {
        grid-template-rows: 290px 270px 270px 240px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .solucoes-bento-section {
        padding: 72px 0 60px;
    }

    .solucoes-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 290px 270px 250px 250px 220px;
        gap: 10px;
    }

    .sol-card:nth-child(1) { grid-column: 1 / 3; }
    .sol-card:nth-child(4),
    .sol-card:nth-child(5),
    .sol-card:nth-child(6),
    .sol-card:nth-child(7) { grid-column: auto; }

    .sol-titulo { font-size: 19px; }
    .sol-card:nth-child(1) .sol-titulo { font-size: 22px; }
    .sol-card:nth-child(4) .sol-titulo,
    .sol-card:nth-child(5) .sol-titulo { font-size: 19px; }

    .sol-content { padding: 54px 16px 14px; }
    .sol-badge { font-size: 10px; padding: 3px 10px; }
}

@media (max-width: 480px) {
    .solucoes-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .sol-card { min-height: 210px; }
    .sol-card:nth-child(1),
    .sol-card:nth-child(4),
    .sol-card:nth-child(5),
    .sol-card:nth-child(6),
    .sol-card:nth-child(7) { grid-column: 1; }
}

/* ============================================
   BLOG PREVIEW SECTION
============================================ */

.blog-preview-section {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    padding: 100px 0 80px;
}

.blog-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.blog-card-preview {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 12px rgba(0, 20, 137, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.blog-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 20, 137, 0.16);
}

.blog-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-preview:hover .blog-card-thumb img {
    transform: scale(1.07);
}

.blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #dc582a, #ea580c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 22px 22px 24px;
}

.blog-card-date {
    color: var(--gray-400);
    font-size: 12px;
    margin-bottom: 8px;
    display: block;
}

.blog-card-titulo {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-ler {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s ease;
}

.blog-card-preview:hover .blog-card-ler {
    gap: 9px;
}

.blog-fallback {
    text-align: center;
    padding: 60px 0;
    color: var(--gray-500);
}

.blog-fallback p {
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-preview-cta {
    text-align: center;
}

.btn-blog-todos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc582a 0%, #f06030 50%, #dc582a 100%);
    background-size: 200% 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(220, 88, 42, 0.3);
}

.btn-blog-todos:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220, 88, 42, 0.5);
    background-position: 100% 0;
    color: #fff;
}

@media (max-width: 1024px) {
    .blog-grid-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card-preview:nth-child(3) {
        display: none;
    }
}

@media (max-width: 640px) {
    .blog-preview-section {
        padding: 72px 0 60px;
    }

    .blog-grid-preview {
        grid-template-columns: 1fr;
    }

    .blog-card-preview:nth-child(3) {
        display: block;
    }

    .blog-card-preview:nth-child(2) {
        display: none;
    }
}

/* ============================================
   SUPORTE SHORTCUT SECTION
============================================ */

.suporte-shortcut-section {
    background: linear-gradient(135deg, #dc582a 0%, #FFB600 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.suporte-shortcut-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.suporte-shortcut-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.suporte-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.suporte-texto {
    flex: 1;
}

.suporte-icone-topo {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.95;
    filter: brightness(0) invert(1);
    display: block;
}

.suporte-texto h2 {
    color: #fff;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
}

.suporte-texto p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
}

.suporte-cta-wrap {
    flex-shrink: 0;
}

.btn-suporte-acessar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #dc582a;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    border: none;
}

.btn-suporte-acessar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    color: #dc582a;
}

@media (max-width: 768px) {
    .suporte-flex {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .suporte-icone-topo {
        margin: 0 auto 16px;
    }

    .suporte-texto p {
        max-width: 100%;
    }

    .suporte-shortcut-section {
        padding: 56px 0;
    }
}
