/* ============================================================= */
/* CONTACTO PAGE                                                 */
/* ============================================================= */

.ct-page {
    width: 100%;
}

.ct-top-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr 0.75fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 22px;
}

.ct-bottom-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.95fr;
    gap: 22px;
    margin-bottom: 22px;
}

/* HERO */
.ct-hero {
    padding-top: 6px;
}

.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rojo);
    font-weight: 800;
    font-size: 0.84rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ct-title {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--negro);
    margin-bottom: 16px;
}

.ct-title span {
    color: var(--rojo);
    position: relative;
}

.ct-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 72px;
    height: 3px;
    background: var(--rojo);
    border-radius: 99px;
}

.ct-subtitle {
    max-width: 420px;
    color: var(--gris-texto);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ct-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ct-benefit i {
    color: var(--rojo);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.ct-benefit strong {
    display: block;
    color: var(--negro);
    font-size: 0.92rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.ct-benefit span {
    display: block;
    color: #777;
    font-size: 0.8rem;
    line-height: 1.55;
}

/* CARDS */
.ct-form-card,
.ct-info-card,
.ct-map-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    padding: 24px;
    border: 1px solid #eee;
}

.ct-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ct-card-title i {
    color: var(--rojo);
    font-size: 1.35rem;
}

.ct-card-title h2 {
    font-size: 1.05rem;
    color: var(--negro);
}

/* FORM */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ct-input-wrap {
    position: relative;
}

.ct-input-wrap i {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #888;
    font-size: 1rem;
}

.ct-input-wrap input,
.ct-input-wrap textarea {
    width: 100%;
    border: 1px solid #e8e8e8;
    outline: none;
    border-radius: 12px;
    padding: 15px 16px 15px 44px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ct-input-wrap input:focus,
.ct-input-wrap textarea:focus {
    border-color: rgba(207,18,18,0.45);
    box-shadow: 0 0 0 3px rgba(207,18,18,0.08);
}

.ct-textarea-wrap i {
    top: 18px;
}

.ct-input-wrap textarea {
    resize: vertical;
    min-height: 130px;
}

.ct-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ct-submit-btn {
    border: none;
    background: linear-gradient(135deg, #ef1c1c, #c91010);
    color: #fff;
    border-radius: 10px;
    padding: 15px 22px;
    font-weight: 800;
    font-size: 0.96rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(207,18,18,0.25);
}

.ct-response-note {
    color: #999;
    font-size: 0.84rem;
    font-weight: 600;
}

.ct-form-status {
    display: block;
    min-height: 18px;
    color: var(--rojo);
    font-weight: 700;
    font-size: 0.82rem;
}

/* INFO */
.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ct-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ct-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-info-icon i {
    color: var(--rojo);
    font-size: 1.15rem;
}

.ct-info-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--negro);
    margin-bottom: 6px;
}

.ct-info-item p {
    color: var(--negro);
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 4px;
}

.ct-info-item small {
    color: #888;
    font-size: 0.78rem;
    line-height: 1.45;
}

/* MAPA */
.ct-map-content {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 20px;
    align-items: stretch;
}

.ct-map-frame {
    border-radius: 18px;
    overflow: hidden;
    min-height: 270px;
    background: #f2f2f2;
}

.ct-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 270px;
    border: 0;
}

.ct-map-side h3 {
    color: var(--rojo);
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.ct-map-side p {
    color: #666;
    line-height: 1.7;
    font-size: 0.94rem;
    margin-bottom: 18px;
}

.ct-map-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff3f3;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
}

.ct-map-highlight i {
    color: var(--rojo);
    font-size: 1.4rem;
    margin-top: 4px;
}

.ct-map-highlight strong {
    display: block;
    color: var(--negro);
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.ct-map-highlight span {
    color: #666;
    font-size: 0.84rem;
    line-height: 1.5;
}

/* SIDE BANNERS */
.ct-side-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.ct-banner-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 182px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.ct-banner-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.18));
}

.ct-banner-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    max-width: 310px;
}

.ct-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ct-banner-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.ct-banner-dark .ct-banner-content h3,
.ct-banner-dark .ct-banner-content p {
    color: #fff;
}

.ct-banner-content h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.ct-banner-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.ct-banner-btn {
    border: none;
    background: var(--rojo);
    color: #fff;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ct-banner-light {
    background: #fff;
}

.ct-banner-light-content {
    color: var(--negro);
}

.ct-banner-icon-light {
    background: #fff1f1;
}

.ct-banner-icon-light i {
    color: var(--rojo);
}

.ct-outline-btn {
    border: 1.5px solid var(--rojo);
    background: #fff;
    color: var(--rojo);
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* FOOTER BAR */
.ct-footer-bar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ct-footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ct-footer-left i {
    color: var(--rojo);
}

.ct-footer-left strong {
    color: var(--negro);
}

.ct-footer-left span {
    color: #777;
}

.ct-footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ct-footer-right span {
    color: #666;
    font-size: 0.9rem;
}

.ct-footer-socials {
    display: flex;
    gap: 10px;
}

.ct-footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.ct-footer-socials a:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1500px) {
    .ct-top-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .ct-info-card {
        grid-column: 1 / -1;
    }

    .ct-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .ct-top-grid,
    .ct-map-content {
        grid-template-columns: 1fr;
    }

    .ct-form-row,
    .ct-benefits {
        grid-template-columns: 1fr;
    }

    .ct-side-stack {
        grid-template-rows: auto;
    }

    .ct-title {
        font-size: 2.4rem;
    }

    .ct-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}