/* ============================
   CONTACTO PAGE
   ============================ */
.contacto-page {
    width: 100%;
    min-height: 100vh;
    background: var(--black);
    padding: 6rem 5% 4rem;
    overflow-y: auto;
}

/* ============================
   HEADER
   ============================ */
.contacto-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contacto-header__overline {
    font-size: 0.7rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contacto-header__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.contacto-header__subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--white-muted);
}

/* ============================
   GRID
   ============================ */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================
   INFO CARDS
   ============================ */
.contacto-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.contacto-info__card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.8rem;
    transition: border-color 0.4s;
}

.contacto-info__card:hover {
    border-color: rgba(197, 160, 89, 0.2);
}

.contacto-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contacto-info__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.contacto-info__text {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--white-muted);
    font-weight: 300;
}

.contacto-info__link {
    text-decoration: none;
    transition: color 0.3s;
}

.contacto-info__link:hover {
    color: var(--gold);
}

.contacto-info__text strong {
    color: var(--white);
    font-weight: 500;
}

/* ============================
   FORMULARIO
   ============================ */
.contacto-form-wrapper {
    align-self: start;
}

.contacto-form-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
}

.contacto-form__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contacto-form__subtitle {
    font-size: 0.8rem;
    color: var(--white-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.05rem;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contacto-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contacto-form__group--full {
    grid-column: 1 / -1;
}

.contacto-form__label {
    font-size: 0.65rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--white-muted);
}

.contacto-form__input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
    outline: none;
    transition: border-color 0.4s;
    resize: vertical;
}

.contacto-form__input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contacto-form__input:focus {
    border-color: var(--gold);
}

.contacto-form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A0A0A0' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.contacto-form__select option {
    background: var(--black);
    color: var(--white);
}

.contacto-form__textarea {
    min-height: 120px;
}

.contacto-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 0.5rem;
}

.contacto-form__btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contacto-page {
        padding: 5rem 4% 3rem;
    }
    
    .contacto-header__title {
        font-size: 2.5rem;
    }
    
    .contacto-info {
        grid-template-columns: 1fr;
    }
    
    .contacto-form__row {
        grid-template-columns: 1fr;
    }
    
    .contacto-form-card {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contacto-page {
        padding: 4rem 3% 2rem;
    }
    
    .contacto-header__title {
        font-size: 2rem;
    }
    
    .contacto-form-card {
        padding: 1.5rem;
    }
    
    .contacto-form__title {
        font-size: 1.5rem;
    }
}