/* LEDS Elementor Widgets CSS */

/* ========================================
   IMPORTAÇÃ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');

/* ========================================
   LARGURA TOTAL DOS WIDGETS
   ======================================== */

/* Garantir que os widgets ocupem 100% da largura */
.elementor-widget-leds_banner,
.elementor-widget-leds-technology,
.elementor-widget-leds-solutions,
.elementor-widget-leds-brands,
.elementor-widget-leds-blog,
.elementor-widget-leds-cta {
    width: 100% !important;
    max-width: 100% !important;
}

/* Garantir que os containers dos widgets ocupem 100% da largura */
.leds-banner,
.leds-technology,
.leds-solutions,
.leds-brands,
.leds-blog,
.leds-cta {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ========================================
   WIDGETS INDIVIDUAIS
   ======================================== */

/* Banner Widget */
.leds-banner {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    background-color: #0d121c;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: visible;
}

/* Overlay para imagem de fundo */
.leds-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(13, 18, 28, 0.7);
}

.leds-banner-container {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
    gap: 40px;
    position: relative;
    z-index: 2;
    min-height: 100%;
}

/* Container de largura total para banner */
.leds-banner.full-width .leds-banner-container {
    max-width: 100%;
    padding: 0 40px;
}

.leds-banner-content {
    flex: 1;
    text-align: left;
}

.leds-banner-title {
    font-size: 48px;
    font-weight: bold;
    color: #FCFCFD;
    margin-bottom: 20px;
    line-height: 1.2;
}

.leds-banner-subtitle {
    font-size: 18px;
    color: #FCFCFD;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.leds-banner-primary-button,
.leds-banner-secondary-button,
.leds-banner-video-button {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-full, 9999px);
}

.leds-banner-primary-button {
    background-color: #00AEEF;
    color: #121926;
    border-color: #00AEEF;
}

.leds-banner-primary-button:hover {
    background-color: #0088CC;
    border-color: #0088CC;
    color: #ffffff;
}

.leds-banner-secondary-button {
    color: #FFFFFF !important;
    border-color: #697586;
    background: rgba(255, 255, 255, 0.08);
}

.leds-banner-secondary-button:hover {
    background-color: #697586;
    color: #ffffff;
}

.leds-banner-video-button {
    color: #FCFCFD;
    border-radius: 100%;
    background: rgba(13, 18, 28, 0.80);
}

.leds-banner-video-button:hover {
    background-color: #FCFCFD;
    color: #0d121c;
}

.leds-banner-image {
    flex: 1;
    text-align: center;
}

.leds-banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Lado direito do banner */
.leds-banner-right {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 100%;
    flex-shrink: 0;
}

/* Container de imagem do banner */
.leds-banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botão de vídeo posicionado diretamente no banner */
.leds-banner .leds-banner-video-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 100%;
    background: rgba(13, 18, 28, 0.80);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FCFCFD;
    font-size: 16px;
    font-weight: 600;
    z-index: 10;
    flex-shrink: 0;
}

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

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

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

/* Evitar scroll quando modal estiver aberto */
body.modal-open {
    overflow: hidden;
}

.leds-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.leds-video-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.leds-video-modal-close:hover {
    color: #ccc;
}

#leds-video-iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .leds-video-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    #leds-video-iframe {
        height: 250px;
    }
    
    .leds-video-modal-close {
        top: 5px;
        right: 15px;
        font-size: 24px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .leds-banner {
        min-height: 500px;
        background-position: center center;
        background-size: cover;
        padding: 40px 0;
    }
    
    .leds-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .leds-banner-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .leds-banner-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .leds-banner-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .leds-banner-primary-button,
    .leds-banner-secondary-button,
    .leds-banner-video-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .leds-banner-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .leds-banner-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Ajustes para o lado direito no mobile */
    .leds-banner-right {
        width: 100%;
        min-height: auto;
        justify-content: center;
    }
    
    /* Botão de vídeo no mobile */
    .leds-banner .leds-banner-video-button {
        position: relative;
        bottom: auto;
        right: auto;
        width: auto;
        height: auto;
        max-width: 100px;
        max-height: 100px;
        padding: 12px 20px;
        font-size: 14px;
        margin: 20px auto 0;
    }
    
    .leds-banner .leds-banner-video-button .leds-video-text {
        font-size: 16px;
    }
    
    .leds-banner .leds-banner-video-button .leds-video-icon {
        width: 20px;
        height: 20px;
    }
    
    .leds-banner .leds-banner-video-button .leds-video-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .leds-banner {
        min-height: 450px;
        background-position: center center;
        background-size: cover;
        padding: 30px 0;
    }
    
    .leds-banner-container {
        padding: 0 15px;
        gap: 24px;
    }
    
    /* Ajustes adicionais para o botão de vídeo no mobile pequeno */
    .leds-banner .leds-banner-video-button {
        width: auto;
        height: auto;
        max-width: 100px;
        max-height: 100px;
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    .leds-banner .leds-banner-video-button .leds-video-text {
        font-size: 16px;
    }
    
    .leds-banner .leds-banner-video-button .leds-video-icon {
        width: 18px;
        height: 18px;
    }
    
    .leds-banner .leds-banner-video-button .leds-video-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .leds-banner-title {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .leds-banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .leds-banner-buttons {
        gap: 12px;
    }
    
    .leds-banner-primary-button,
    .leds-banner-secondary-button {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 260px;
    }
    
    .leds-banner-video-button {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 100px;
        max-height: 100px;
    }
    
    .leds-banner-video-button .leds-video-text {
        font-size: 16px;
    }
    
    .leds-banner-image {
        margin-bottom: 16px;
    }
}

/* Tecnologia Widget */
.leds-technology {
    padding: 80px 0;
}

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

.leds-technology-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.leds-technology-title p {
    padding: 0 !important;
    margin: 0 !important;
}
.leds-technology-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 64px;
}

.leds-technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.leds-technology-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #FFF;
    transition: transform 0.3s ease;
}

