/**
 * Contacto — Fungiverse Crecienta
 * Diseño premium dark con grid 2-col.
 *
 * @package Fungiverse
 */

/* ═══════════════════════════════════════════════════════════
   WRAPPER
   ═══════════════════════════════════════════════════════════ */
.fv-contacto {
    background: #111;
    color: #fafaf5;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.fv-contacto__hero {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
    background: #0a0a0a;
    text-align: center;
    overflow: hidden;
}

.fv-contacto__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 77, 68, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 100%, rgba(232, 77, 68, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.fv-contacto__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fv-red, #e84d44);
    margin-bottom: 1rem;
}

.fv-contacto__title {
    font-family: var(--fv-font-heading, 'Cubano', sans-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fafaf5;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.fv-contacto__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(250, 250, 245, 0.6);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT — GRID 2 COLUMNAS
   ═══════════════════════════════════════════════════════════ */
.fv-contacto__content {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.fv-contacto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .fv-contacto__grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 3.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   COLUMNA INFO
   ═══════════════════════════════════════════════════════════ */
.fv-contacto__info {
    display: grid;
    gap: 1rem;
    align-content: start;
}

/* Tarjeta de dato */
.fv-contacto__data {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.fv-contacto__data-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fv-contacto__data-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.fv-contacto__data-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(232, 77, 68, 0.1);
    color: var(--fv-red, #e84d44);
    border-radius: 10px;
}

.fv-contacto__data-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fv-contacto__data-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 250, 245, 0.4);
}

.fv-contacto__data-value {
    font-size: 0.95rem;
    color: #fafaf5;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.fv-contacto__data-value:hover {
    color: var(--fv-red, #e84d44);
}

/* Redes sociales */
.fv-contacto__redes {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-contacto__redes-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 250, 245, 0.4);
    margin-bottom: 0.75rem;
}

.fv-contacto__redes-links {
    display: flex;
    gap: 0.75rem;
}

.fv-contacto__red {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: rgba(250, 250, 245, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fv-contacto__red:hover {
    background: rgba(232, 77, 68, 0.1);
    border-color: rgba(232, 77, 68, 0.3);
    color: var(--fv-red, #e84d44);
}

/* CTA WhatsApp */
.fv-contacto__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   COLUMNA FORMULARIO
   ═══════════════════════════════════════════════════════════ */
.fv-contacto__form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.fv-contacto__form {
    display: grid;
    gap: 1.25rem;
}

.fv-contacto__field {
    display: grid;
    gap: 0.4rem;
}

.fv-contacto__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(250, 250, 245, 0.7);
}

.fv-contacto__required {
    color: var(--fv-red, #e84d44);
    font-weight: 700;
}

.fv-contacto__input,
.fv-contacto__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    color: #fafaf5;
    transition: all 0.2s ease;
}

.fv-contacto__textarea {
    min-height: 140px;
    resize: vertical;
}

.fv-contacto__input:focus,
.fv-contacto__textarea:focus {
    outline: none;
    border-color: var(--fv-red, #e84d44);
    box-shadow: 0 0 0 3px rgba(232, 77, 68, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.fv-contacto__input::placeholder,
.fv-contacto__textarea::placeholder {
    color: rgba(250, 250, 245, 0.25);
}

.fv-contacto__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: var(--fv-red, #e84d44);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(232, 77, 68, 0.25);
}

.fv-contacto__submit:hover {
    background: #d63e35;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 77, 68, 0.35);
}

/* ═══════════════════════════════════════════════════════════
   ALERTAS DE FEEDBACK
   ═══════════════════════════════════════════════════════════ */
.fv-contacto__alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.fv-contacto__alert--success {
    background: rgba(102, 174, 76, 0.1);
    border: 1px solid rgba(102, 174, 76, 0.3);
    color: #7cc96a;
}

.fv-contacto__alert--error {
    background: rgba(232, 77, 68, 0.1);
    border: 1px solid rgba(232, 77, 68, 0.3);
    color: #e84d44;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 899px) {
    .fv-contacto__form-wrap {
        padding: 1.5rem;
    }
}
