/* LEDS Founder Section Widget Styles */

.leds-founder-section {
    display: flex;
    padding: 96px 0;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    background: var(--color-surface-base-white, #FFF);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leds-founder-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;
}

.leds-founder-section .founder-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    width: 100%;
    align-items: start;
}

.leds-founder-section .founder-image-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.leds-founder-section .founder-image {
    display: flex;
    width: 291.5px;
    height: 319.64px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 16px;
    overflow: hidden;
}

.leds-founder-section .founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.leds-founder-section .founder-text-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.leds-founder-section .founder-title {
    color: var(--color-text-base-major, #121926);
    font-family: 'Mont', sans-serif;
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    margin: 0;
}

.leds-founder-section .founder-quote {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--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;
    font-style: italic;
}

.leds-founder-section .founder-name {
    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;
}

.leds-founder-section .founder-position {
    color: var(--color-text-base-minor, #697586);
    font-family: var(--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-founder-section .founder-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);
    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;
    align-self: flex-start;
}

.leds-founder-section .founder-button:hover {
    background: var(--color-surface-brand-primary-dark, #0099D6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 1024px) {
    .leds-founder-section {
        padding: 64px 0;
    }
    
    .leds-founder-section .leds-container {
        gap: 48px;
    }
    
    .leds-founder-section .founder-content {
        gap: 48px;
    }
    
    .leds-founder-section .founder-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .leds-founder-section {
        padding: 48px 0;
    }
    
    .leds-founder-section .leds-container {
        gap: 32px;
        padding: 0 16px;
    }
    
    .leds-founder-section .founder-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .leds-founder-section .founder-image-column {
        align-items: center;
    }
    
    .leds-founder-section .founder-image {
        width: 250px;
        height: 280px;
    }
    
    .leds-founder-section .founder-text-column {
        align-items: center;
    }
    
    .leds-founder-section .founder-title {
        font-size: 40px;
    }
    
    .leds-founder-section .founder-quote {
        font-size: 18px;
    }
    
    .leds-founder-section .founder-name {
        font-size: 18px;
    }
    
    .leds-founder-section .founder-position {
        font-size: 14px;
    }
    
    .leds-founder-section .founder-button {
        font-size: 18px;
        padding: 16px 20px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .leds-founder-section {
        padding: 32px 0;
    }
    
    .leds-founder-section .leds-container {
        gap: 24px;
        padding: 0 12px;
    }
    
    .leds-founder-section .founder-content {
        gap: 24px;
    }
    
    .leds-founder-section .founder-image {
        width: 200px;
        height: 240px;
    }
    
    .leds-founder-section .founder-title {
        font-size: 32px;
    }
    
    .leds-founder-section .founder-quote {
        font-size: 16px;
    }
    
    .leds-founder-section .founder-name {
        font-size: 16px;
    }
    
    .leds-founder-section .founder-position {
        font-size: 14px;
    }
    
    .leds-founder-section .founder-button {
        font-size: 16px;
        padding: 14px 18px;
        width: 100%;
        max-width: 100%;
    }
}
