/* ==========================================
   ARQUIVO: /assets/css/contato.css (PREMIUM DARK)
   ========================================== */

/* === HERO DA PÁGINA CONTATO === */
.contact-hero {
    background-color: transparent;
    padding: 100px 0 50px 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === CONTAINER PRINCIPAL === */
.contact-section {
    padding: 40px 0 100px 0;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: flex;
    background: rgba(13, 27, 20, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    overflow: hidden; 
    min-height: 580px;
}

/* === LADO ESQUERDO (INFO) === */
.contact-info {
    flex: 1; 
    background: linear-gradient(135deg, rgba(8, 16, 12, 0.95) 0%, rgba(40, 167, 69, 0.15) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.info-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 45px;
    font-size: 1rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.icon-circle {
    width: 52px;
    height: 52px;
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #28a745;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-item:hover .icon-circle {
    background-color: #28a745;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
    border-color: #28a745;
    transform: scale(1.05) rotate(5deg);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item span { 
    font-size: 0.75rem; 
    color: rgba(255, 255, 255, 0.5); 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    font-weight: 600;
}

.info-item strong { 
    font-size: 1.15rem; 
    margin-top: 4px; 
    color: white;
    font-weight: 500;
}

.contact-socials {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
    transform: translateY(-3px);
}

/* === LADO DIREITO (FORMULÁRIO) === */
.contact-form-box {
    flex: 1.5;
    padding: 60px;
    background: transparent;
}

.input-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    width: 100%;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    font-size: 1rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    resize: none; 
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

input:focus, textarea:focus {
    outline: none;
    border-color: rgba(40, 167, 69, 0.5);
    background-color: rgba(13, 27, 20, 0.3);
    box-shadow: 0 0 25px rgba(40, 167, 69, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #ffffff;
    color: #050806 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

.btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translate(4px, -4px) scale(1.05);
}

/* === RESPONSIVIDADE (MOBILE) === */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column; 
    }
    
    .contact-info, .contact-form-box {
        padding: 40px;
    }
    
    .contact-socials {
        margin-top: 40px;
    }
    
    .input-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-hero h1 { 
        font-size: 2.8rem; 
    }
}