/* LEDS Info Section Styles */

/* Seção Principal */
.leds-info-section {
    display: flex;
    padding: 96px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
}

.leds-info-section .leds-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    align-self: stretch;
    max-width: 1312px !important;
    margin: 0 auto;
    padding: 0 20px;
}

/* Wrapper com Background */
.leds-info-section .info-wrapper {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px;
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
    height: 730px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.leds-info-section .info-wrapper:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.leds-info-section .info-wrapper > * {
    position: relative;
    z-index: 2;
}

/* Grid de Colunas */
.leds-info-section .info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 0;
    height: 100%;
    align-items: center;
    width: 100%;
}

/* Coluna Individual */
.leds-info-section .info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.leds-info-section .info-column:hover {
    transform: translateY(-4px);
}

/* Imagem da Coluna */
.leds-info-section .column-image {
    width: 100%;
    height: auto !important;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leds-info-section .column-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.leds-info-section .info-column:hover .column-image img {
    transform: scale(1.05);
}


/* Título da Coluna */
.leds-info-section .column-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: 'Mont', sans-serif;
    font-size: var(--font-size-3xl, 32px);
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 32px */
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.leds-info-section .info-column:hover .column-title {
    color: #fff;
}

/* Subtítulo da Coluna */
.leds-info-section .column-subtitle {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: 'Mont', sans-serif;
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 124%; /* 29.76px */
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.leds-info-section .info-column:hover .column-subtitle {
    color: #fff;
}

/* Texto da Coluna */
.leds-info-section .column-text {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg, 18px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%; /* 23.76px */
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.leds-info-section .info-column:hover .column-text {
    color: #fff;
}

/* Botão da Coluna */
.leds-info-section .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: 'Poppins', sans-serif;
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 100%; /* 20px */
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.leds-info-section .column-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.leds-info-section .column-button:hover::before {
    left: 100%;
}

.leds-info-section .column-button:hover {
    background: var(--color-surface-brand-primary-dark, #0099D6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
}

.leds-info-section .column-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.2);
}

/* Conteúdo Inferior */
.leds-info-section .bottom-content {
    text-align: center;
    width: 100%;
    padding: 40px 0 0 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Título Inferior */
.leds-info-section .bottom-title {
    color: var(--color-text-base-major, #121926);
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-size-5xl, 48px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 116%; /* 55.68px */
    margin: 0 0 24px 0;
    transition: color 0.3s ease;
}
.leds-info-section .bottom-title span {
    color: #0099D6;
}

/* Texto Inferior */
.leds-info-section .bottom-text {
    color: var(--color-text-base-minor, #697586);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xl, 20px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 132%; /* 26.4px */
    margin: 0 0 24px 0;
    transition: color 0.3s ease;
}

/* Link Inferior */
.leds-info-section .bottom-link {
    color: var(--color-text-brand-primary, #0099D6);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-medium, 500);
    line-height: 132%; /* 21.12px */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.leds-info-section .bottom-link:hover {
    color: var(--color-surface-brand-primary-dark, #0099D6);
}

.leds-info-section .bottom-link:hover::after {
    width: 100%;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leds-info-section .info-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

.leds-info-section .info-columns {
    animation: fadeInUp 0.8s ease-out;
}

.leds-info-section .info-column:nth-child(1) {
    animation: fadeInUp 1s ease-out;
}

.leds-info-section .info-column:nth-child(2) {
    animation: fadeInUp 1.2s ease-out;
}

.leds-info-section .info-column:nth-child(3) {
    animation: fadeInUp 1.4s ease-out;
}

.leds-info-section .bottom-content {
    animation: fadeInUp 1.6s ease-out;
}

/* Responsividade - Desktop Grande */
@media (max-width: 1400px) {
    .leds-info-section .info-columns {
        gap: 40px;
    }
    
    .leds-info-section .info-wrapper {
        padding: 56px 48px;
    }
}

/* Responsividade - Desktop */
@media (max-width: 1024px) {
    .leds-info-section .info-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .leds-info-section .info-wrapper {
        padding: 48px 32px;
    }
    
    .leds-info-section .bottom-content {
        padding: 32px 24px;
    }
}

/* Responsividade - Tablet */
@media (max-width: 768px) {
    .leds-info-section {
        padding: 0px;
    }
    
    .leds-info-section .leds-container {
        gap: 48px;
        padding: 0 16px;
    }
    
    .leds-info-section .info-wrapper {
        padding: 32px 24px;
        border-radius: 24px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        height: auto !important;
    }
    
    .leds-info-section .column-title {
        font-size: 28px;
    }
    
    .leds-info-section .column-subtitle {
        font-size: 20px;
    }
    
    .leds-info-section .column-text {
        font-size: 16px;
    }
    
    .leds-info-section .column-button {
        padding: 14px 20px;
        font-size: 18px;
        width: 100%;
        max-width: 100%;
    }
    
    .leds-info-section .column-image {
        max-width: 160px;
    }
    
    .leds-info-section .column-image img {
        max-height: 160px;
    }
    
    .leds-info-section .bottom-title {
        font-size: 40px;
    }
    
    .leds-info-section .bottom-text {
        font-size: 18px;
    }
    
    .leds-info-section .bottom-content {
        padding: 24px 20px;
    }
}

/* Responsividade - Mobile */
@media (max-width: 480px) {
    .leds-info-section {
        padding: 0px;
    }
    
    .leds-info-section .leds-container {
        gap: 32px;
        padding: 0 12px;
    }
    
    .leds-info-section .info-wrapper {
        padding: 24px 20px;
        border-radius: 24px;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        height: auto !important;
    }
    
    .leds-info-section .column-title {
        font-size: 24px;
    }
    
    .leds-info-section .column-subtitle {
        font-size: 18px;
    }
    
    .leds-info-section .column-text {
        font-size: 14px;
    }
    
    .leds-info-section .column-button {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .leds-info-section .column-image {
        max-width: 140px;
    }
    
    .leds-info-section .column-image img {
        max-height: 140px;
    }
    
    .leds-info-section .bottom-title {
        font-size: 32px;
    }
    
    .leds-info-section .bottom-text {
        font-size: 16px;
    }
    
    .leds-info-section .bottom-content {
        padding: 20px 16px;
    }
}

/* Melhorias de acessibilidade */
.leds-info-section .column-button:focus,
.leds-info-section .bottom-link:focus {
    outline: 2px solid var(--color-border-brand-primary, #0099D6);
    outline-offset: 2px;
}

/* Estados especiais */
.leds-info-section .info-wrapper:focus-within {
    outline: 2px solid var(--color-border-brand-primary, #0099D6);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .leds-info-section {
        background: white !important;
        color: black !important;
    }
    
    .leds-info-section .info-wrapper {
        background: white !important;
        border: 1px solid #ccc !important;
    }
    
    .leds-info-section .info-wrapper::before {
        display: none !important;
    }
    
    .leds-info-section .column-title,
    .leds-info-section .column-subtitle,
    .leds-info-section .column-text {
        color: black !important;
    }
    
    .leds-info-section .column-button {
        background: #f0f0f0 !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
    
    .leds-info-section .bottom-content {
        background: white !important;
        border: 1px solid #ccc !important;
    }
}
