/*
Theme Name: LEDS Child Theme
Description: Tema filho personalizado para LEDS com sistema GRID e header otimizado
Template: twentytwentyfour
Version: 1.0.3
Author: LEDS Team
*/

/* ========================================
   IMPORTAÇÃO E CONFIGURAÇÃO DE FONTES
   ======================================== */

/* Importação das fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Definição das variáveis CSS */
:root {
    /* Cores */
    --color-text-base-major-alt: #FCFCFD;
    --color-text-base-major: #121926;
    --color-text-base-minor: #697586;
    --color-text-base-minor-alt: #CDD5DF;
    --color-surface-brand-primary-medium: #00AEEF;
    --color-text-brand-primary: #0099D6;
    --color-border-base-minor-alt: #697586;
    --color-border-brand-primary-alt: #80DDF9;
    --color-surface-brand-primary-lightest: #E6F9FE;
    --color-surface-base-white: #FFF;
    --color-surface-base-900: #121926;
    --color-surface-base-950: #0D121C;
    --color-border-base-minor: #E3E8EF;
    
    /* Fontes */
    --family-highlight: 'Poppins', sans-serif;
    --font-family-mont: 'Inter', sans-serif;
    --font-family-base: 'Inter', sans-serif;
    
    /* Tamanhos de fonte */
    --font-size-9xl: 80px;
    --font-size-6xl: 56px;
    --font-size-5xl: 48px;
    --font-size-3xl: 32px;
    --font-size-2xl: 24px;
    --font-size-xl: 20px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    
    /* Pesos de fonte */
    --font-weight-bold: 700;
    --font-weight-semi-bold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    
    /* Espaçamentos */
    --spacing-2xl: 20px;
    --spacing-3xl: 24px;
    --spacing-4xl: 32px;
    --spacing-5xl: 40px;
    --spacing-9xl: 96px;
    --spacing-xl: 16px;
    --spacing-md: 8px;
    
    /* Border radius */
    --border-radius-full: 9999px;
    --border-radius-2xl: 24px;
    --border-radius-xl: 16px;
}

/* Definição da fonte Poppins como padrão para todo o projeto */
* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Box-sizing global para evitar overflow */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden; /* Prevenir rolagem horizontal global */
}

/* ========================================
   SISTEMA GRID PERSONALIZADO
   ======================================== */

