/* Formulário de Contato */
.form-page {
    padding-bottom: 100px;
}

.form-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
}

.form-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 26px;
    color: #000000;
    text-align: center;
    margin: 0 0 0 0;
    line-height: 1.3;
}

.form-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    text-align: center;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.form-description {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.6;
    padding: 0 10px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    margin-bottom: 8px;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    color: #000000;
    background-color: rgba(212, 197, 160, 0.3);
    border: 2px solid #242415;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background-color: rgba(212, 197, 160, 0.5);
    border-color: #b5975a;
    box-shadow: 0 0 0 3px rgba(181, 151, 90, 0.2);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23242415' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
    padding-right: 45px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Libre Baskerville', serif;
}

.submit-button {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 5px;
    padding: 16px 30px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    -webkit-tap-highlight-color: transparent;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.submit-button i {
    font-size: 24px;
}

.privacy-text {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 13px;
    color: #000000;
    text-align: center;
    margin: 5px 0 0 0;
    line-height: 1.5;
}

.privacy-text a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Libre Baskerville', serif;
}

/* Responsive */
@media (max-width: 375px) {
    .form-title {
        font-size: 22px;
    }
    
    .form-subtitle,
    .form-description {
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .submit-button {
        font-size: 16px;
        padding: 14px 25px;
    }
    
    .submit-button i {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .form-title {
        font-size: 30px;
    }
    
    .form-subtitle,
    .form-description {
        font-size: 18px;
    }
    
    .form-group label {
        font-size: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
    
    .submit-button {
        font-size: 20px;
    }
}

/* Loading state */
.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-button.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
