/* =============================================
   TASACIÓN — Estilos específicos
   (complementa premium.css)
   ============================================= */

/* --- Beneficios --- */
.tasa-beneficios {
    padding: 3rem 0;
    background: var(--gray-50, #fafafa);
    border-bottom: 1px solid var(--border-color, #e8e8e8);
}
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.beneficio-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.beneficio-icon {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 0.8rem;
}
.beneficio-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #1a1a2e;
}
.beneficio-item p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* --- Sección formulario --- */
.tasa-form-section {
    padding: 3rem 0 5rem;
}
.tasa-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    padding: 2.5rem;
}
.tasa-form-header {
    margin-bottom: 1.8rem;
}
.tasa-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}
.tasa-form-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Sección interna */
.tasa-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c9a96e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
}

/* Grid de campos */
.tasa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.tasa-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.tasa-field-full {
    margin-bottom: 1rem;
}
.tasa-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
.tasa-field input,
.tasa-field select,
.tasa-field textarea {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-family: inherit;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.tasa-field input:focus,
.tasa-field select:focus,
.tasa-field textarea:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.tasa-field textarea { resize: vertical; min-height: 90px; }

/* Upload zone */
.tasa-upload-zone {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 1.8rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-top: 0.35rem;
}
.tasa-upload-zone:hover,
.tasa-upload-zone.drag-over {
    border-color: #c9a96e;
    background: rgba(201,169,110,.05);
}
.tasa-upload-zone i {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 0.5rem;
}
.tasa-upload-zone p { color: #555; margin-bottom: 0.3rem; }
.tasa-upload-zone small { color: #999; font-size: 0.8rem; }

/* Preview fotos */
.tasa-photos-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}
.tasa-thumb {
    position: relative;
    width: 80px; height: 62px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.tasa-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tasa-thumb button {
    position: absolute; top: 2px; right: 2px;
    background: rgba(0,0,0,.65);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 18px; height: 18px;
    font-size: 0.65rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

/* Privacy note */
.tasa-privacy {
    font-size: 0.8rem;
    color: #999;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Submit button */
.tasa-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #c9a96e, #a07840);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: opacity .2s, transform .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.tasa-submit-btn:hover:not(:disabled) { opacity: 0.9; }
.tasa-submit-btn:active:not(:disabled) { transform: scale(.98); }
.tasa-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

/* Error */
.tasa-error {
    background: #fff2f2;
    border: 1.5px solid #e05555;
    color: #c0392b;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Éxito */
.tasa-success {
    text-align: center;
    padding: 2.5rem 1rem;
}
.success-icon {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}
.tasa-success h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}
.tasa-success p {
    color: #555;
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 600px) {
    .tasa-form-wrap { padding: 1.5rem 1rem; border-radius: 0; border: none; box-shadow: none; }
    .tasa-grid { grid-template-columns: 1fr; }
    .beneficios-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