.leds-technology-item:hover {
    transform: translateY(-5px);
}

.leds-technology-icon {
    font-size: 48px;
    color: #00AEEF;
    margin-bottom: 20px;
}

.leds-technology-item h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.leds-technology-item p {
    color: #666;
    line-height: 1.6;
}

/* Soluções Widget */
.leds-solutions {
    padding: 80px 0;
    background-color: #0d121c;
    color: #FCFCFD;
}

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

.leds-solutions-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.leds-solutions-subtitle {
    text-align: center;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
}

.leds-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.leds-solutions-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.leds-solutions-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.leds-solutions-icon {
    font-size: 48px;
    color: #00AEEF;
    margin-bottom: 20px;
}

.leds-solutions-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.leds-solutions-item p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.leds-solutions-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00AEEF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.leds-solutions-button:hover {
    background-color: #0088CC;
    color: #ffffff;
}

/* Marcas Widget */
.leds-brands {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.leds-brands-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.leds-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.leds-brands-item {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.leds-brands-item:hover {
    transform: translateY(-3px);
}

.leds-brands-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

.leds-brands-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.leds-brands-placeholder {
    padding: 40px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #666;
    font-weight: 500;
}

/* Blog Widget */
.leds-blog {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.leds-blog-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.leds-blog-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.leds-blog-grid {
    display: grid;
    gap: 30px;
}

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

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

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

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

.leds-blog-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.leds-blog-item:hover {
    transform: translateY(-5px);
}

.leds-blog-image {
    overflow: hidden;
}

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

.leds-blog-item:hover .leds-blog-image img {
    transform: scale(1.05);
}

.leds-blog-content {
    padding: 20px;
}

.leds-blog-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.leds-blog-content h3 a {
    color: #333;
    text-decoration: none;
}

.leds-blog-content h3 a:hover {
    color: #00AEEF;
}

.leds-blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.leds-blog-read-more {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.leds-blog-read-more:hover {
    color: #0088CC;
}

/* CTA Widget */
.leds-cta {
    padding: 80px 0;
    background-color: #00AEEF;
    text-align: center;
}

.leds-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.leds-cta-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.leds-cta-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.leds-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #00AEEF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leds-cta-button:hover {
    background-color: #f0f0f0;
    color: #00AEEF;
}

.leds-cta-secondary-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leds-cta-secondary-button:hover {
    background-color: #ffffff;
    color: #00AEEF;
}

/* Responsividade */
@media (max-width: 768px) {
    .leds-technology {
        padding: 60px 32px !important;
    }
    
    .leds-technology-container {
        padding: 0 20px;
    }
    
    .leds-technology-title {
        font-size: 32px !important;
        margin-bottom: 16px;
    }
    
    .leds-technology-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .leds-technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leds-technology-item {
        padding: 24px 20px;
    }
    
    .leds-technology-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .leds-technology-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .leds-blog-columns-2,
    .leds-blog-columns-3,
    .leds-blog-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .leds-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .leds-cta-button,
    .leds-cta-secondary-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .leds-technology {
        padding: 40px 32px !important;
    }
    
    .leds-technology-container {
        padding: 0 15px;
    }
    
    .leds-technology-title {
        font-size: 32px !important;
        margin-bottom: 12px;
    }
    .leds-technology-title p {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 100%;
    }
    
    .leds-technology-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .leds-technology-grid {
        gap: 16px;
    }
    
    .leds-technology-item {
        padding: 20px 16px;
    }
    
    .leds-technology-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .leds-technology-item p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .leds-technology-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
}

/* Blog Widget */
.leds-blog {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.leds-blog-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
}

.leds-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leds-blog-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.leds-blog-item:hover {
    transform: translateY(-5px);
}

.leds-blog-image {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.leds-blog-content {
    padding: 20px;
}

.leds-blog-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.leds-blog-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.leds-blog-read-more {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 500;
}

.leds-blog-read-more:hover {
    text-decoration: underline;
}

/* CTA Widget */
.leds-cta {
    padding: 80px 0;
    background-color: #00AEEF;
    color: #ffffff;
    text-align: center;
}

.leds-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.leds-cta-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.leds-cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.leds-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #00AEEF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.leds-cta-button:hover {
    background-color: #f0f0f0;
    color: #0088CC;
}

/* Info Widget */
.leds-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.leds-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.leds-info-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leds-info-icon {
    font-size: 48px;
    color: #00AEEF;
    margin-bottom: 20px;
}

.leds-info-item h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.leds-info-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Widget */
.leds-faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.leds-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.leds-faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
}

.leds-faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.leds-faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s ease;
}

.leds-faq-question:hover {
    background-color: #e9ecef;
}

.leds-faq-answer {
    padding: 20px;
    background-color: #ffffff;
    color: #666;
    line-height: 1.6;
    display: none;
}

.leds-faq-answer.active {
    display: block;
}
