/* ================================================
   P�gina "Vamos Conversar" - Design do Santu�rio
   ================================================ */

.lets-talk-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

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

.lets-talk-header h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lets-talk-header p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #AAAAAA;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Mensagens de feedback */
.lets-talk-messages {
    margin-bottom: 48px;
}

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

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

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

/* Cards principais */
.contact-card {
    background: #1E1E1E;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid #2a2a2a;
}

/* Op��es de contato */
.contact-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.contact-option-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.contact-icon {
    margin-right: 16px;
    flex-shrink: 0;
}

.contact-option-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.contact-option-content p {
    font-size: 0.95rem;
    color: #AAAAAA;
    margin: 0;
    line-height: 1.4;
}

.contact-option-right {
    flex-shrink: 0;
    margin-left: 20px;
}

/* Separador entre op��es */
.contact-separator {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 24px 0;
}

/* Bot�es */
.btn-primary {
    background: #feaf50;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 175, 80, 0.3);
}

.btn-primary:hover {
    background: #e09d45;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 175, 80, 0.4);
    color: #000;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #feaf50;
    font-weight: 600;
    border: 1px solid #feaf50;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(254, 175, 80, 0.1);
    color: #feaf50;
}

.btn-secondary.success {
    background: #feaf50;
    color: #000;
    border-color: #feaf50;
}

/* Formul�rio */
.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 32px;
    text-align: left;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #feaf50;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #888;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.recaptcha-container {
    margin-top: 8px;
}

.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

/* Card de informa��es */
.info-card {
    border: none;
    background: transparent;
    padding: 24px 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .contact-icon {
    margin-right: 16px;
}

.info-item p {
    font-size: 1rem;
    color: #AAAAAA;
    margin: 0;
    line-height: 1.5;
}

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

    .lets-talk-header h1 {
        font-size: 2rem;
    }

    .lets-talk-header p {
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-option-right {
        margin-left: 0;
        align-self: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .contact-option-left {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lets-talk-header h1 {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 20px;
    }

    .form-field input,
    .form-field textarea {
        padding: 14px 16px;
    }
}