/* Estilos para a seção emocional do AquaSculpt no layout de referência */
.emotional-banner {
    background-color: #f8f8f8;
    padding: 0;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.emotional-container {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.emotional-image-container {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
}

.emotional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.emotional-content {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emotional-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #333;
}

.emotional-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #555;
}

.emotional-highlight {
    font-weight: bold;
    color: #333;
}

.emotional-cta {
    display: inline-block;
    background-color: #a02c2c;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #a02c2c;
    cursor: pointer;
    text-align: center;
    max-width: 250px;
}

.emotional-cta:hover {
    background-color: #8a2424;
    transform: translateY(-2px);
}

/* Responsividade */
@media screen and (max-width: 1023px) {
    .emotional-container {
        flex-direction: column;
    }
    
    .emotional-image-container {
        max-width: 100%;
    }
    
    .emotional-content {
        padding: 2rem 1.5rem;
    }
    
    .emotional-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .emotional-title {
        font-size: 2rem;
    }
    
    .emotional-text {
        font-size: 1.1rem;
    }
    
    .emotional-cta {
        width: 100%;
        max-width: none;
    }
}
