﻿.contato-container {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contato-info {
    padding: 2.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.contato-info h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: white;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contato-accordion {
    margin-bottom: 2.5rem;
}

.accordion-item {
    margin-bottom: 2rem;
}

.accordion-header.destacado {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00BFFF;
    position: relative;
    padding-left: 1.2rem;
    border-left: 3px solid #00BFFF;
    margin-bottom: 1.5rem;
}

.accordion-content {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.accordion-content p, 
.accordion-content li {
    color: #eeeeee;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.accordion-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00BFFF;
}

.accordion-content a {
    color: #00BFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-content a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.contato-logo {
    margin-top: 3rem;
    text-align: center;
}

.contato-logo img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
}

.form-container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    color: #6950df;
    font-weight: 600;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6950df, #00beff);
    border-radius: 3px;
}

.form-container p {
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 0.5rem;
    font-size: 0.85rem;
    color: #6950df;
    background-color: white;
    padding: 0 0.5rem;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea ~ label {
    top: -10px;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6950df;
    box-shadow: 0 0 0 3px rgba(105, 80, 223, 0.2);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Estilo para o grupo de interesses */
.interesse-group {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    padding: 0.5rem 0;
}

.interesse-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 1.5rem;
}

.interesse-opcoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    accent-color: #6950df;
    cursor: pointer;
}

.checkbox-item label {
    position: static;
    transform: none;
    font-size: 0.95rem;
    font-weight: 400;
    color: #444;
    cursor: pointer;
    line-height: 1.4;
    margin-bottom: 0;
    pointer-events: auto;
}

.checkbox-item:hover label {
    color: #6950df;
}

.btn-enviar {
    background: linear-gradient(to right, #6950df, #00beff);
    color: white;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    max-width: 200px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-enviar.sending {
    background: #666;
    cursor: wait;
}

.btn-enviar.success {
    background: #28a745;
}

.btn-enviar.error {
    background: #dc3545;
}

/* Layout para telas maiores */
@media (min-width: 768px) {
    .form-row {
        display: flex;
        gap: 1rem;
        margin-bottom: 0;
    }
    
    .form-row .form-group {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .interesse-opcoes {
        grid-template-columns: 1fr;
    }
}

.contato-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

@media (max-width: 992px) {
    .contato-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contato-info, 
    .form-container {
        padding: 2rem;
    }
    
    .contato-logo img {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .contato-container {
        margin: 6rem auto 3rem;
    }
    
    .contato-info {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .contato-info h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .accordion-header.destacado {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contato-logo img {
        max-width: 70%;
    }
    
    .btn-enviar {
        padding: 0.8rem 1.5rem;
    }
}

.form-group.focused input,
.form-group.focused textarea {
    border-color: #6950df;
    box-shadow: 0 0 0 3px rgba(105, 80, 223, 0.2);
} 
/* Adicione estes estilos ao seu arquivo contato.css */

.mensagem-sucesso {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
}

.mensagem-sucesso h3 {
    color: #2E7D32;
    margin-top: 0;
}

.mensagem-sucesso p {
    color: #333;
}

.mensagem-erro {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #F44336;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Estilo para o botão de enviar quando desativado */
.btn-enviar:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}