/* Container principal com max-width */
.leds-container {
    max-width: 1356px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Sistema de Grid responsivo */
.leds-grid {
    display: grid;
    gap: 24px;
}

/* Grid de 2 colunas */
.leds-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Grid de 3 colunas */
.leds-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Grid de 4 colunas */
.leds-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Grid de 6 colunas */
.leds-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Grid de 12 colunas para layouts complexos */
.leds-grid-12 {
    grid-template-columns: repeat(12, 1fr);
}

/* Classes utilitárias para posicionamento */
.leds-col-span-1 { grid-column: span 1; }
.leds-col-span-2 { grid-column: span 2; }
.leds-col-span-3 { grid-column: span 3; }
.leds-col-span-4 { grid-column: span 4; }
.leds-col-span-6 { grid-column: span 6; }
.leds-col-span-8 { grid-column: span 8; }
.leds-col-span-9 { grid-column: span 9; }
.leds-col-span-12 { grid-column: span 12; }

/* Responsividade */
@media (max-width: 1312px) {
    .leds-container {
        max-width: 1140px;
    }
    
    .leds-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .leds-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .leds-container {
        max-width: 960px;
    }
    
    .leds-grid-3,
    .leds-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leds-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .leds-container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .leds-grid-2,
    .leds-grid-3,
    .leds-grid-4,
    .leds-grid-6 {
        grid-template-columns: 1fr;
    }
    
    .leds-col-span-2,
    .leds-col-span-3,
    .leds-col-span-4,
    .leds-col-span-6,
    .leds-col-span-8,
    .leds-col-span-9 {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .leds-container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* ========================================
   HEADER PERSONALIZADO
   ======================================== */

/* Header principal */
.leds-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible !important; /* Permitir que submenu apareça */
    padding: 20px 0;
}

/* Container do header */
.leds-header-container {
    max-width: 1356px;
    margin: 0 auto;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-width: 0;
    flex-wrap: nowrap;
    overflow: visible !important; /* Permitir que submenu apareça */
    background: #0D121C;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.leds-logo {
    width: 120px;
    height: 32px;
    display: flex;
    align-items: center;
}

.leds-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Navegação principal */
.leds-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1000;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible !important; /* Permitir que submenu apareça */
}

/* Menu principal */
.leds-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 27px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Garantir que os links do menu sejam visíveis */
.leds-menu > li > a {
    color: var(--color-text-base-major-alt, #FCFCFD) !important;
    
    /* text-button/md conforme especificado */
    font-family: var(--family-highlight, Poppins) !important;
    font-size: var(--font-size-md, 16px) !important;
    font-style: normal !important;
    font-weight: var(--font-weight-medium, 500) !important;
    line-height: 100% !important; /* 16px */
    
    text-decoration: none;
    padding: 12px 0;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.leds-menu > li > a:hover {
    color: #00AEEF !important;
}

/* Links do dropdown */
.leds-dropdown a {
    color: var(--color-text-base-major, #121926) !important;
    
    /* label/md/semibold conforme especificado */
    font-family: var(--family-base, Inter) !important;
    font-size: var(--font-size-md, 16px) !important;
    font-style: normal !important;
    font-weight: var(--font-weight-semi-bold, 600) !important;
    line-height: 100% !important; /* 16px */
    
    text-decoration: none;
    padding: 12px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.leds-dropdown a:hover {
    background: #f8f9fa;
    color: #00AEEF !important;
    padding-left: 16px;
}

.leds-menu > li {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Indicador de dropdown SVG */
.leds-dropdown-indicator {
    display: inline-flex;
    width: 8px;
    height: 4px;
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.leds-dropdown-indicator svg {
    width: 100%;
    height: 100%;
}

.leds-menu > li.has-dropdown:hover .leds-dropdown-indicator {
    transform: rotate(180deg);
}

/* ========================================
   MENU DO HEADER - CLASSE ESPECÍFICA
   ======================================== */

/* Menu específico do header */
.leds-header-menu {
    /* Herda estilos do .leds-menu */
}

/* ========================================
   DROPDOWN/SUBMENU - APENAS PARA HEADER
   ======================================== */

/* Dropdown oculto por padrão - APENAS para menu do header */
.leds-header-menu .leds-dropdown,
.leds-header-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 300px;
    z-index: 9999;
    
    /* Estado inicial: OCULTO */
    opacity: 0;
    display: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    
    /* Layout conforme especificado */
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    list-style: none;
}

/* Mostrar dropdown APENAS no hover da classe header-menu */
.leds-header-menu > li:hover > .leds-dropdown,
.leds-header-menu > li:hover > .sub-menu,
.leds-header-menu .menu-item-has-children:hover > .leds-dropdown,
.leds-header-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    display: block;
    visibility: visible;
    transform: translateY(0);
}

/* Items do dropdown do header */
.leds-header-menu .leds-dropdown li,
.leds-header-menu .sub-menu li {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Links do dropdown do header */
.leds-header-menu .leds-dropdown a,
.leds-header-menu .sub-menu a {
    color: var(--color-text-base-major, #121926) !important;
    
    /* label/md/semibold conforme especificado */
    font-family: var(--family-base, Inter) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important; /* 16px */
    
    text-decoration: none;
    padding: 12px;
    gap: 16px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 100%;
}

.leds-header-menu .leds-dropdown a:hover,
.leds-header-menu .sub-menu a:hover {
    background: #f8f9fa;
    color: #00AEEF !important;
    padding-left: 16px;
}

/* ========================================
   BOTÕES CTA
   ======================================== */

/* Botão CTA Geral */
.leds-cta-button.leds-cta-button-header {
    display: inline-flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 90px;
    background: var(--color-surface-brand-primary-medium, #00AEEF) !important;
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Botão CTA do Header - Personalização Específica */
.leds-cta-button.leds-cta-button-header {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 90px;
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    
    /* Fonte conforme especificado */
    color: var(--color-text-base-major, #121926) !important;
    font-family: var(--family-highlight, Poppins) !important;
    font-size: var(--font-size-md, 16px) !important;
    font-style: normal !important;
    font-weight: var(--font-weight-medium, 500) !important;
    line-height: 100% !important; /* 16px */
    
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.leds-cta-button:hover {
    background: #0098d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
}

.leds-cta-button.leds-cta-button-header:hover {
    background: #0098d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    color: var(--color-text-base-major, #121926) !important;
}

.leds-cta-button:active {
    transform: translateY(0);
}

/* Ícone do botão CTA geral */
.leds-cta-button::after {
    content: '↗';
    display: inline-flex;
    width: 20px;
    height: 20px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    font-size: 14px;
    flex-shrink: 0;
    color: inherit; /* Herda a cor do texto do botão */
}

/* Ícone do botão do header com cor específica */
.leds-cta-button.leds-cta-button-header::after {
    color: var(--color-text-base-major, #121926); /* Mesma cor da fonte */
}

/* ========================================
   GUTENBERG INTEGRATION
   ======================================== */

/* Classes para uso no Gutenberg */
.wp-block-group .leds-container {
    max-width: 1356px;
    margin: 0 auto;
    padding: 0 20px;
}

.wp-block-group .leds-grid {
    display: grid;
    gap: 24px;
}

/* Grid classes para Gutenberg */
.wp-block-group .leds-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.wp-block-group .leds-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wp-block-group .leds-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.wp-block-group .leds-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.wp-block-group .leds-grid-12 {
    grid-template-columns: repeat(12, 1fr);
}

/* ========================================
           PÁGINA INICIAL - BANNER PRINCIPAL
           ======================================== */

.leds-main-banner {
    width: 100vw;
    height: 750px;
    background: linear-gradient(135deg, #0d121c 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0 0 100px 100px;
}

.leds-banner-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1356px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

/* Wrapper para centralizar conteúdo do banner */
.leds-banner-container {
    width: 100%;
    max-width: 1356px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leds-banner-content {
    width: 100%;
    max-width: 1312px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}

/* Lado Esquerdo - Texto e Botões */
.leds-banner-left {
    max-width: 600px;
}

.leds-banner-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-9xl, 80px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%; /* 80px */
    margin: 0 0 32px 0;
}

.leds-banner-subtitle {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--family-highlight, 'Poppins'), sans-serif;
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%; /* 29.76px */
    margin: 0 0 40px 0;
}

.leds-banner-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.leds-banner-btn,
.leds-banner-primary-button,
.leds-banner-secondary-button {
    display: flex;
    padding: var(--spacing-2xl, 20px) var(--spacing-3xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md, 8px);
    border-radius: var(--border-radius-full, 9999px);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.leds-banner-btn-primary,
.leds-banner-primary-button {
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: #ffffff;
}

.leds-banner-btn-primary:hover,
.leds-banner-primary-button:hover {
    background: #0098d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    color: #ffffff;
}

.leds-banner-btn-secondary,
.leds-banner-secondary-button {
    border: 1px solid var(--color-border-base-minor-alt, #697586);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-base-major-alt, #FCFCFD);
}

.leds-banner-btn-secondary:hover,
.leds-banner-secondary-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: var(--color-text-base-major-alt, #FCFCFD);
}

/* Lado Direito - Imagem e Botão Flutuante */
.leds-banner-right {
    position: relative;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-shrink: 0;
}

.leds-banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leds-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.leds-banner-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.leds-banner-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.leds-placeholder-content {
    text-align: center;
    color: var(--color-text-base-major-alt, #FCFCFD);
    z-index: 1;
}

.leds-placeholder-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.leds-placeholder-content p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

.leds-watch-button,
.leds-banner-video-button {
    display: flex;
    width: 180px;
    height: 180px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: rgba(13, 18, 28, 0.80);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-size: 16px;
    font-weight: 600;
}

.leds-watch-button:hover,
.leds-banner-video-button:hover {
    background: rgba(13, 18, 28, 0.90);
    transform: scale(1.05);
}

.leds-watch-icon,
.leds-video-icon {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 7.5px 8.333px;
    aspect-ratio: 1/1;
}

.leds-watch-icon svg,
.leds-video-icon svg {
    width: 26px;
    height: 28px;
}

.leds-video-text {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--family-highlight, 'Poppins'), sans-serif;
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%; /* 20px */
}

/* Modal de Vídeo */
.leds-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leds-video-modal.leds-modal-open {
    opacity: 1;
}

.leds-video-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.leds-video-modal.leds-modal-open .leds-video-modal-content {
    transform: scale(1);
}

.leds-video-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leds-video-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.leds-video-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.leds-video-modal-close:hover {
    background: #f8f9fa;
    color: #333333;
}

.leds-video-modal-body {
    padding: 24px;
}

.leds-video-modal-body iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Classe para bloquear scroll quando modal está aberto */
body.leds-modal-open {
    overflow: hidden;
}

/* ========================================
   MODAIS DE CONTATO E ORÇAMENTO
   ======================================== */

.leds-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.leds-modal.leds-modal-open {
    opacity: 1;
    visibility: visible;
}

.leds-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.leds-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    margin: 5vh auto;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.leds-modal.leds-modal-open .leds-modal-content {
    transform: translateY(0);
}

.leds-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #697586;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.leds-modal-close:hover {
    background: #f1f5f9;
    color: #121926;
}

.leds-modal h3 {
    color: #121926;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 24px 0;
    padding-right: 40px;
}

/* ========================================
   FORMULÁRIOS DOS MODAIS
   ======================================== */

.leds-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leds-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.leds-form-group label {
    color: #121926;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.leds-form-group input,
.leds-form-group select,
.leds-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #E3E8EF;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #121926;
    background: #ffffff;
    transition: all 0.3s ease;
}

.leds-form-group input:focus,
.leds-form-group select:focus,
.leds-form-group textarea:focus {
    outline: none;
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.leds-form-group input.leds-error,
.leds-form-group select.leds-error,
.leds-form-group textarea.leds-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.leds-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Botão CTA duplicado removido - usar apenas a definição principal nas linhas 389-469 */

/* ========================================
   NOTIFICAÇÕES
   ======================================== */

#leds-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leds-notification {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #00AEEF;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #121926;
}

.leds-notification.leds-notification-show {
    transform: translateX(0);
    opacity: 1;
}

.leds-notification-success {
    border-left-color: #10b981;
}

.leds-notification-error {
    border-left-color: #ef4444;
}

.leds-notification-warning {
    border-left-color: #f59e0b;
}

.leds-notification-info {
    border-left-color: #00AEEF;
}

/* ========================================
   BOTÃO VOLTAR AO TOPO
   ======================================== */

.leds-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00AEEF;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.leds-back-to-top.leds-back-to-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.leds-back-to-top:hover {
    background: #0099D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 174, 239, 0.4);
}

.leds-back-to-top:active {
    transform: translateY(0);
}

/* ========================================
   RESPONSIVIDADE DOS MODAIS
   ======================================== */

@media (max-width: 768px) {
    .leds-modal-content {
        width: 95%;
        margin: 2vh auto;
        padding: 24px;
        max-height: 96vh;
    }
    
    .leds-modal h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .leds-form {
        gap: 16px;
    }
    
    .leds-form-group input,
    .leds-form-group select,
    .leds-form-group textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .leds-cta-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    #leds-notifications {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .leds-notification {
        max-width: none;
    }
    
    .leds-back-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .leds-modal-content {
        padding: 20px;
    }
    
    .leds-modal h3 {
        font-size: 18px;
    }
    
    .leds-form-group input,
    .leds-form-group select,
    .leds-form-group textarea {
        padding: 8px 12px;
        font-size: 15px;
    }
    
    .leds-cta-button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ========================================
   ELEMENTOR WIDGET STYLES
   ======================================== */

/* Banner do Elementor */
.elementor-widget-leds-banner .leds-banner {
    border-radius: 0 0 100px 100px;
}

/* ========================================
   GUTENBERG BLOCK STYLES
   ======================================== */

/* Bloco do Banner no Gutenberg */
.wp-block-leds-banner .leds-main-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0 0 100px 100px;
}

/* Override do container do Gutenberg para o banner */
.wp-block-leds-banner .leds-banner-wrapper {
    max-width: 1356px;
    margin: 0 auto;
    padding: 0 20px;
}

.wp-block-leds-banner .leds-banner-container {
    padding: 0 15px;
}

/* Estilos específicos para o editor do Gutenberg */
.block-editor-page .wp-block-leds-banner .leds-main-banner {
    min-height: 400px;
}

/* Preview no Gutenberg */
.wp-block-leds-banner .leds-main-banner {
    position: relative;
}

/* Botões do Gutenberg integrados */
.wp-block-leds-banner .leds-banner-btn.wp-block-button__link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.wp-block-leds-banner .leds-banner-btn.wp-block-button__link:hover {
    text-decoration: none;
}

/* Título do Gutenberg integrado */
.wp-block-leds-banner .leds-banner-title.wp-block-heading {
    margin: 0 0 32px 0;
    line-height: 1;
}

/* Responsividade específica do Gutenberg */
@media (max-width: 768px) {
    .wp-block-leds-banner .leds-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .wp-block-leds-banner .leds-banner-title {
        font-size: 48px;
        text-align: center;
    }
    
    .wp-block-leds-banner .leds-banner-subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .wp-block-leds-banner .leds-watch-button {
        width: 140px;
        height: 140px;
        border-radius: 70px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .wp-block-leds-banner .leds-banner-title {
        font-size: 36px;
        text-align: center;
    }
    
    .wp-block-leds-banner .leds-banner-subtitle {
        font-size: 18px;
        text-align: center;
    }
    
    .wp-block-leds-banner .leds-banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .wp-block-leds-banner .leds-banner-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .wp-block-leds-banner .leds-watch-button {
        width: 120px;
        height: 120px;
        border-radius: 60px;
        font-size: 14px;
        bottom: 10px;
        right: 10px;
    }
}

/* ========================================
           SEÇÕES DE CONTEÚDO
           ======================================== */

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

.leds-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.leds-section-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
           SEÇÃO DE PRODUTOS
           ======================================== */

.leds-products-section {
    padding: 80px 0;
    background: #ffffff;
}

.leds-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.leds-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.leds-product-image {
    height: 200px;
    overflow: hidden;
}

.leds-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leds-product-card:hover .leds-product-image img {
    transform: scale(1.1);
}

.leds-product-content {
    padding: 24px;
}

.leds-product-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.leds-product-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.leds-product-link {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.leds-product-link:hover {
    color: #0098d1;
}

/* ========================================
           SEÇÃO DE SOLUÇÕES
           ======================================== */

.leds-solutions-section {
    padding: 80px 0;
    background: #f8f9fa;
    border-radius: 0 0 100px 100px;
}

.leds-solutions-section .leds-grid-2 {
    align-items: center;
}

.leds-solution-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.leds-solution-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.leds-solution-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.leds-solution-list li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 24px;
}

.leds-solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00AEEF;
    font-weight: bold;
}

.leds-solution-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ========================================
           SEÇÃO DE VANTAGENS
           ======================================== */

.leds-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.leds-benefit-item {
    text-align: center;
    padding: 32px 20px;
}

.leds-benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.leds-benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
}

.leds-benefit-item p {
    color: #666666;
    line-height: 1.6;
}

/* ========================================
           SEÇÃO CTA FINAL
           ======================================== */

.leds-cta-section {
    padding: 80px 0;
    background: #00AEEF;
    color: #ffffff;
}

.leds-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.leds-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.leds-cta-section .leds-cta-button {
    background: #ffffff;
    color: #00AEEF;
    border: 2px solid #ffffff;
}

.leds-cta-section .leds-cta-button:hover {
    background: transparent;
    color: #ffffff;
}

/* ========================================
           UTILITÁRIOS ADICIONAIS
           ======================================== */

/* Espaçamentos consistentes */
.leds-mt-0 { margin-top: 0; }
.leds-mt-1 { margin-top: 8px; }
.leds-mt-2 { margin-top: 16px; }
.leds-mt-3 { margin-top: 24px; }
.leds-mt-4 { margin-top: 32px; }
.leds-mt-5 { margin-top: 40px; }

.leds-mb-0 { margin-bottom: 0; }
.leds-mb-1 { margin-bottom: 8px; }
.leds-mb-2 { margin-bottom: 16px; }
.leds-mb-3 { margin-bottom: 24px; }
.leds-mb-4 { margin-bottom: 32px; }
.leds-mb-5 { margin-bottom: 40px; }

.leds-pt-0 { padding-top: 0; }
.leds-pt-1 { padding-top: 8px; }
.leds-pt-2 { padding-top: 16px; }
.leds-pt-3 { padding-top: 24px; }
.leds-pt-4 { padding-top: 32px; }
.leds-pt-5 { padding-top: 40px; }

.leds-pb-0 { padding-bottom: 0; }
.leds-pb-1 { padding-bottom: 8px; }
.leds-pb-2 { padding-bottom: 16px; }
.leds-pb-3 { padding-bottom: 24px; }
.leds-pb-4 { padding-bottom: 32px; }
.leds-pb-5 { padding-bottom: 40px; }

/* Alinhamentos */
.leds-text-center { text-align: center; }
.leds-text-left { text-align: left; }
.leds-text-right { text-align: right; }

.leds-flex { display: flex; }
.leds-flex-center { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.leds-flex-between { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

/* ========================================
   BLOCO PERSONALIZADO DO GUTENBERG
   ======================================== */

/* Bloco de Logo */
.leds-logo-block {
    display: inline-block;
}

.leds-logo-block img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.leds-logo-block.leds-logo-text .leds-logo-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}

.leds-logo-block.leds-logo-text .leds-logo-title:hover {
    color: #00AEEF;
}

/* Efeitos Hover */
.leds-logo-block img:hover {
    transform: scale(1.05);
}

.leds-logo-block img.leds-hover-rotate:hover {
    transform: rotate(5deg);
}

.leds-logo-block img.leds-hover-slide:hover {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVIDADE AVANÇADA
   ======================================== */

/* Breakpoints específicos */
@media (max-width: 1400px) {
    .leds-container {
        max-width: 1312px;
    }
}

@media (max-width: 1312px) {
    .leds-container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .leds-container {
        max-width: 960px;
    }
    
    .leds-header-container {
        height: 60px;
        padding: 8px 8px 8px 20px;
    }
    
    .leds-nav {
        gap: 16px;
    }
    
    .leds-menu {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .leds-container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .leds-header-container {
        height: 60px;
        padding: 8px 8px 8px 16px;
        border-radius: 50px;
    }
    
    .leds-nav {
        gap: 16px;
    }
    
    .leds-menu {
        gap: 16px;
        }
        
        /* Dropdown mobile controlado pelo mobile-responsive.css */
        
        .leds-cta-button {
            width: 100%;
            max-width: 300px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        
        /* Responsividade do Banner Principal */
        .leds-main-banner {
            height: auto;
            min-height: 600px;
            padding: 40px 0;
        }
        
        .leds-banner-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
            max-width: 100%;
        }
        
        .leds-banner-container {
            padding: 0 10px;
        }
        
        .leds-banner-title {
            font-size: 48px;
        }
        
        .leds-banner-subtitle {
            font-size: 20px;
        }
        
        .leds-banner-buttons {
            justify-content: center;
        }
        
        .leds-watch-button {
            width: 140px;
            height: 140px;
            border-radius: 70px;
            bottom: 15px;
            right: 15px;
        }
        
        .leds-section-title {
            font-size: 28px;
        }
        
        .leds-benefit-item {
            padding: 20px 15px;
        }
        
        .leds-cta-buttons {
            flex-direction: column;
            align-items: center;
        }
}

/* ========================================
   SEÇÃO DE TECNOLOGIA
   ======================================== */

.leds-technology-section {
    width: 100%;
    position: relative;
}

.leds-technology-background {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400" fill="none"><rect width="1200" height="400" fill="%23F8FAFC"/><path d="M0 200L50 180L100 220L150 160L200 200L250 140L300 180L350 120L400 160L450 100L500 140L550 80L600 120L650 60L700 100L750 40L800 80L850 20L900 60L950 0L1000 40L1050 20L1100 60L1150 40L1200 80L1200 400L0 400Z" fill="%23E2E8F0" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.leds-technology-content {
    text-align: center;
    max-width: 1312px;
    margin: 0 auto;
}

.leds-technology-title {
    color: var(--color-text-base-major, #121926);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    margin: 0 0 24px 0;
    text-align: left !important;
}

.leds-technology-subtitle {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0 0 64px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left !important;
}

.leds-technology-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.leds-tech-card {
    display: flex;
    padding: var(--spacing-3xl, 24px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
    min-width: 280px;
    max-width: 320px;
    border-radius: var(--border-radius-2xl, 24px);
    background: var(--color-surface-base-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(13, 18, 28, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leds-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgba(13, 18, 28, 0.1);
}

.leds-tech-icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: 1px solid var(--color-border-brand-primary-alt, #80DDF9);
    background: var(--color-surface-brand-primary-lightest, #E6F9FE);
    color: var(--color-surface-brand-primary-medium, #00AEEF);
}

.leds-tech-card-title {
    color: var(--color-text-base-major, #121926);
    text-align: center;
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0;
}

.leds-tech-card-description {
    color: var(--color-text-base-minor, #697586);
    text-align: center;
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
}

/* Responsividade da seção de tecnologia */
@media (max-width: 1024px) {
    .leds-technology-cards {
        gap: 20px;
    }
    
    .leds-tech-card {
        min-width: 250px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .leds-technology-background {
        padding: 60px 0;
    }
    
    .leds-technology-title {
        font-size: 28px !important;
    }
    
    .leds-technology-subtitle {
        font-size: 18px;
    }
    
    .leds-technology-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .leds-tech-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   SEÇÃO DE SOLUÇÕES SOB MEDIDA (FUNDO ESCURO)
   ======================================== */

.leds-solutions-dark-section {
    width: 100%;
    position: relative;
}

.leds-solutions-dark-content {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    border-radius: 100px 100px 0 0;
    background: var(--color-surface-base-950, #0D121C);
    text-align: center;
}

.leds-solutions-dark-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    margin: 0;
    max-width: 800px;
}

.leds-solutions-dark-subtitle {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
    max-width: 700px;
}

.leds-catalog-button {
    display: inline-flex;
    padding: 16px 32px;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: var(--color-surface-base-white, #FFF);
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}

.leds-catalog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
    color: var(--color-text-base-major, #121926);
}

.leds-solutions-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1312px;
}

.leds-solution-card {
    display: flex;
    padding: var(--spacing-3xl, 24px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
    min-width: 280px;
    max-width: 320px;
    border-radius: var(--border-radius-2xl, 24px);
    background: var(--color-surface-base-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(13, 18, 28, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leds-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgba(13, 18, 28, 0.1);
}

.leds-solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.leds-solution-image img {
    max-width: 206px;
    max-height: 197px;
    aspect-ratio: 183/175;
    object-fit: cover;
    border-radius: 8px;
}

.leds-solution-card-title {
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0;
    text-align: center;
}

.leds-solution-card-description {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
    text-align: center;
}

.leds-partners-logos {
    width: 100%;
    display: flex;
    justify-content: center;
}

.leds-logos-container {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.leds-partner-logo {
    width: auto;
    max-height: 26px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.leds-partner-logo:hover {
    opacity: 1;
}

/* Responsividade da seção escura */
@media (max-width: 1024px) {
    .leds-solutions-dark-content {
        padding: 80px 48px;
        gap: 48px;
    }
    
    .leds-solutions-cards {
        gap: 20px;
    }
    
    .leds-solution-card {
        min-width: 250px;
        max-width: 280px;
    }
    
    .leds-logos-container {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .leds-solutions-dark-content {
        padding: 60px 32px;
        gap: 40px;
        border-radius: 50px 50px 0 0;
    }
    
    .leds-solutions-dark-title {
        font-size: 42px;
    }
    
    .leds-solutions-dark-subtitle {
        font-size: 18px;
    }
    
    .leds-catalog-button {
        padding: 14px 28px;
        font-size: 18px;
    }
    
    .leds-solutions-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .leds-solution-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .leds-logos-container {
        gap: 24px;
    }
    
    .leds-partner-logo {
        max-height: 22px;
    }
}

@media (max-width: 576px) {
    .leds-solutions-dark-content {
        padding: 40px 20px;
        gap: 32px;
        border-radius: 30px 30px 0 0;
    }
    
    .leds-solutions-dark-title {
        font-size: 36px;
    }
    
    .leds-solutions-dark-subtitle {
        font-size: 16px;
    }
    
    .leds-catalog-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .leds-logos-container {
        gap: 16px;
    }
    
    .leds-partner-logo {
        max-height: 20px;
    }
}

/* ========================================
   SEÇÃO DE MARCAS E INFORMAÇÕES MACRO
   ======================================== */

.leds-brands-section {
    width: 100%;
    position: relative;
}

.leds-brands-content {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    background: var(--color-surface-base-900, #121926);
    text-align: center;
}

.leds-brands-title {
    color: var(--color-text-brand-primary, #0099D6);
    text-align: center;
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    margin: 0;
    max-width: 800px;
}

.leds-brands-subtitle {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    text-align: center;
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%;
    margin: 0;
    max-width: 700px;
}

/* Carousel de Logos */
.leds-brands-carousel {
    position: relative;
    width: 100%;
    max-width: 1312px;
    overflow: hidden;
}

.leds-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.leds-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    animation: scroll 20s linear infinite;
}

.leds-brand-logo {
    display: flex;
    width: 88px;
    height: 88px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background: var(--color-surface-base-white, #FFF);
    border-radius: 12px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leds-brand-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.15);
}

.leds-brand-image {
    width: 39.692px;
    height: 32.05px;
    flex-shrink: 0;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.leds-brand-logo:hover .leds-brand-image {
    filter: grayscale(0%) opacity(1);
}

/* Controles do Carousel */
.leds-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-surface-base-white, #FFF);
    border: none;
    color: var(--color-text-base-major, #121926);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.leds-carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

.leds-carousel-prev {
    left: 20px;
}

.leds-carousel-next {
    right: 20px;
}

/* Seção de Informações Macro */
.leds-macro-info {
    width: 100%;
    position: relative;
}

.leds-macro-image-desktop {
    display: block;
    width: 100%;
}

.leds-macro-image-mobile {
    display: none;
    width: 100%;
}

.leds-macro-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Botão CTA */
.leds-brands-cta-button {
    display: flex;
    padding: var(--spacing-xl, 16px) var(--spacing-3xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md, 8px);
    border-radius: var(--border-radius-full, 9999px);
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px 0 rgba(0, 174, 239, 0.3);
}

.leds-brands-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(0, 174, 239, 0.4);
    color: var(--color-text-base-major, #121926);
}

/* Animação do carousel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animação no hover */
.leds-brands-carousel:hover .leds-carousel-track {
    animation-play-state: paused;
}

/* Responsividade da seção de marcas */
@media (max-width: 1024px) {
    .leds-brands-content {
        padding: 80px 48px;
        gap: 48px;
    }
    
    .leds-brand-logo {
        width: 76px;
        height: 76px;
    }
    
    .leds-brand-image {
        width: 34px;
        height: 28px;
    }
    
    .leds-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .leds-carousel-prev {
        left: 10px;
    }
    
    .leds-carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .leds-brands-content {
        padding: 60px 32px;
        gap: 40px;
    }
    
    .leds-brands-title {
        font-size: 42px;
    }
    
    .leds-brands-subtitle {
        font-size: 18px;
    }
    
    .leds-brand-logo {
        width: 64px;
        height: 64px;
    }
    
    .leds-brand-image {
        width: 28px;
        height: 24px;
    }
    
    .leds-carousel-track {
        gap: 16px;
    }
    
    .leds-macro-image-desktop {
        display: none;
    }
    
    .leds-macro-image-mobile {
        display: block;
    }
    
    .leds-brands-cta-button {
        padding: 14px 28px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .leds-brands-content {
        padding: 40px 20px;
        gap: 32px;
    }
    
    .leds-brands-title {
        font-size: 36px;
    }
    
    .leds-brands-subtitle {
        font-size: 16px;
    }
    
    .leds-brand-logo {
        width: 56px;
        height: 56px;
    }
    
    .leds-brand-image {
        width: 24px;
        height: 20px;
    }
    
    .leds-carousel-track {
        gap: 12px;
    }
    
    .leds-carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .leds-brands-cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* ========================================
   SEÇÃO DE SEGMENTOS
   ======================================== */

.leds-segments-section {
    width: 100%;
    position: relative;
}

.leds-segments-content {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-9xl, 96px);
    align-self: stretch;
    border-radius: 0 0 100px 100px;
    background: var(--color-surface-base-950, #0D121C);
}

/* Banner de Imagem */
.leds-segments-banner {
    width: 100%;
    position: relative;
}

.leds-banner-desktop {
    display: block;
    width: 100%;
}

.leds-banner-mobile {
    display: none;
    width: 100%;
}

.leds-banner-img {
    height: 540px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Conteúdo Principal */
.leds-segments-main {
    width: 100%;
    max-width: 1312px;
    text-align: center;
}

.leds-segments-tagline {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-lg, 18px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0 0 24px 0;
}

.leds-segments-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    margin: 0 0 80px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de 3 Colunas */
.leds-segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.leds-segment-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-5xl, 40px);
    flex: 1 0 0;
    border-top: 1px solid #007AAE;
    padding-top: 24px;
    text-align: right;
}

.leds-segment-item-title {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-3xl, 32px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 100%;
    margin: 0;
}

.leds-segment-item-subtitle {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
}

.leds-segment-image {
    width: 100%;
    height: 366px;
    border-radius: 24px;
    overflow: hidden;
    background: lightgray;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leds-segment-img {
    width: 100%;
    height: 366px;
    object-fit: cover;
    border-radius: 24px;
}

/* Responsividade da seção de segmentos */
@media (max-width: 1024px) {
    .leds-segments-content {
        padding: 80px 48px;
        gap: 80px;
    }
    
    .leds-segments-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .leds-segments-grid {
        gap: 32px;
    }
    
    .leds-segment-item {
        gap: 32px;
    }
    
    .leds-segment-item-title {
        font-size: 28px;
    }
    
    .leds-segment-image,
    .leds-segment-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .leds-segments-content {
        padding: 60px 32px;
        gap: 60px;
        border-radius: 0 0 50px 50px;
    }
    
    .leds-banner-desktop {
        display: none;
    }
    
    .leds-banner-mobile {
        display: block;
    }
    
    .leds-banner-img {
        height: 400px;
    }
    
    .leds-segments-title {
        font-size: 42px;
        margin-bottom: 48px;
    }
    
    .leds-segments-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leds-segment-item {
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .leds-segment-item-title {
        font-size: 24px;
    }
    
    .leds-segment-image,
    .leds-segment-img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .leds-segments-content {
        padding: 40px 20px;
        gap: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .leds-banner-img {
        height: 300px;
    }
    
    .leds-segments-tagline {
        font-size: 16px;
    }
    
    .leds-segments-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .leds-segments-grid {
        gap: 32px;
    }
    
    .leds-segment-item {
        gap: 20px;
    }
    
    .leds-segment-item-title {
        font-size: 20px;
    }
    
    .leds-segment-item-subtitle {
        font-size: 14px;
    }
    
    .leds-segment-image,
    .leds-segment-img {
        height: 200px;
    }
}

/* ========================================
   SEÇÃO DE SOLUÇÕES 360°
   ======================================== */

.leds-solutions-360-section {
    width: 100%;
    position: relative;
}

.leds-solutions-360-content {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    background: var(--color-surface-base-white, #FFF);
}

/* Primeira linha - Duas colunas */
.leds-solutions-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    max-width: 1312px;
    align-items: start;
}

.leds-solutions-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.leds-solutions-title {
    color: var(--color-text-base-major, #121926);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    margin: 0;
}

.leds-solutions-subtitle {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
}

.leds-solutions-right {
    display: flex;
    align-items: center;
}

.leds-solutions-description {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%;
    margin: 0;
}

/* Segunda linha - 5 Cards */
.leds-solutions-cards {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1312px;
    justify-content: center;
    flex-wrap: wrap;
}

.leds-solution-card {
    display: flex;
    padding: var(--spacing-4xl, 32px) var(--spacing-3xl, 24px);
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3xl, 24px);
    flex: 1 0 0;
    align-self: stretch;
    min-width: 200px;
    max-width: 240px;
    border-radius: var(--border-radius-xl, 16px);
    border: 1px solid var(--color-border-base-minor, #E3E8EF);
    background: var(--color-surface-base-white, #FFF);
    transition: all 0.3s ease;
}

.leds-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgba(13, 18, 28, 0.1);
    border-color: var(--color-border-brand-primary-alt, #80DDF9);
}

.leds-solution-icon {
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 10px;
    border-radius: 28px;
    border: 1px solid var(--color-border-brand-primary-alt, #80DDF9);
    background: var(--color-surface-brand-primary-lightest, #E6F9FE);
    color: var(--color-surface-brand-primary-medium, #00AEEF);
}

.leds-solution-text {
    color: var(--color-text-base-major, #121926);
    text-align: center;
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 124%;
    margin: 0;
}

/* Terceira linha - Texto final */
.leds-solutions-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.leds-solutions-footer-text {
    text-align: center;
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    line-height: 124%;
    margin: 0;
}

.leds-solutions-footer-blue {
    color: var(--color-text-brand-primary, #0099D6);
    font-weight: var(--font-weight-semi-bold, 600);
}

.leds-solutions-footer-dark {
    color: var(--color-text-base-major, #121926);
    font-weight: var(--font-weight-regular, 400);
}

/* Responsividade da seção de soluções 360° */
@media (max-width: 1024px) {
    .leds-solutions-360-content {
        padding: 80px 48px;
        gap: 56px;
    }
    
    .leds-solutions-header {
        gap: 60px;
    }
    
    .leds-solutions-title {
        font-size: 48px;
    }
    
    .leds-solutions-subtitle {
        font-size: 20px;
    }
    
    .leds-solutions-description {
        font-size: 18px;
    }
    
    .leds-solutions-cards {
        gap: 20px;
    }
    
    .leds-solution-card {
        min-width: 180px;
        max-width: 220px;
        padding: 28px 20px;
    }
    
    .leds-solution-text {
        font-size: 18px;
    }
    
    .leds-solutions-footer-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .leds-solutions-360-content {
        padding: 60px 32px;
        gap: 48px;
    }
    
    .leds-solutions-header {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .leds-solutions-title {
        font-size: 42px;
    }
    
    .leds-solutions-subtitle {
        font-size: 18px;
    }
    
    .leds-solutions-description {
        font-size: 16px;
    }
    
    .leds-solutions-cards {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 16px;
    }
    
    .leds-solution-card {
        min-width: 100%;
        max-width: 100%;
        padding: 24px 16px;
    }
    
    .leds-solution-text {
        font-size: 16px;
    }
    
    .leds-solutions-footer-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .leds-solutions-360-content {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .leds-solutions-title {
        font-size: 36px;
    }
    
    .leds-solutions-subtitle {
        font-size: 16px;
    }
    
    .leds-solutions-description {
        font-size: 14px;
    }
    
    .leds-solutions-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .leds-solution-card {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .leds-solution-text {
        font-size: 14px;
    }
    
    .leds-solutions-footer-text {
        font-size: 16px;
    }
}

/* ========================================
   SEÇÃO DE BLOG
   ======================================== */

.leds-blog-section {
    width: 100%;
    position: relative;
    background: var(--color-surface-base-white, #FFF);
    padding: 80px 0;
    overflow-x: hidden;
}

.leds-blog-content {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    box-sizing: border-box;
}

/* Header do Blog */
.leds-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 40px;
}

.leds-blog-header-left {
    flex: 1;
}

.leds-blog-tagline {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-lg, 18px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0 0 16px 0;
}

.leds-blog-title {
    color: var(--color-text-base-major, #121926);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 110%;
    margin: 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
}

.leds-blog-header-right {
    flex-shrink: 0;
}

.leds-blog-button {
    display: flex;
    padding: var(--spacing-xl, 16px) var(--spacing-3xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md, 8px);
    border-radius: var(--border-radius-full, 9999px);
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px 0 rgba(0, 174, 239, 0.3);
}

.leds-blog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 rgba(0, 174, 239, 0.4);
    color: var(--color-text-base-major, #121926);
}

/* Grid de 3 Colunas */
.leds-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.leds-blog-card {
    width: 100%;
    max-width: 421px;
    height: 240px;
    border-radius: 20px;
    background: lightgray 50% / cover no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.leds-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgba(13, 18, 28, 0.15);
}

.leds-blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leds-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.leds-blog-content-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 24px;
    z-index: 2;
    border-radius: 0 0 20px 20px;
}

.leds-blog-card-title {
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.leds-blog-card-description {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsividade da seção de blog */
@media (max-width: 1024px) {
    .leds-blog-content {
        padding: 0 48px;
    }
    
    .leds-blog-header {
        margin-bottom: 56px;
        gap: 32px;
    }
    
    .leds-blog-title {
        font-size: 48px;
        line-height: 110%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .leds-blog-button {
        padding: 14px 20px;
        font-size: 18px;
    }
    
    .leds-blog-grid {
        gap: 24px;
    }
    
    .leds-blog-card {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .leds-blog-section {
        padding: 60px 0;
    }
    
    .leds-blog-content {
        padding: 0 32px;
    }
    
    .leds-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .leds-blog-title {
        font-size: 42px;
        max-width: 100%;
        line-height: 110%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .leds-blog-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .leds-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leds-blog-card {
        width: 100%;
        height: 180px;
    }
    
    .leds-blog-content-card {
        padding: 20px;
    }
    
    .leds-blog-card-title {
        font-size: 20px;
    }
    
    .leds-blog-card-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .leds-blog-section {
        padding: 40px 0;
    }
    
    .leds-blog-content {
        padding: 0 20px;
    }
    
    .leds-blog-header {
        margin-bottom: 32px;
        gap: 20px;
    }
    
    .leds-blog-tagline {
        font-size: 16px;
    }
    
    .leds-blog-title {
        font-size: 36px;
        line-height: 110%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .leds-blog-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .leds-blog-grid {
        gap: 16px;
    }
    
    .leds-blog-card {
        height: 160px;
    }
    
    .leds-blog-content-card {
        padding: 16px;
    }
    
    .leds-blog-card-title {
        font-size: 18px;
    }
    
    .leds-blog-card-description {
        font-size: 13px;
    }
}

/* ========================================
   SEÇÃO DE CTA FINAL
   ======================================== */

.leds-cta-final-section {
    width: 100%;
    position: relative;
}

.leds-cta-final-content {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    background: var(--color-surface-base-950, #0D121C);
}

/* Layout dos Banners */
.leds-cta-final-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
}

/* Banner Grande (Orçamento) */
.leds-cta-banner-large {
    width: 644px;
    height: 703px;
    flex-shrink: 0;
    border-radius: 16px;
    background: lightgray 50% / cover no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leds-cta-banner-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.3);
}

/* Banners Pequenos (Parceiro e Catálogo) */
.leds-cta-banner-small {
    width: 310px;
    height: 703px;
    flex-shrink: 0;
    border-radius: 16px;
    background: lightgray 50% / cover no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leds-cta-banner-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.3);
}

/* Imagens dos Banners */
.leds-cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leds-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Overlay dos Banners */
.leds-cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 16px;
}

/* Títulos dos Banners */
.leds-cta-banner-title {
    color: #FFF;
    font-family: var(--family-highlight, 'Poppins');
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 116%;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 24px;
}

.leds-cta-title-large {
    font-size: var(--font-size-6xl, 56px);
}

.leds-cta-title-small {
    font-size: var(--font-size-5xl, 48px);
}

/* Responsividade da seção de CTA final */
@media (max-width: 1312px) {
    .leds-cta-final-content {
        padding: 80px 48px;
        gap: 20px;
    }
    
    .leds-cta-banner-large {
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
    
    .leds-cta-banner-small {
        width: calc(50% - 10px);
        height: 400px;
    }
}

@media (max-width: 768px) {
    .leds-cta-final-content {
        padding: 60px 32px;
        gap: 16px;
        flex-direction: column;
    }
    
    .leds-cta-banner-large {
        width: 100%;
        height: 300px;
    }
    
    .leds-cta-banner-small {
        width: 100%;
        height: 250px;
    }
    
    .leds-cta-title-large {
        font-size: 42px;
    }
    
    .leds-cta-title-small {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .leds-cta-final-content {
        padding: 40px 20px;
        gap: 12px;
    }
    
    .leds-cta-banner-large {
        height: 250px;
    }
    
    .leds-cta-banner-small {
        height: 200px;
    }
    
    .leds-cta-title-large {
        font-size: 36px;
    }
    
    .leds-cta-title-small {
        font-size: 28px;
    }
    
    .leds-cta-banner-title {
        padding: 0 16px;
    }
}

/* ========================================
   SEÇÃO DE INFORMAÇÕES
   ======================================== */

.leds-info-section {
    width: 100%;
    position: relative;
}

.leds-info-content {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
    background: var(--color-surface-brand-primary-lightest, #E6F9FE);
}

/* 3 Colunas */
.leds-info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.leds-info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 48px 32px;
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.leds-info-column:last-child {
    border-right: none;
}

.leds-info-column:first-child {
    border-radius: 16px 0 0 16px;
}

.leds-info-column:last-child {
    border-radius: 0 16px 16px 0;
}

.leds-info-column-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-3xl, 32px);
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    margin: 0;
}

.leds-info-column-subtitle {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 124%;
    margin: 0;
}

.leds-info-column-text {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-lg, 18px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%;
    margin: 0;
    flex: 1;
}

.leds-info-column-button {
    display: flex;
    padding: var(--spacing-xl, 16px) var(--spacing-3xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md, 8px);
    border-radius: var(--border-radius-full, 9999px);
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    align-self: stretch;
    text-align: center;
}

.leds-info-column-button:hover {
    background: var(--color-surface-base-white, #FFF);
    color: var(--color-text-base-major, #121926);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
}

/* Conteúdo Adicional */
.leds-info-additional {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leds-info-additional-title {
    color: var(--color-text-base-major, #121926);
    text-align: center;
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 116%;
    margin: 0 0 24px 0;
}

.leds-info-additional-text {
    color: var(--color-text-base-minor, #697586);
    text-align: center;
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%;
    margin: 0 0 32px 0;
}

.leds-info-additional-link {
    color: var(--color-text-brand-primary, #0099D6);
    text-align: center;
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 132%;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.leds-info-additional-link:hover {
    color: var(--color-surface-brand-primary-medium, #00AEEF);
    text-decoration: underline;
}

.leds-sales-center-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    border-radius: 16px;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.leds-sales-center-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.leds-sales-center-text {
    flex: 1;
}

.leds-sales-center-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-4xl, 40px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 100%;
    margin: 0 0 16px 0;
}

.leds-sales-center-subtitle {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%;
    margin: 0;
}

.leds-sales-center-button {
    display: flex;
    padding: var(--spacing-xl, 16px) var(--spacing-3xl, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md, 8px);
    border-radius: var(--border-radius-full, 9999px);
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.leds-sales-center-button:hover {
    background: var(--color-surface-base-white, #FFF);
    color: var(--color-text-base-major, #121926);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
}

/* 4 Cards de Serviços */
.leds-sales-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.leds-sales-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 16px;
    background: var(--color-surface-base-800, #202939);
    transition: all 0.3s ease;
}

.leds-sales-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.2);
}

.leds-sales-card-icon {
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 10px;
    border-radius: 28px;
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-text-base-major, #121926);
}

.leds-sales-card-icon svg {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}

.leds-sales-card-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0;
}

.leds-sales-card-line {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
    flex: 1;
}

.leds-sales-card-action {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 132%;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.leds-sales-card-action:hover {
    color: var(--color-surface-brand-primary-medium, #00AEEF);
    text-decoration: underline;
}

/* Responsividade do Box de Central de Vendas */
@media (max-width: 1024px) {
    .leds-sales-center-box {
        padding: 48px;
        gap: 24px;
    }
    
    .leds-sales-center-header {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .leds-sales-center-title {
        font-size: 36px;
    }
    
    .leds-sales-center-subtitle {
        font-size: 18px;
    }
    
    .leds-sales-center-button {
        align-self: flex-start;
        padding: 14px 20px;
        font-size: 18px;
    }
    
    .leds-sales-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .leds-sales-card {
        padding: 20px;
        gap: 14px;
    }
    
    .leds-sales-card-title {
        font-size: 18px;
    }
    
    .leds-sales-card-line {
        font-size: 14px;
    }
    
    .leds-sales-card-action {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .leds-sales-center-box {
        padding: 32px;
        gap: 20px;
    }
    
    .leds-sales-center-title {
        font-size: 32px;
    }
    
    .leds-sales-center-subtitle {
        font-size: 16px;
    }
    
    .leds-sales-center-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .leds-sales-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .leds-sales-card {
        padding: 20px;
        gap: 12px;
    }
    
    .leds-sales-card-icon {
        padding: 10px;
    }
    
    .leds-sales-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .leds-sales-card-title {
        font-size: 16px;
    }
    
    .leds-sales-card-line {
        font-size: 13px;
    }
    
    .leds-sales-card-action {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .leds-sales-center-box {
        padding: 24px;
        gap: 16px;
    }
    
    .leds-sales-center-title {
        font-size: 28px;
    }
    
    .leds-sales-center-subtitle {
        font-size: 14px;
    }
    
    .leds-sales-center-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .leds-sales-card {
        padding: 16px;
        gap: 10px;
    }
    
    .leds-sales-card-icon {
        padding: 8px;
    }
    
    .leds-sales-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .leds-sales-card-title {
        font-size: 14px;
    }
    
    .leds-sales-card-line {
        font-size: 12px;
    }
    
    .leds-sales-card-action {
        font-size: 12px;
    }
}

/* ========================================
   SEÇÃO DE FAQ
   ======================================== */

.leds-faq-section {
    width: 100%;
    padding: 120px 0;
    background: var(--color-surface-base-white, #FFF);
}

.leds-faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Coluna Esquerda - Título */
.leds-faq-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.leds-faq-tagline {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0;
}

.leds-faq-title {
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 116%;
    margin: 0;
}

/* Coluna Direita - Toggles */
.leds-faq-right {
    width: 100%;
}

.leds-faq-toggles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leds-faq-toggle {
    border: 1px solid var(--color-border-base-minor, #E4E7EC);
    border-radius: 12px;
    background: var(--color-surface-base-white, #FFF);
    overflow: hidden;
    transition: all 0.3s ease;
}

.leds-faq-toggle:hover {
    border-color: var(--color-border-brand-primary, #0099D6);
    box-shadow: 0 4px 12px 0 rgba(0, 153, 214, 0.1);
}

.leds-faq-toggle.active {
    border-color: var(--color-border-brand-primary, #0099D6);
    box-shadow: 0 4px 12px 0 rgba(0, 153, 214, 0.1);
}

.leds-faq-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leds-faq-toggle-header:hover {
    background: var(--color-surface-brand-primary-lightest, #E6F9FE);
}

.leds-faq-question {
    color: var(--color-text-base-major, #121926);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-lg, 18px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.leds-faq-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-surface-brand-primary-lightest, #E6F9FE);
    color: var(--color-text-brand-primary, #0099D6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.leds-faq-toggle-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.leds-faq-toggle.active .leds-faq-toggle-icon {
    background: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-text-base-major, #121926);
}

.leds-faq-toggle.active .leds-faq-toggle-icon svg {
    transform: rotate(180deg);
}

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

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

.leds-faq-answer p {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
    padding: 0 24px 24px 24px;
}

/* Responsividade da seção FAQ */
@media (max-width: 1024px) {
    .leds-faq-section {
        padding: 80px 0;
    }
    
    .leds-faq-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .leds-faq-title {
        font-size: 42px;
    }
    
    .leds-faq-tagline {
        font-size: 18px;
    }
    
    .leds-faq-question {
        font-size: 16px;
    }
    
    .leds-faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .leds-faq-section {
        padding: 60px 0;
    }
    
    .leds-faq-content {
        gap: 32px;
    }
    
    .leds-faq-title {
        font-size: 36px;
    }
    
    .leds-faq-tagline {
        font-size: 16px;
    }
    
    .leds-faq-toggle-header {
        padding: 20px;
    }
    
    .leds-faq-question {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .leds-faq-toggle-icon {
        width: 28px;
        height: 28px;
    }
    
    .leds-faq-toggle-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .leds-faq-answer p {
        font-size: 13px;
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .leds-faq-section {
        padding: 40px 0;
    }
    
    .leds-faq-content {
        gap: 24px;
    }
    
    .leds-faq-title {
        font-size: 28px;
    }
    
    .leds-faq-tagline {
        font-size: 14px;
    }
    
    .leds-faq-toggle-header {
        padding: 16px;
    }
    
    .leds-faq-question {
        font-size: 14px;
        padding-right: 8px;
    }
    
    .leds-faq-toggle-icon {
        width: 24px;
        height: 24px;
    }
    
    .leds-faq-toggle-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .leds-faq-answer p {
        font-size: 12px;
        padding: 0 16px 16px 16px;
    }
}

/* Responsividade da seção de informações */
@media (max-width: 1024px) {
    .leds-info-content {
        padding: 80px 48px;
        gap: 56px;
    }
    
    .leds-info-columns {
        gap: 0;
    }
    
    .leds-info-column {
        padding: 40px 24px;
    }
    
    .leds-info-column-title {
        font-size: 28px;
    }
    
    .leds-info-column-subtitle {
        font-size: 20px;
    }
    
    .leds-info-column-text {
        font-size: 16px;
    }
    
    .leds-info-column-button {
        padding: 14px 20px;
        font-size: 18px;
    }
    
    .leds-info-additional-title {
        font-size: 42px;
    }
    
    .leds-info-additional-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .leds-info-content {
        padding: 60px 32px;
        gap: 48px;
    }
    
    .leds-info-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .leds-info-column {
        padding: 32px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .leds-info-column:first-child {
        border-radius: 16px 16px 0 0;
    }
    
    .leds-info-column:last-child {
        border-radius: 0 0 16px 16px;
        border-bottom: none;
    }
    
    .leds-info-column-title {
        font-size: 24px;
    }
    
    .leds-info-column-subtitle {
        font-size: 18px;
    }
    
    .leds-info-column-text {
        font-size: 14px;
    }
    
    .leds-info-column-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .leds-info-additional-title {
        font-size: 36px;
    }
    
    .leds-info-additional-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .leds-info-content {
        padding: 40px 20px;
        gap: 32px;
    }
    
    .leds-info-column {
        padding: 24px 20px;
    }
    
    .leds-info-column-title {
        font-size: 20px;
    }
    
    .leds-info-column-subtitle {
        font-size: 16px;
    }
    
    .leds-info-column-text {
        font-size: 13px;
    }
    
    .leds-info-column-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .leds-info-additional-title {
        font-size: 28px;
    }
    
    .leds-info-additional-text {
        font-size: 14px;
    }
    
    .leds-info-additional-link {
        font-size: 14px;
    }
}

/* ========================================
   RODAPÉ
   ======================================== */

.leds-footer {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100vw; /* Garantir que não exceda a largura da viewport */
    margin: 0 auto;
    padding: 96px 64px 48px 64px;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    background: var(--color-surface-base-950, #0D121C);
}

/* SVG Decorativo do Footer */
.leds-footer-svg {
    position: absolute;
    top: -145px !important;
    left: 0px;
    z-index: 1;
    opacity: 1 !important;
}

.leds-footer-svg svg {
    width: 337px !important;
    max-width: 100%;
    height: auto;
}

.leds-footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
}

/* Remover gap entre o último elemento (.leds-footer-content) e os elementos seguintes */
.leds-footer-content + .leds-footer-toggle-container {
    margin-bottom: calc(32px - 96px); /* 32px original - 96px do gap = -64px */
}

/* Quando toggle-container existe, o bottom vem depois dele (sem gap do content) */
.leds-footer-toggle-container + .leds-footer-bottom {
    margin-bottom: 16px; /* Mantém apenas o margin-top original */
}

/* Quando não há toggle, o bottom vem direto após o content */
.leds-footer-content + .leds-footer-bottom {
    margin-bottom: calc(16px - 96px); /* 16px original - 96px do gap = -80px */
}

.leds-footer-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    text-align: center;
    font-family: var(--font-family-mont, 'Inter');
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 116%;
    margin: 0;
}

.leds-footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    width: 100%;
    max-width: 1312px;
    padding: 0 20px; /* Adicionar padding para evitar que o grid toque as bordas */
}

.leds-footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.leds-footer-column-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--family-highlight, 'Poppins');
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 124%;
    margin: 0;
}

.leds-footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leds-footer-link {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leds-footer-link:hover {
    color: var(--color-text-brand-primary, #0099D6);
}

.leds-footer-link::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--color-text-brand-primary, #0099D6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leds-footer-link:hover::before {
    opacity: 1;
}

/* Footer Bottom */
/* ========================================
   TOGGLE MAIS INFORMAÇÕES
   ======================================== */

.leds-footer-toggle-container {
    width: 100%;
    max-width: 1312px;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.leds-footer-toggle-btn {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--color-text-base-minor-alt, #CDD5DF);
    padding: 12px 32px;
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-md, 16px);
    font-weight: var(--font-weight-medium, 500);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.leds-footer-toggle-btn:hover {
    border-top-color: var(--color-surface-brand-primary-medium, #00AEEF);
    border-left-color: var(--color-surface-brand-primary-medium, #00AEEF);
    border-right-color: var(--color-surface-brand-primary-medium, #00AEEF);
    color: var(--color-surface-brand-primary-medium, #00AEEF);
}

.leds-footer-toggle-btn .toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.leds-footer-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* ========================================
   TEXTO INFORMATIVO DO FOOTER (DENTRO DO TOGGLE)
   ======================================== */

.leds-footer-info-text {
    width: 100%;
    padding: 24px 20px 0 20px;
    margin: 0;
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-sm, 14px);
    line-height: 1.6;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.leds-footer-info-text p {
    margin: 0 0 16px 0;
    color: var(--color-text-base-minor-alt, #CDD5DF);
}

.leds-footer-info-text p:last-child {
    margin-bottom: 0;
}

.leds-footer-info-text strong {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-weight: var(--font-weight-semibold, 600);
}

.leds-footer-info-text a {
    color: var(--color-text-brand-primary, #0099D6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.leds-footer-info-text a:hover {
    color: var(--color-surface-brand-primary-medium, #00AEEF);
    text-decoration: underline;
}

/* ========================================
   SEÇÃO DE COPYRIGHT
   ======================================== */

.leds-footer-bottom {
    width: 100%;
    max-width: 1312px;
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.leds-footer-bottom.leds-hiding {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    border-top: none;
}

.leds-copyright-wrapper {
    position: relative;
}

.leds-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.leds-copyright p {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-sm, 14px);
    margin: 0;
}

/* ========================================
   LOGOTIPO DO COPYRIGHT
   ======================================== */

.leds-footer-logo {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.leds-footer-logo-link,
.leds-footer-logo-static {
    display: flex;
    align-items: center;
    height: 40px;
    transition: all 0.3s ease;
}

.leds-footer-logo-link {
    cursor: pointer;
}

.leds-footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.leds-footer-logo svg {
    max-height: 40px;
    width: auto;
    max-width: 120px;
}

.leds-footer-logo-link svg,
.leds-footer-logo-static svg {
    fill: currentColor;
    color: var(--color-text-base-minor-alt, #CDD5DF);
    transition: color 0.3s ease;
}

.leds-footer-logo-link:hover svg {
    color: var(--color-surface-brand-primary-medium, #00AEEF);
}

.leds-footer-menu .leds-footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.leds-footer-menu .leds-footer-links li {
    margin: 0;
}

.leds-footer-menu .leds-footer-links a {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--font-family-base, 'Inter');
    font-size: var(--font-size-sm, 14px);
    text-decoration: none;
    transition: color 0.3s ease;
}

.leds-footer-menu .leds-footer-links a:hover {
    color: var(--color-text-brand-primary, #0099D6);
}

/* ========================================
   ÍCONE DE DOWNLOAD NO BOTÃO CTA
   ======================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-button .download-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cta-button:hover .download-icon {
    transform: translateY(2px);
}

/* Responsividade do Rodapé */
@media (max-width: 1024px) {
    .leds-footer {
        padding: 80px 48px 40px 48px;
        gap: 80px;
    }
    
    .leds-footer-svg svg {
        width: 250px;
        height: auto;
    }
    
    .leds-footer-content {
        gap: 80px;
    }
    
    .leds-footer-title {
        font-size: 48px;
    }
    
    .leds-footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0 15px;
    }
    
    .leds-footer-column-title {
        font-size: 18px;
    }
    
    .leds-footer-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .leds-footer {
        padding: 50px 20px 30px 20px;
        gap: 40px;
    }
    
    .leds-footer-svg svg {
        width: 180px;
        height: auto;
    }
    
    .leds-footer-content {
        gap: 40px;
    }
    
    .leds-footer-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .leds-footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 10px;
    }
    
    .leds-footer-column {
        gap: 16px;
        text-align: center;
    }
    
    .leds-footer-column-title {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .leds-footer-links {
        gap: 12px;
    }
    
    .leds-footer-link {
        font-size: 14px;
        line-height: 1.4;
        justify-content: center;
    }
    
    .leds-footer-toggle-container {
        padding: 16px 10px;
        margin-top: 28px;
    }
    
    .leds-footer-toggle-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-left: none;
        border-right: none;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .leds-footer {
        padding: 35px 15px 20px 15px;
        gap: 32px;
    }
    
    .leds-footer-svg svg {
        width: 120px;
        height: auto;
    }
    
    .leds-footer-content {
        gap: 32px;
    }
    
    .leds-footer-title {
        font-size: 26px;
        line-height: 1.1;
    }
    
    .leds-footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }
    
    .leds-footer-column {
        gap: 12px;
        text-align: center;
    }
    
    .leds-footer-column-title {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .leds-footer-links {
        gap: 8px;
    }
    
    .leds-footer-link {
        font-size: 13px;
        line-height: 1.3;
        justify-content: center;
    }
    
    .leds-footer-toggle-container {
        padding: 12px 8px;
        margin-top: 20px;
    }
    
    .leds-footer-toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-left: none;
        border-right: none;
        width: 100%;
        justify-content: center;
    }
    
    .leds-footer-bottom {
        padding: 16px 8px;
        margin-top: 10px;
    }
    
    .leds-flex-between {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .leds-footer-menu .leds-footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .leds-footer-logo {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    .leds-footer-logo svg {
        max-height: 28px;
        max-width: 80px;
    }
}

@media (max-width: 576px) {
    .leds-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .leds-header-container {
        height: 60px;
        padding: 8px 8px 8px 12px;
        border-radius: 30px;
    }
    
    .leds-logo {
        width: 100px;
        height: 28px;
    }
    
    /* Banner responsivo para mobile */
    .leds-main-banner {
        height: auto;
        min-height: 500px;
        padding: 30px 0;
    }
    
    .leds-banner-title {
        font-size: 36px;
    }
    
    .leds-banner-subtitle {
        font-size: 18px;
    }
    
    .leds-banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .leds-banner-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .leds-watch-button {
        width: 120px;
        height: 120px;
        border-radius: 60px;
        font-size: 14px;
        bottom: 10px;
        right: 10px;
    }
}

/* ===== LEDS TECHNOLOGY WIDGET ===== */

.leds-technology {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    background: 
        url("images/bg-tec.png") no-repeat center/cover,
        var(--bg-tec, #f8fafc);
    padding: 80px 0;
}

.leds-technology-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.leds-technology-title {
    color: var(--color-text-base-major, #121926);
    font-family: 'Inter', sans-serif !important;
    font-size: var(--font-size-6xl, 56px) !important;
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%; /* 56px */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.leds-technology-title-line1 {
    color: var(--color-text-base-major, #121926);
    font-family: 'Inter', sans-serif !important;
    font-size: var(--font-size-6xl, 56px) !important;
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    display: block;
}
.leds-technology-title-line1 span,
.leds-technology-title-line1 strong {
    color: var(--color-surface-brand-primary-medium, #00AEEF);
    font-weight: var(--font-weight-bold, 700);
}

.leds-technology-title-line2 {
    color: var(--color-surface-brand-primary-medium, #00AEEF);
    font-family: 'Inter', sans-serif !important;
    font-size: var(--font-size-6xl, 56px) !important;
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    display: block;
}

.leds-technology-subtitle {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--family-highlight, 'Poppins'), sans-serif !important;
    font-size: var(--font-size-xl, 20px) !important;
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%; /* 24.8px */
    margin: 0 auto;
    max-width: 100% !important;
}

.leds-technology-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px !important;
    align-items: stretch;
    width: 100%;
}

.leds-technology-item {
    display: flex;
    padding: 20px !important;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: var(--border-radius-2xl, 24px);
    background: var(--color-surface-base-white, #FFF);
    box-shadow: 0 1px 2px 0 rgba(13, 18, 28, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leds-technology-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px 0 rgba(13, 18, 28, 0.1);
}

.leds-technology-icon {
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px !important;
}

.leds-technology-icon i,
.leds-technology-icon svg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}

.leds-technology-item h3 {
    color: var(--color-text-base-major, #121926) !important;
    text-align: center;
    font-family: var(--family-highlight, 'Poppins'), sans-serif !important;
    font-size: var(--font-size-xl, 20px) !important;
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%; /* 24.8px */
    margin: 0;
}

.leds-technology-item p {
    color: var(--color-text-base-minor, #697586) !important;
    text-align: center;
    font-family: var(--family-base, 'Inter'), sans-serif;
    font-size: var(--font-size-md, 16px) !important;
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%; /* 19.84px */
    margin: 0;
}

/* Responsividade para Technology Grid */
@media (max-width: 1312px) {
    .leds-technology-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .leds-technology-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .leds-technology-title,
    .leds-technology-title-line1,
    .leds-technology-title-line2 {
        font-size: var(--font-size-5xl, 48px);
    }
}

@media (max-width: 768px) {
    .leds-technology {
        padding: 50px 32px !important;
        gap: 16px;
    }
    
    .leds-technology-container {
        padding: 0 20px;
    }
    
    .leds-technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leds-technology-title,
    .leds-technology-title-line1,
    .leds-technology-title-line2 {
        font-size: var(--font-size-3xl, 28px);
        line-height: 1.2;
    }
    
    .leds-technology-subtitle {
        font-size: var(--font-size-md, 16px);
        line-height: 1.4;
        margin-bottom: 32px;
    }
    
    .leds-technology-item {
        padding: 24px 20px !important;
        gap: 16px;
        text-align: center;
        min-height: 160px;
    }
    
    .leds-technology-icon {
        width: 48px;
        height: 48px;
        padding: 0;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .leds-technology-icon i,
    .leds-technology-icon svg {
        font-size: 24px !important;
    }
    
    .leds-technology-item h3 {
        font-size: var(--font-size-lg, 18px);
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .leds-technology-item p {
        font-size: var(--font-size-sm, 14px);
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .leds-technology-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .leds-technology-container {
        padding: 0 15px;
    }
    
    .leds-technology {
        padding: 40px 32px !important;
        gap: 12px;
    }
    
    .leds-technology-title,
    .leds-technology-title-line1,
    .leds-technology-title-line2 {
        font-size: var(--font-size-2xl, 24px);
        line-height: 1.1;
    }
    
    .leds-technology-subtitle {
        font-size: var(--font-size-sm, 14px);
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .leds-technology-item {
        padding: 20px 16px !important;
        min-height: 140px;
    }
    
    .leds-technology-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .leds-technology-icon i,
    .leds-technology-icon svg {
        font-size: 20px !important;
    }
    
    .leds-technology-item h3 {
        font-size: var(--font-size-md, 16px);
        line-height: 1.2;
    }
    
    .leds-technology-item p {
        font-size: var(--font-size-xs, 12px);
        line-height: 1.4;
    }
}

/* ========================================
   CORREÇÕES DE VISIBILIDADE DO MENU
   ======================================== */

/* ========================================
   VISIBILIDADE DO MENU (SIMPLIFICADO)
   ======================================== */

/* Forçar visibilidade do menu principal */
.leds-nav,
.main-navigation,
#site-navigation {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
}

/* Container do menu */
.leds-menu,
.leds-header-menu,
.leds-nav ul,
.main-navigation ul,
#primary-menu {
    display: flex !important;
    opacity: 1 !important;
    list-style: none !important;
    align-items: center !important;
}

/* Items do menu */
.leds-menu > li,
.leds-nav ul > li,
.main-navigation ul > li {
    display: block !important;
    opacity: 1 !important;
    position: relative;
    width: auto;
}

@media (max-width: 768px) {
    .leds-menu > li,
    .leds-nav ul > li,
    .main-navigation ul > li {
        width: 100% !important;
    }
}

/* Links do menu */
.leds-menu > li > a,
.leds-nav ul > li > a,
.main-navigation ul > li > a,
#primary-menu > li > a {
    display: inline-flex !important;
    opacity: 1 !important;
}

/* Containers pais com overflow visível */
.leds-header,
.leds-header-container,
.site-header,
#masthead {
    overflow: visible !important;
}

/* Setinha já está configurada nas linhas 320-337 acima */

/* ========================================
   SUBMENU WORDPRESS PADRÃO
   ======================================== */

/* Submenus WordPress padrão (herdam estilos do .leds-dropdown) */
.leds-menu .sub-menu,
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 300px;
    z-index: 9999;
    
    /* Estado inicial: OCULTO */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    
    /* Layout conforme especificado */
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    list-style: none;
}

/* Mostrar submenu apenas no hover */
.leds-menu .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.leds-menu .sub-menu li,
.main-navigation .sub-menu li {
    width: 100%;
    list-style: none !important;
}

.leds-menu .sub-menu a,
.main-navigation .sub-menu a {
    color: var(--color-text-base-major, #121926) !important;
    
    /* label/md/semibold conforme especificado */
    font-family: var(--family-base, Inter) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important; /* 16px */
    
    text-decoration: none !important;
    padding: 12px !important;
    gap: 16px !important;
    display: block !important;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 100%;
}

.leds-menu .sub-menu a:hover,
.main-navigation .sub-menu a:hover {
    background: #f8f9fa;
    color: #00AEEF !important;
    padding-left: 16px !important;
}

/* ========================================
   MENU MOBILE HAMBÚRGUER
   ======================================== */

/* Esconder menu mobile por padrão */
.leds-mobile-menu {
    display: none;
}

/* Botão hambúrguer */
.leds-hamburger-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.leds-hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #FCFCFD;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animação do hambúrguer quando ativo */
.leds-hamburger-btn.active .leds-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.leds-hamburger-btn.active .leds-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Hover effect no botão hambúrguer */
.leds-hamburger-btn:hover .leds-hamburger-line {
    background-color: #00AEEF;
}

/* Overlay do menu mobile */
.leds-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leds-mobile-overlay.active {
    opacity: 1;
}

/* Container do menu mobile */
.leds-mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #0D121C 0%, #121926 100%);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.leds-mobile-menu-container.active {
    right: 0;
}

/* Header do menu mobile */
.leds-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leds-mobile-menu-title {
    color: #FCFCFD;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.leds-mobile-menu-close {
    background: none;
    border: none;
    color: #FCFCFD;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.leds-mobile-menu-close:hover {
    color: #00AEEF;
}

/* Conteúdo do menu mobile */
.leds-mobile-menu-content {
    padding: 20px;
}

/* Lista do menu mobile */
.leds-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.leds-mobile-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leds-mobile-menu li:last-child {
    border-bottom: none;
}

/* Links principais do menu mobile */
.leds-mobile-menu > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #FCFCFD;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leds-mobile-menu > ul > li > a:hover {
    color: #00AEEF;
    padding-left: 8px;
}

/* Indicador de submenu */
.leds-mobile-menu .menu-item-has-children > a::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.leds-mobile-menu .menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
}

/* Submenus do menu mobile */
.leds-mobile-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -20px;
    padding: 0 20px;
}

.leds-mobile-menu .sub-menu.active {
    max-height: 300px;
}

.leds-mobile-menu .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leds-mobile-menu .sub-menu li:last-child {
    border-bottom: none;
}

.leds-mobile-menu .sub-menu a {
    display: block;
    padding: 12px 0 12px 20px;
    color: #CDD5DF;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leds-mobile-menu .sub-menu a:hover {
    color: #00AEEF;
    padding-left: 32px;
}

/* Botão CTA no menu mobile */
.leds-mobile-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.leds-mobile-cta-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #00AEEF;
    color: #121926;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.leds-mobile-cta-button:hover {
    background: #0088CC;
    transform: translateY(-2px);
    color: #121926;
}

/* Prevenir scroll do body quando menu estiver aberto */
body.leds-mobile-menu-open {
    overflow: hidden;
}

/* ========================================
   CORREÇÕES ESPECÍFICAS PARA MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Mostrar botão hambúrguer em mobile */
    .leds-hamburger-btn {
        display: flex;
    }
    
    /* Esconder menu desktop em mobile */
    .leds-menu,
    .main-navigation ul {
        display: none !important;
    }
    
    /* Mostrar menu mobile */
    .leds-mobile-menu {
        display: block;
    }
    
    /* Melhorar legibilidade geral em mobile */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Ajustar títulos para mobile */
    h1, .h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 0.625rem;
    }
    
    h5, .h5 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    h6, .h6 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    /* Melhorar espaçamentos de parágrafos */
    p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    /* Ajustar botões para mobile */
    .btn, .button, button {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Melhorar contraste e legibilidade */
    .text-muted {
        color: #6c757d !important;
    }
    
    /* Ajustar cards e containers */
    .card, .leds-card {
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .card-body, .leds-card-body {
        padding: 1rem;
    }
    
    /* Melhorar espaçamentos de seções */
    .section, .leds-section {
        padding: 2rem 0;
    }
    
    /* Ajustar formulários para mobile */
    .form-control, input, textarea, select {
        min-height: 44px;
        font-size: 16px;
        padding: 12px 16px;
    }
    
    /* Melhorar navegação mobile */
    .navbar-nav .nav-link {
        padding: 12px 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Ajustar tipografia para telas muito pequenas */
    body {
        font-size: 15px;
        line-height: 1.5;
    }
    
    h1, .h1 {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    h2, .h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    h3, .h3 {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    h4, .h4 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    h5, .h5 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    h6, .h6 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    /* Ajustar botões para telas pequenas */
    .btn, .button, button {
        min-height: 40px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Melhorar espaçamentos */
    .section, .leds-section {
        padding: 1.5rem 0;
    }
    
    .card-body, .leds-card-body {
        padding: 0.75rem;
    }
    
    /* Ajustar formulários */
    .form-control, input, textarea, select {
        min-height: 40px;
        font-size: 15px;
        padding: 10px 12px;
    }
    
    /* Melhorar navegação */
    .navbar-nav .nav-link {
        padding: 10px 12px;
        font-size: 15px;
    }
}
    
    .leds-menu .sub-menu,
    .main-navigation .sub-menu {
        position: static !important;
        opacity: 1 !important;
        display: block !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 8px 0 0 16px !important;
    }
    
    .leds-menu .sub-menu li,
    .main-navigation .sub-menu li {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .leds-menu .sub-menu a,
    .main-navigation .sub-menu a {
        padding: 8px 0 !important;
        font-size: 14px !important;
        color: #6c757d !important;
        border: none !important;
    }
    
    .leds-menu .sub-menu a:hover,
    .main-navigation .sub-menu a:hover {
        color: #00AEEF !important;
        background: transparent !important;
    }
    
    /* Melhorar botão de menu mobile */
    .navbar-toggler {
        border: none !important;
        padding: 8px !important;
        font-size: 1.25rem !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    /* Melhorar collapse do menu */
    .navbar-collapse {
        margin-top: 1rem !important;
        padding: 1rem 0 !important;
        border-top: 1px solid #e9ecef !important;
    }
    
    /* Ajustar logo em mobile */
    .navbar-brand {
        font-size: 1.25rem !important;
        font-weight: 600 !important;
    }
    
    .navbar-brand img {
        max-height: 32px !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    /* Ajustar navegação para telas muito pequenas */
    .navbar-nav .nav-link {
        padding: 8px 0 !important;
        font-size: 14px !important;
        border-bottom: 1px solid #f8f9fa !important;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none !important;
    }
    
    .leds-menu .sub-menu a,
    .main-navigation .sub-menu a {
        font-size: 13px !important;
        padding: 6px 0 !important;
    }
    
    .navbar-toggler {
        font-size: 1.1rem !important;
        padding: 6px !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-brand img {
        max-height: 28px !important;
    }
    
    .navbar-collapse {
        margin-top: 0.75rem !important;
        padding: 0.75rem 0 !important;
    }
}
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding-left: 20px !important;
    }
}
