/* ============================================
   CONTACTO — PREMIUM EDITORIAL DESIGN
   ============================================ */

/* ── HERO — dark split with glow ────────────── */
.ct-hero {
    min-height: 80vh;
    background: #07111e;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 clamp(64px, 8vw, 140px) clamp(60px, 8vh, 100px);
    position: relative;
    overflow: hidden;
}

/* Coral orb top-right */
.ct-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.14) 0%, transparent 65%);
    top: -200px; right: -100px;
    pointer-events: none;
}

/* BG watermark */
.ct-hero::after {
    content: 'HOLA';
    position: absolute;
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(120px, 20vw, 240px);
    color: rgba(255,255,255,0.025);
    bottom: -20px; right: 0;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    clip-path: inset(0);
}

.ct-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUpCT 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.ct-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--coral); }

.ct-hero h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 8vw, 8rem);
    color: white;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUpCT 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

.ct-hero h1 em {
    font-style: normal;
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--coral);
}

.ct-hero p {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: rgba(255,255,255,0.4);
    max-width: 480px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUpCT 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

/* ── CHANNELS — bento card grid ─────────────── */
.ct-channels {
    background: var(--blush);
    padding: clamp(80px, 10vh, 130px) clamp(40px, 5vw, 100px);
    position: relative;
    overflow: hidden;
}

.ct-channels::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.06) 0%, transparent 70%);
    top: -100px; left: -80px;
    pointer-events: none;
}

.ct-section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ct-section-label::before { content: ''; width: 32px; height: 1.5px; background: var(--coral); }

.ct-channels h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 60px;
    max-width: 600px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.channel-card {
    border-radius: 28px;
    padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    position: relative;
    overflow: hidden;
}

.channel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
}

.channel-card:hover::after { opacity: 1; }

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px -20px rgba(0,0,0,0.25);
}

.channel-card.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #c13584 40%, #E1306C 65%, #F77737 100%);
}

.channel-card.tiktok {
    background: linear-gradient(135deg, #010101 0%, #1a1a2e 100%);
    border: 1px solid rgba(255,255,255,0.06);
}

.channel-card.email {
    background: white;
    border: 1px solid rgba(13,48,90,0.06);
    box-shadow: 0 4px 24px rgba(13,48,90,0.05);
}

.channel-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.channel-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.channel-card.instagram .channel-icon,
.channel-card.tiktok .channel-icon {
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.channel-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 6px;
}

.channel-card.instagram h3,
.channel-card.tiktok h3 { color: white; }
.channel-card.email h3 { color: var(--navy); }

.channel-handle {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 32px;
    display: block;
}
.channel-card.instagram .channel-handle,
.channel-card.tiktok .channel-handle { color: rgba(255,255,255,0.55); }
.channel-card.email .channel-handle { color: var(--text-muted); }

.channel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.channel-card.instagram .channel-cta,
.channel-card.tiktok .channel-cta {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}
.channel-card.instagram .channel-cta:hover,
.channel-card.tiktok .channel-cta:hover {
    background: rgba(255,255,255,0.25);
}
.channel-card.email .channel-cta {
    background: var(--coral);
    color: white;
}
.channel-card.email .channel-cta:hover {
    background: var(--coral-light);
}

/* ── INFO BAND — dark with stats ─────────────── */
.ct-info {
    background: #07111e;
    padding: clamp(64px, 8vh, 100px) clamp(40px, 5vw, 100px);
}

.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    overflow: hidden;
}

.ct-info-card {
    padding: clamp(32px, 3.5vw, 52px) clamp(28px, 3vw, 44px);
    background: #07111e;
    text-align: left;
    transition: background 0.3s ease;
}

.ct-info-card:hover { background: rgba(255,255,255,0.02); }

.ct-info-card .info-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.ct-info-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.ct-info-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.7;
}

/* ── FORM SECTION ───────────────────────────── */
.ct-form-section {
    background: #fff;
    padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 100px);
    position: relative;
}

.ct-form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fdf8f5;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(209,77,70,0.15);
    border: 1px solid rgba(209,77,70,0.06);
}

.ct-form-left {
    background: linear-gradient(135deg, var(--navy) 0%, #143c71 100%);
    padding: clamp(40px, 6vw, 80px);
    color: white;
    position: relative;
    overflow: hidden;
}

.ct-form-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at bottom right, rgba(209,77,70,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.ct-form-left h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ct-form-left p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cd-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--coral-light);
    flex-shrink: 0;
}

.cd-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.cd-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.ct-form-right {
    padding: clamp(40px, 6vw, 80px);
    background: white;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-form label {
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(13,48,90,0.1);
    border-radius: 12px;
    background: #fafafa;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.ct-form input:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: white;
    box-shadow: 0 0 0 4px rgba(209,77,70,0.1);
}

.ct-form .form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--coral);
    color: white;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    padding: 18px 32px;
    border-radius: 100px;
    margin-top: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
}

.ct-form .form-submit:hover {
    background: var(--coral-dark);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(209,77,70,0.4);
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUpCT {
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
    .channels-grid { grid-template-columns: 1fr; }
    .ct-info-grid { grid-template-columns: 1fr; gap: 1px; }
    .ct-hero { padding: 0 32px 60px; min-height: 75vh; }
    .ct-channels { padding: 60px 24px; }
    .ct-info { padding: 60px 24px; }
    .ct-form-container { grid-template-columns: 1fr; }
    .ct-form .form-row { grid-template-columns: 1fr; gap: 16px; }
    .ct-form-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
    .ct-hero {
        padding: 0 20px 50px;
        min-height: 70vh;
    }
    .ct-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
        overflow-wrap: break-word;
    }
}
