/**
 * Texto + BG Full Width Component Styles
 * 
 * Componente que exibe texto e uma área com o tamanho da largura de uma coluna no desktop.
 */

/* ===== BASE STYLES ===== */
.texto-bg-full {
    width: 100%;
    padding: 80px 0;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ===== BACKGROUND COLORS ===== */
.texto-bg-full--bg-branco {
    background-color: var(--neutral-1000);
}

.texto-bg-full--bg-cinza-claro {
    background-color: var(--neutral-800);
}

.texto-bg-full--bg-cinza-escuro {
    background-color: var(--neutral-300);
}

.texto-bg-full--bg-verde {
    background-color: #005223;
}

.texto-bg-full--bg-roxo {
    background-color: var(--climate-scanner-roxo);
}

.texto-bg-full--bg-transparente {
    background-color: transparent;
}

/* ===== CONTENT LAYOUT ===== */
.texto-bg-full__content {
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: 100%;
}

/* ===== TEXT CONTENT ===== */
.texto-bg-full__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: 0; /* Prevents flex item from overflowing */
    max-width: 630px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}
.texto-bg-full--largura-texto-maior .texto-bg-full__text {
    max-width: 840px;
}

.texto-bg-full--tamanho-titulo-menor .texto-bg-full__title {
    font-size: 40px;
    margin-bottom: 40px;
}

.texto-bg-full__title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--heading-2-large);
    line-height: var(--heading-2-line-height-large);
    color: var(--success-850) !important;
    margin: 0;
}

.texto-bg-full__title-link {
    text-decoration: none;
    color: inherit;
}

/* Title color adjustments for different backgrounds */
.texto-bg-full--bg-verde .texto-bg-full__title,
.texto-bg-full--bg-roxo .texto-bg-full__title {
    color: var(--neutral-90);
}

.texto-bg-full--bg-verde .texto-bg-full__title-link,
.texto-bg-full--bg-roxo .texto-bg-full__title-link {
    color: inherit;
    text-decoration: none;
}

.texto-bg-full--bg-cinza-escuro .texto-bg-full__title {
    color: var(--neutral-1000);
}

.texto-bg-full--bg-cinza-escuro .texto-bg-full__title-link {
    color: inherit;
    text-decoration: none;
}

.texto-bg-full__description {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    font-size: var(--body-large);
    line-height: var(--body-line-height-large);
    color: var(--neutral-100);
}

/* Description color adjustments for different backgrounds */
.texto-bg-full--bg-verde .texto-bg-full__description,
.texto-bg-full--bg-roxo .texto-bg-full__description,
.texto-bg-full--bg-verde .texto-bg-full__description p,
.texto-bg-full--bg-roxo .texto-bg-full__description p,
.texto-bg-full--bg-verde .texto-bg-full__description ul,
.texto-bg-full--bg-roxo .texto-bg-full__description ul,
.texto-bg-full--bg-verde .texto-bg-full__description ol,
.texto-bg-full--bg-roxo .texto-bg-full__description ol {
    color: var(--neutral-90);
}

.texto-bg-full--bg-cinza-escuro .texto-bg-full__description,
.texto-bg-full--bg-cinza-escuro .texto-bg-full__description p,
.texto-bg-full--bg-cinza-escuro .texto-bg-full__description ul,
.texto-bg-full--bg-cinza-escuro .texto-bg-full__description ol {
    color: var(--neutral-1000);
}


/* ===== RESPONSIVE DESIGN ===== */

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
    .texto-bg-full {
        padding: 64px 0;
    }
    
    .texto-bg-full__title {
        font-size: var(--heading-3-large);
        line-height: var(--heading-3-line-height-large);
    }
}

/* Medium screens (910px and below) */
@media (max-width: 910px) {
    .texto-bg-full {
        padding: 48px 0;
    }
    
    .texto-bg-full__title {
        font-size: var(--heading-4-large);
        line-height: var(--heading-4-line-height-large);
    }
}

/* Mobile screens (768px and below) */
@media (max-width: 768px) {
    .texto-bg-full {
        padding: 32px 0;
    }
    
    /* ===== Mobile: Always stack vertically ===== */
    .texto-bg-full__content {
        flex-direction: column;
        gap: 16px;
    }
    
    .texto-bg-full__text {
        order: 2;
        gap: 8px;
        margin-top: 0;
    }
    
    .texto-bg-full__title {
        font-size: 28px;
        line-height: 1.45;
    }
    body.non-home .texto-bg-full__title {
        font-size: 24px;
    }
    
    .texto-bg-full__description,
    .texto-bg-full__description p,
    .texto-bg-full__description ul,
    .texto-bg-full__description ol {
        font-size: 12px;
        line-height: 1.8;
    }
    .texto-bg-full--tamanho-titulo-menor .texto-bg-full__title {
        margin-bottom: 24px;
    }
    
}

/* Small mobile screens (480px and below) */
@media (max-width: 480px) {
    .texto-bg-full {
        padding: 32px 0;
    }
    
    .texto-bg-full__text {
        gap: 12px;
    }
    
    .texto-bg-full__title {
        font-size: var(--heading-5-small);
        line-height: var(--heading-5-line-height-small);
    }
    
    .texto-bg-full__description {
        font-size: var(--body-tiny);
        line-height: var(--body-line-height-tiny);
    }

}

/* ===== PRINT STYLES ===== */
@media print {
    .texto-bg-full {
        padding: 20px 0;
        break-inside: avoid;
    }
    
    .texto-bg-full__content {
        flex-direction: column;
        gap: 20px;
    }
}
