/* =========================
   Contacto (ct-*)
   ========================= */

.ct-page {
    padding: 7rem 0 5rem;
    background: #fff;
}

.ct-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.ct-head {
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    padding-bottom: 40px;
    text-align: center;
}

.ct-kicker {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .45);
    margin: 0;
}

.ct-title {
    margin: 14px 0 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    color: rgba(0, 0, 0, .92);
}

.ct-subtitle {
    margin: 16px auto 0;
    max-width: 720px;
    color: rgba(0, 0, 0, .55);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
}

@media (min-width: 1024px) {
    .ct-grid {
        grid-template-columns: 2fr 1fr;
        gap: 22px;
        align-items: start;
    }
}

/* Card */
.ct-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 18px;
    padding: 28px;
}

.ct-cardTitle {
    margin: 0 0 18px;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-size: 22px;
    color: rgba(0, 0, 0, .92);
}

/* Form */
.ct-form {
    display: grid;
    gap: 18px;
}

.ct-field {
    display: grid;
    gap: 10px;
}

.ct-label {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .50);
}

.ct-input,
.ct-textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
    background: transparent;
    padding: 12px 0;
    outline: none;
    font-size: 1rem;
    color: rgba(0, 0, 0, .85);
    transition: border-color .25s ease;
}

.ct-textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-input:focus,
.ct-textarea:focus {
    border-bottom-color: rgba(0, 0, 0, .45);
}

.ct-btn {
    margin-top: 6px;
    width: 100%;
    background: #0b0b0b;
    color: #fff;
    border: 1px solid #0b0b0b;
    padding: 16px 18px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease;
}

.ct-btn:hover {
    background: rgba(0, 0, 0, .90);
    border-color: rgba(0, 0, 0, .90);
}

.ct-note {
    margin: 0;
    color: rgba(0, 0, 0, .45);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

/* Side */
.ct-sideCard {
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 18px;
    padding: 24px;
}

.ct-sideLabel {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .45);
    margin: 0;
}

.ct-sideText {
    margin: 10px 0 0;
    color: rgba(0, 0, 0, .62);
    line-height: 1.7;
}

.ct-divider {
    height: 1px;
    background: rgba(0, 0, 0, .10);
    margin: 18px 0;
}

.ct-link {
    color: rgba(0, 0, 0, .78);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.ct-link:hover {
    color: rgba(0, 0, 0, .92);
    border-bottom-color: rgba(0, 0, 0, .35);
}

/* Mobile */
@media (max-width: 520px) {
    .ct-card {
        padding: 22px;
    }

    .ct-sideCard {
        padding: 20px;
    }
}

/* =========================
   Hero Contacto
   ========================= */

.ct-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);

    height: 60vh;
    min-height: 450px;

    background-image: url('/assets/Apertura-Masterplan-Carpinchos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #fff;
    overflow: hidden;
}


.ct-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .35));
}

.ct-heroContent {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.ct-kicker--light {
    color: rgba(255, 255, 255, .85);
}

.ct-heroTitle {
    margin: 14px 0 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
}

.ct-heroText {
    margin: 18px auto 0;
    max-width: 620px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .90);
}