/* ================================================
   Página "Fale Conosco" - Design do Santuário
   ================================================ */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header da página */
.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #AAAAAA;
    text-align: center;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Mensagens de feedback */
.contact-messages {
    margin: 0 0 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.contact-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
}

/* Conteúdo principal */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-tab {
    display: block;
}

.contact-section {
    background: #1a1a1a;
    border: 1px solid #303030;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

/* Headers das seções */
.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1rem;
    color: #AAAAAA;
    line-height: 1.5;
}

/* Linhas do formulário */
.contact-row {
    display: flex;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-label {
    width: 200px;
    padding-top: 12px;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    flex-shrink: 0;
}

.contact-label i {
    margin-right: 8px;
    color: #feaf50;
    font-size: 1.1rem;
}

.contact-input {
    flex: 1;
}

.contact-text-input {
    width: 100%;
    padding: 16px 20px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-text-input:focus {
    border-color: #feaf50;
}

.contact-text-input::placeholder {
    color: #888;
}

.contact-text-input.disabled {
    background: #1a1a1a;
    color: #AAAAAA;
    cursor: not-allowed;
    border-color: #333;
}

.contact-input-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 8px;
    line-height: 1.4;
}

/* Botões e ações */
.contact-actions {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #303030;
}

.contact-submit-button {
    padding: 16px 32px;
    background: #feaf50;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 175, 80, 0.3);
}

.contact-submit-button:hover {
    background: #e09d45;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 175, 80, 0.4);
}

/* Campo com botão de cópia/ação */
.contact-copy-field {
    display: flex;
    width: 100%;
}

.contact-copy-button {
    padding: 0 20px;
    background: #303030;
    color: #ccc;
    border: 1px solid #404040;
    border-left: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-copy-button:hover {
    background: #404040;
    color: #fff;
}

.contact-action-button {
    padding: 0 20px;
    background: #feaf50;
    color: #000;
    border: 1px solid #feaf50;
    border-left: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-action-button:hover {
    background: #e09d45;
    border-color: #e09d45;
    color: #000;
    text-decoration: none;
}

.contact-copy-field .contact-text-input {
    border-radius: 8px 0 0 8px;
    flex: 1;
}

/* Espaço para o reCAPTCHA */
.recaptcha-container {
    margin-bottom: 20px;
}

/* Textarea para mensagem */
textarea.contact-text-input {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px 15px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 24px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-row {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .contact-label {
        width: 100%;
        margin-bottom: 8px;
        padding-top: 0;
    }

    .contact-copy-field {
        flex-direction: column;
    }

    .contact-copy-field .contact-text-input {
        border-radius: 8px 8px 0 0;
        margin-bottom: -1px;
    }

    .contact-copy-button,
    .contact-action-button {
        border-radius: 0 0 8px 8px;
        border-left: 1px solid #404040;
        border-top: none;
        text-align: center;
        justify-content: center;
        padding: 16px 20px;
    }

    .contact-action-button {
        border-left: 1px solid #feaf50;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 20px;
    }

    .contact-text-input {
        padding: 14px 16px;
    }

    .contact-submit-button {
        width: 100%;
        padding: 16px;
    }
}