/* * Widget: Contact Section
 * Handle: as-contact-section-css
 */

.as-contact-section-widget {
    padding: 20px 0;
}

.contact-mini-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(230, 165, 92, 0.1) 0%, rgba(230, 165, 92, 0.02) 100%);
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid rgba(230, 165, 92, 0.2);
    transition: 0.3s;
    flex-wrap: wrap; /* Permite quebrar em telas menores */
    gap: 30px;
}

.contact-text {
    flex: 1; /* Ocupa espaço disponível */
    min-width: 300px;
}

.contact-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-text p { 
    color: #aaa; 
    margin: 0; 
    font-size: 1.1rem; 
}

/* Área dos Botões (Flex para alinhar lado a lado) */
.contact-btn-area {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Botão 1: Glow / Outline */
.btn-contact-glow {
    background: transparent;
    color: #E6A55C;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    transition: 0.3s;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    padding: 10px 0;
}

.btn-contact-glow:hover { 
    color: #fff; 
    gap: 15px; 
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Botão 2: Solid (Novo) */
.btn-contact-solid {
    background: #E6A55C;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-contact-solid:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 165, 92, 0.3);
}

/* --- TEMA LIGHT --- */
.as-contact-section-widget.skin-light .contact-mini-grid {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.as-contact-section-widget.skin-light .contact-text h3 {
    color: #111;
}

.as-contact-section-widget.skin-light .contact-text p {
    color: #666;
}

/* Ajuste do botão glow no tema claro */
.as-contact-section-widget.skin-light .btn-contact-glow {
    color: #D97706; /* Dourado mais escuro para contraste no branco */
}

.as-contact-section-widget.skin-light .btn-contact-glow:hover {
    color: #000;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-mini-grid { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
        padding: 40px 20px;
    }
    
    .contact-text { width: 100%; min-width: auto; }
    
    .contact-btn-area {
        justify-content: center;
        width: 100%;
        flex-direction: column; /* Botões um abaixo do outro no mobile */
    }
    
    .btn-contact-glow, .btn-contact-solid {
        width: 100%;
        justify-content: center;
    }
}