/* Estilos adicionais para harmonização visual */
.logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 20px;
}

/* Harmonização de espaçamentos */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-margin {
    margin: 80px 0;
}

.section-margin-sm {
    margin: 50px 0;
}

/* Harmonização de títulos */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-center {
    text-align: center;
}

.section-subtitle-center {
    text-align: center;
}

/* Harmonização de cards e elementos de conteúdo */
.content-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.content-card-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.content-card-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.content-card:hover .content-card-image img {
    transform: scale(1.05);
}

.content-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.content-card-text {
    color: #64748b;
    margin-bottom: 20px;
}

/* Harmonização de grids e layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.content-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

/* Harmonização de imagens e ícones */
.icon-feature {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsividade para layouts em grid */
@media (max-width: 1200px) {
    .content-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .content-grid,
    .content-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .logo img {
        max-height: 50px;
    }
}

/* Harmonização de cores e elementos de destaque */
.highlight-box {
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.highlight-text {
    color: #0ea5e9;
    font-weight: 600;
}

/* Melhorias na acessibilidade e foco */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

/* Animações suaves para elementos interativos */
.animated-element {
    transition: all 0.3s ease;
}

.animated-element:hover {
    transform: translateY(-5px);
}

/* Ajustes para proporções de imagens */
.aspect-ratio-16-9 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.aspect-ratio-16-9 img,
.aspect-ratio-16-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect-ratio-4-3 {
    position: relative;
    padding-bottom: 75%; /* 4:3 */
    height: 0;
    overflow: hidden;
}

.aspect-ratio-4-3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect-ratio-1-1 {
    position: relative;
    padding-bottom: 100%; /* 1:1 */
    height: 0;
    overflow: hidden;
}

.aspect-ratio-1-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
