/**
 * Hero Layout - Estilo Liquigás
 * Layout com duas colunas: texto à esquerda e imagem à direita com formas decorativas
 * 
 * @author Roka Digital - https://rokadigital.com.br/contato/
 */

/* Container do Hero */
.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Coluna de Texto */
.hero-col-text {
    padding-right: 40px;
    z-index: 3;
}

.hero-col-text .hero-content {
    text-align: left;
}

.hero-col-text .hero-title {
    text-align: left;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-col-text .hero-subtitle {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-col-text .hero-buttons {
    justify-content: flex-start;
}

/* Coluna de Imagem - Apenas a imagem, sem formas decorativas */
.hero-col-image {
    position: relative;
    height: 100%;
    z-index: 2;
    overflow: visible;
}

/* Remover formas decorativas - apenas imagem de fundo aplicada via CSS inline no index.php */

/* Responsividade */
@media (max-width: 1024px) {
    .hero-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-col-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-col-text .hero-content {
        text-align: center;
    }
    
    .hero-col-text .hero-title {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .hero-col-text .hero-subtitle {
        text-align: center;
    }
    
    .hero-col-text .hero-buttons {
        justify-content: center;
    }
    
    .hero-col-image {
        height: 400px;
        margin-top: 30px;
    }
    
    .hero-col-image::after {
        right: -50px;
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-col-text .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-col-text .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-col-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-col-text .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-col-image {
        height: 300px;
    }
}
