/* =============================================
   PAGE HERO (Servicios, Trabajos, etc.)
   ============================================= */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.page-hero > .container {
    width: 100%;
    align-self: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,20,40,0.92) 0%,
        rgba(10,20,40,0.75) 55%,
        rgba(10,20,40,0.25) 100%
    );
}

.page-hero-color-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
    text-align: left;
}

.page-hero-content h1 {
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    text-transform: uppercase;
    margin: .5rem 0 1rem;
    text-align: left;
    line-height: 1.1;
}

.page-hero-content p {
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    margin-bottom: 1.8rem;
    max-width: 440px;
    text-align: left;
}

/* =============================================
   INTRO TEXT
   ============================================= */
.intro-text {
    max-width: 760px;
    margin: 1.5rem auto 0;
    font-size: .98rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.intro-text strong { color: var(--cyan); font-weight: 700; }

/* =============================================
   SERVICIOS GRID (3+3)
   ============================================= */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srv-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--trans);
}

.srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,176,229,.15);
}

.srv-img-wrap {
    position: relative;
    overflow: hidden;
}

.srv-img-wrap img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform .4s ease;
}

.srv-card:hover .srv-img-wrap img { transform: scale(1.06); }

.srv-img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-img-badge i { color: #fff; font-size: .9rem; }

.srv-body { padding: 20px; }

.srv-body h3 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 6px;
}

.srv-body p {
    font-size: .83rem;
    color: var(--gray-text);
    margin-bottom: 14px;
    line-height: 1.5;
}

.srv-link {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}

.srv-link:hover { color: var(--cyan-dark); gap: 10px; }

/* =============================================
   FEATURES 4 (banda oscura servicios)
   ============================================= */
.features4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feat4-item {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: var(--trans);
}

.feat4-item:last-child { border-right: none; }
.feat4-item:hover { background: rgba(255,255,255,.04); }

.feat4-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,176,229,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.feat4-icon i { color: var(--cyan); font-size: 1.2rem; }

.feat4-item h4 {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.feat4-item p {
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    margin: 0;
}

/* =============================================
   CLIENTES ROW (página servicios)
   ============================================= */
.clients-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 2rem;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #f4f6f9;
    border-radius: var(--radius);
    min-width: 120px;
    min-height: 70px;
    transition: var(--trans);
}

.client-logo-item:hover { background: #e8edf5; }

.client-logo-item img {
    max-height: 42px;
    width: auto;
    filter: grayscale(1);
    opacity: .7;
    transition: var(--trans);
    margin: 0 auto;
}

.client-logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* =============================================
   CTA BOTTOM BAR
   ============================================= */
.cta-bottom-bar {
    background: var(--dark);
    padding: 32px 0;
}

.cta-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-bottom-text h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.cta-bottom-text p {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin: 0;
}

/* =============================================
   RESPONSIVE – SERVICIOS
   ============================================= */
@media (max-width: 900px) {
    .srv-grid         { grid-template-columns: repeat(2, 1fr); }
    .features4-grid   { grid-template-columns: repeat(2, 1fr); }
    .feat4-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .feat4-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 600px) {
    .srv-grid       { grid-template-columns: 1fr; }
    .features4-grid { grid-template-columns: 1fr; }
    .cta-bottom-inner { flex-direction: column; text-align: center; }
    .page-hero      { min-height: 70vh; }
    .page-hero-content h1 { font-size: 1.9rem; }

    /* Portfolio row en servicios → 2 columnas mobile */
    .portfolio-grid[style*="repeat(5"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* =============================================
   CÓMO LLEGAR (Home)
   ============================================= */
.como-llegar-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Detalle decorativo de fondo */
.como-llegar-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,176,229,.08) 0%, transparent 70%);
    pointer-events: none;
}

.como-llegar-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.como-llegar-info .section-label { color: var(--cyan); }

.como-llegar-info h2 {
    color: #fff;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    margin: .5rem 0 1rem;
    line-height: 1.2;
}

.como-llegar-desc {
    color: rgba(255,255,255,.6);
    font-size: .93rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.llegar-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.llegar-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: var(--trans);
}

.llegar-card:hover {
    background: rgba(0,176,229,.08);
    border-color: rgba(0,176,229,.3);
}

.llegar-card-icon {
    width: 38px;
    height: 38px;
    background: rgba(0,176,229,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.llegar-card-icon i { color: var(--cyan); font-size: .88rem; }

.llegar-card strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 3px;
}

.llegar-card p {
    font-size: .80rem;
    color: rgba(255,255,255,.5);
    margin: 0;
    line-height: 1.5;
}

/* Mapa */
.como-llegar-map { position: relative; }

.mapa-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.08);
}

.mapa-wrapper iframe {
    width: 100%;
    height: 440px;
    border: none;
    display: block;
    filter: saturate(.85) brightness(.92);
}

.mapa-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: var(--cyan);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 8px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 16px rgba(0,176,229,.45);
}

/* Responsive */
@media (max-width: 900px) {
    .como-llegar-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .mapa-wrapper iframe { height: 320px; }
}

@media (max-width: 600px) {
    .llegar-cards { grid-template-columns: 1fr; }
    .mapa-wrapper iframe { height: 260px; }
}

/* =============================================
   PÁGINA CONTACTO – GRID 3 COLUMNAS
   ============================================= */
.contact-full-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Tarjetas de info de contacto */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f7f9fc;
    border: 1px solid #e8edf5;
    border-left: 4px solid var(--cyan);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 16px;
    transition: var(--trans);
}
.contact-card:hover {
    box-shadow: 0 6px 24px rgba(0,176,229,.12);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon i { color: #fff; font-size: .95rem; }

.contact-card-body strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}
.contact-card-body p {
    font-size: .84rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}
.contact-card-body a { color: var(--gray-text); }
.contact-card-body a:hover { color: var(--cyan); }

/* Formulario de contacto */
.contact-form-col .section-label { margin-bottom: 1.4rem; display: block; }

.contact-form { margin-top: 0; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #f7f9fc;
    border: 1.5px solid #e0e5ee;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--font);
    font-size: .88rem;
    color: var(--dark);
    transition: var(--trans);
    outline: none;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,176,229,.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0be; }

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--cyan);
    cursor: pointer;
}
.form-check label {
    font-size: .82rem;
    color: var(--gray-text);
    cursor: pointer;
}
.form-check label a { color: var(--cyan); }
.form-check label a:hover { text-decoration: underline; }

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: .88rem;
}

.form-success {
    margin-top: 16px;
    background: #e8f8f0;
    border: 1.5px solid #2ecc71;
    color: #1a7a45;
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: .88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-success i { font-size: 1.1rem; color: #27ae60; }

/* Mapa columna derecha */
.contact-map-col .section-label { margin-bottom: 1.4rem; display: block; }

.contact-map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 0;
}
.contact-map-embed iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

.contact-access {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 18px;
    padding: 16px 18px;
    background: #f7f9fc;
    border-radius: var(--radius);
    border: 1px solid #e8edf5;
}
.contact-access-icon {
    width: 42px;
    height: 42px;
    background: rgba(0,176,229,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-access-icon i { color: var(--cyan); font-size: .95rem; }
.contact-access strong {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}
.contact-access p {
    font-size: .83rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   CONTACTO RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .contact-full-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .contact-map-col {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
    }
    .contact-map-col .section-label { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .contact-full-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-map-col   { grid-column: 1; display: block; }
    .form-row          { grid-template-columns: 1fr; }
}

/* =============================================
   SERVICIO SINGLE – DETALLE + COLLAGE
   ============================================= */
.srv-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.srv-detail-text h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.srv-detail-text p {
    color: var(--gray-text);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.srv-checklist {
    list-style: none;
    margin-bottom: 1.8rem;
}
.srv-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--dark);
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 1px solid #f0f2f6;
}
.srv-checklist li:last-child { border-bottom: none; }
.srv-checklist li i { color: var(--cyan); font-size: 1rem; flex-shrink: 0; }

/* Collage 3 fotos */
.srv-detail-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
}
.collage-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark2);
}
.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.collage-item:hover img { transform: scale(1.05); }
/* Primera foto ocupa toda la altura izquierda */
.collage-item--1 { grid-row: 1 / 3; }

/* =============================================
   SERVICIO SINGLE – SECCIÓN TIPOS CON TEXTURA
   ============================================= */
.tipos-texture-section {
    position: relative;
    background:
        linear-gradient(rgba(10,20,45,0.82), rgba(10,20,45,0.82)),
        url('../img/bg-dark-texture.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}

/* =============================================
   SERVICIO SINGLE – TIPOS DARK GRID
   ============================================= */
.tipos-dark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
}

.tipo-dark-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: var(--trans);
}
.tipo-dark-item:last-child { border-right: none; }
.tipo-dark-item:hover { background: rgba(255,255,255,.04); }

.tipo-dark-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,176,229,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--trans);
}
.tipo-dark-item:hover .tipo-dark-icon { background: rgba(0,176,229,.28); }
.tipo-dark-icon i { color: var(--cyan); font-size: 1.25rem; }

.tipo-dark-item h4 {
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.tipo-dark-item p {
    color: rgba(255,255,255,.52);
    font-size: .78rem;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .tipos-dark-grid { grid-template-columns: repeat(2, 1fr); }
    .tipo-dark-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .tipo-dark-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
    .tipo-dark-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
    .tipos-dark-grid { grid-template-columns: 1fr; }
    .tipo-dark-item  { border-right: none; }
    .tipo-dark-item:nth-child(odd) { border-right: none; }
}

/* Responsive */
@media (max-width: 900px) {
    .srv-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .srv-detail-collage { order: -1; grid-template-rows: 160px 160px; }
}
@media (max-width: 600px) {
    .srv-detail-collage { grid-template-columns: 1fr; grid-template-rows: auto; }
    .collage-item--1 { grid-row: auto; aspect-ratio: 16/9; }
    .collage-item { aspect-ratio: 16/9; }
    .tipo-card { width: calc(50% - 10px); }
}

/* =============================================
   TRABAJOS – PORTFOLIO GRID RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .portfolio-grid[style*="repeat(4"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .portfolio-grid[style*="repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .filter-bar { gap: 6px; }
    .filter-btn { font-size: .68rem; padding: 7px 12px; letter-spacing: .5px; }
}

@media (max-width: 480px) {
    .portfolio-grid[style*="repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .load-more-btn { font-size: .75rem; padding: 10px 20px; }
}

/* =============================================
   NOSOTROS – HISTORIA RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .historia-fotos { order: -1; }
    .historia-fotos .foto-main { aspect-ratio: 16/6; }
}

@media (max-width: 600px) {
    .historia-fotos {
        grid-template-columns: 1fr;
    }
    .historia-fotos .foto-main { grid-column: 1; }
    .historia-fotos .foto-side { aspect-ratio: 16/7; }
}

/* =============================================
   NOSOTROS – EQUIPO RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* =============================================
   VALUE 4 GRID RESPONSIVE (Nosotros)
   ============================================= */
@media (max-width: 900px) {
    .value4-grid { grid-template-columns: repeat(2, 1fr); }
    .value4-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .value4-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.08);
    }
    .value4-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .value4-grid { grid-template-columns: 1fr; }
    .value4-item { border-right: none; }
    .value4-item:nth-child(odd) { border-right: none; }
}

/* =============================================
   CTA BAR RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .cta-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-bar-text {
        flex-direction: column;
        align-items: center;
    }
}

/* Correcciones de alineaci�n y espacios Formulario de Contacto */
.contact-info-col .section-label,
.contact-form-col .section-label,
.contact-map-col .section-label {
    margin-bottom: 20px !important;
    display: block;
}
.contact-card:first-of-type,
.contact-form,
.contact-map-embed {
    margin-top: 0 !important;
}
.form-row .form-group {
    margin-bottom: 0 !important;
}

/* =============================================
   NOSOTROS – PRODUCCIÓN RESPONSABLE
   ============================================= */
.prod-resp-section {
    padding: 100px 0;
    background: #f8fafc;
}

.prod-resp-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 60px;
}

.prod-resp-image-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    height: 100%;
    min-height: 500px;
}

.prod-resp-img-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: background-size 0.1s ease, background-position 0.1s ease;
}

.prod-resp-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: #000;
    z-index: 1;
}

.prod-resp-content-col .section-label {
    margin-bottom: 1rem;
    display: inline-block;
}

.prod-resp-content-col h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--dark);
    line-height: 1.2;
    margin: 0.5rem 0 1.5rem;
}

.prod-resp-content-col h2 strong {
    color: var(--cyan);
}

.prod-resp-desc {
    font-size: .95rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.prod-resp-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.prod-resp-feat-item {
    display: flex;
    gap: 15px;
}

.prod-resp-feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,176,229,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-resp-feat-icon i {
    color: var(--cyan);
    font-size: 1rem;
}

.prod-resp-feat-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.prod-resp-feat-text h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.prod-resp-feat-text p {
    font-size: .82rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

/* Stats Grid */
.prod-resp-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.prod-resp-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    border-right: 1px solid #edf2f7;
}

.prod-resp-stat-item:last-child {
    border-right: none;
}

.prod-resp-stat-icon {
    font-size: 1.8rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.prod-resp-stat-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.prod-resp-stat-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cyan);
    margin: 0 0 2px;
}

.prod-resp-stat-text p {
    font-size: .78rem;
    color: var(--gray-text);
    line-height: 1.3;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .prod-resp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .prod-resp-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .prod-resp-stat-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .prod-resp-feature-grid {
        grid-template-columns: 1fr;
    }
    .prod-resp-stat-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .prod-resp-stat-item {
        border-right: none;
        border-bottom: 1px solid #edf2f7;
        padding-bottom: 15px;
    }
    .prod-resp-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* =============================================
   CONTACTO – COMO ENVIAR TU PROYECTO
   ============================================= */
.env-proj-section {
    padding: 80px 0;
}

.env-proj-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.env-proj-header .section-label {
    margin-bottom: 10px;
}

.env-proj-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 20px;
}

.env-proj-header h2 strong {
    color: var(--cyan);
}

.env-proj-header p {
    font-size: 1rem;
    color: var(--gray-text);
}

/* Grid de Pasos */
.env-proj-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.env-proj-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: var(--trans);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.env-proj-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.env-proj-step-icon {
    font-size: 2.2rem;
    color: var(--cyan);
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.env-proj-step-icon img {
    max-width: 45px;
    height: auto;
}

.env-proj-step-num {
    width: 24px;
    height: 24px;
    background: var(--cyan);
    color: #fff;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.env-proj-step-card h4 {
    font-size: .88rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.env-proj-step-card p {
    font-size: .78rem;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

/* Banda Inferior (Canales) */
.env-proj-channels-band {
    padding: 30px 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.env-proj-chan-title {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
}

.env-proj-chan-title-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,176,229,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.1rem;
}

.env-proj-chan-title h3 {
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.env-proj-chan-items {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-left: 1px solid rgba(0,0,0,.08);
    padding-left: 30px;
}

.env-proj-chan-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.env-proj-chan-icon {
    font-size: 1.2rem;
    color: var(--cyan);
    margin-top: 2px;
}

.env-proj-chan-icon img {
    width: 20px;
    height: auto;
}

.env-proj-chan-text strong {
    display: block;
    font-size: .75rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.env-proj-chan-text p {
    font-size: .72rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1200px) {
    .env-proj-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .env-proj-channels-band {
        flex-direction: column;
        align-items: flex-start;
    }
    .env-proj-chan-items {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,.08);
        padding-left: 0;
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .env-proj-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .env-proj-chan-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .env-proj-steps-grid {
        grid-template-columns: 1fr;
    }
    .env-proj-chan-items {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TESTIMONIALS SLIDER
   ============================================= */
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 20px 10px;
    margin-top: 1.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonials-slider .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--dark);
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin: 0;
}

@media (max-width: 1024px) {
    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .testimonials-slider .testimonial-card {
        flex: 0 0 100%;
    }
}

/* =============================================
   CENTRO DE AYUDA - MAIN PAGE (MOCKUP UPDATE)
   ============================================= */
.hc-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hc-hero-overlay {
    z-index: 2;
}

.hc-search-container {
    position: relative;
    z-index: 10;
    margin-top: 30px;
}

.hc-search-box {
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hc-search-box i {
    color: var(--cyan);
    font-size: 1.2rem;
}

.hc-search-box input {
    border: none;
    padding: 20px 15px;
    width: 100%;
    font-size: 1.1rem;
    outline: none;
    border-radius: 8px;
}

/* --- Guía: Envío de Archivos --- */
.hc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hc-step-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

.hc-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hc-step-icon {
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 15px;
    margin-top: 10px;
}

.hc-step-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.hc-step-item strong {
    display: block;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.hc-step-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.hc-formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.hc-format-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    text-align: center;
}

.hc-format-card i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hc-format-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}

.hc-format-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.hc-format-card span {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 15px;
    font-weight: 600;
}

.hc-format-card p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}

.hc-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}

.hc-info-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.hc-info-box-header i {
    color: var(--cyan);
    font-size: 1.2rem;
}

.hc-info-box-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.hc-info-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hc-info-item i {
    color: var(--cyan);
    margin-bottom: 10px;
    font-size: 1rem;
}

.hc-info-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.hc-info-item p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

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

.hc-channel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.hc-channel-icon {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.hc-channel-card strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.hc-channel-card p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 15px;
}

.hc-security-banner {
    background: #f0f9ff;
    border: 1px dashed var(--cyan);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hc-security-icon {
    font-size: 2rem;
    color: var(--cyan);
}

.hc-security-text {
    flex-grow: 1;
}

.hc-security-text strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

.hc-security-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* --- Guía: Colores e Impresión --- */
.hc-variar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hc-variar-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.hc-variar-icon {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.hc-variar-item strong {
    display: block;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.hc-variar-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.hc-profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hc-profile-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hc-profile-visual {
    flex-shrink: 0;
}

.color-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
}

.rgb-circle {
    background: conic-gradient(red, yellow, lime, aqua, blue, fuchsia, red);
}

.cmyk-circle {
    background: radial-gradient(circle at 30% 30%, cyan 40%, transparent 40%),
                radial-gradient(circle at 70% 30%, magenta 40%, transparent 40%),
                radial-gradient(circle at 50% 70%, yellow 40%, transparent 40%);
    background-blend-mode: multiply;
    background-color: #fff;
}

.hc-profile-info strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.hc-profile-info p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.hc-comparison-container {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.hc-comp-side {
    flex: 1;
    text-align: center;
}

.hc-comp-side span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hc-comp-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hc-comp-img img {
    width: 100%;
    display: block;
}

.hc-comp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hc-comp-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 !important;
}

.hc-comp-arrow {
    color: var(--cyan);
    font-size: 1.2rem;
    background: #f0f9ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-color-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hc-color-tip {
    display: flex;
    gap: 15px;
}

.hc-color-tip i {
    color: var(--cyan);
    font-size: 1.2rem;
    margin-top: 3px;
}

.hc-color-tip strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.hc-color-tip p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.hc-cta-banner {
    background: var(--dark);
    border-radius: 16px;
    padding: 24px 20px;
    color: #fff;
    text-align: center;
}

.hc-cta-icon {
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    margin: 0 auto 12px;
}

.hc-cta-text {
    margin-bottom: 10px;
}

.hc-cta-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.hc-cta-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.hc-cta-banner .btn {
    display: inline-block;
    margin-top: 12px;
}

/* --- Guía: Métodos de Pago --- */
.hc-pagos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hc-pago-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.hc-pago-icon {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.hc-pago-card strong {
    display: block;
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.hc-pago-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hc-pago-data {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.hc-data-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hc-data-row:last-child {
    margin-bottom: 0;
}

.hc-data-row i {
    color: var(--cyan);
    width: 20px;
    text-align: center;
}

.hc-pago-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.hc-pago-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hc-pago-list li i {
    color: var(--cyan);
    font-size: 0.8rem;
}

.hc-pago-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hc-pago-logos.grid-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hc-pago-logos img {
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s;
}

.hc-pago-card:hover .hc-pago-logos img {
    filter: grayscale(0);
    opacity: 1;
}

.hc-pago-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hc-security-badges {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.hc-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.hc-badge-item i {
    color: var(--cyan);
}

.hc-cta-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hc-cta-box-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hc-cta-box-content i {
    font-size: 2rem;
    color: var(--cyan);
}

.hc-cta-box-content strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.hc-cta-box-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* --- Guía: Tiempos de Entrega --- */
.hc-factors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.hc-factor-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.hc-factor-item:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hc-factor-icon {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.hc-factor-item strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.hc-factor-item p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.hc-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.hc-tiempos-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

.hc-tiempos-table th {
    background: #f8fafc;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    border-bottom: 1px solid #e2e8f0;
}

.hc-tiempos-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #475569;
}

.hc-table-type {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    font-weight: 700;
}

.hc-table-type i {
    color: var(--cyan);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.hc-badge-time {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge--green { background: #dcfce7; color: #166534; }
.badge--orange { background: #ffedd5; color: #9a3412; }
.badge--orange-dark { background: #fef3c7; color: #92400e; }
.badge--red { background: #fee2e2; color: #991b1b; }

.hc-table-note {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hc-delivery-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.hc-delivery-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.hc-delivery-icon {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.hc-delivery-card strong {
    display: block;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.hc-delivery-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hc-delivery-label {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

/* --- Guía: Tipos de Materiales --- */
.hc-sidebar-materials {
    border: 1px solid #e2e8f0;
}

.hc-sidebar-materials h3 {
    color: var(--cyan) !important;
}

.hc-sidebar-secondary {
    background: #f8fafc !important;
    margin-top: 20px;
    padding: 20px 15px !important;
    box-shadow: none !important;
}

.hc-sidebar-secondary h3 {
    font-size: 0.75rem !important;
    opacity: 0.6;
}

.hc-sidebar-secondary .hc-sidebar-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
}

.hc-sidebar-secondary.hc-materials-nav--sidebar .hc-sidebar-text strong {
    font-size: 0.95rem;
}

.hc-materials-nav--sidebar.hc-sidebar-secondary .hc-sidebar-text p {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.hc-materials-nav--no-desc .hc-sidebar-text p {
    display: none !important;
}

/* Menú Tipos de materiales — posición superior */
.hc-inline-materials-menu.hc-materials-nav--above {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hc-inline-materials-menu.hc-materials-nav--above > h3 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
    margin-bottom: 18px;
}

.hc-materials-nav-menu--above {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hc-materials-nav-menu--above > li {
    margin-bottom: 0;
}

.hc-materials-nav-menu--above li a {
    height: 100%;
    margin-bottom: 0;
    align-items: flex-start;
}

.hc-materials-nav-menu--above .hc-sidebar-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-right: 15px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.hc-materials-nav-menu--above .hc-sidebar-text strong {
    font-size: 0.95rem;
}

.hc-materials-nav-menu--above .hc-sidebar-text p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .hc-materials-nav-menu--above {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hc-materials-nav-menu--above {
        grid-template-columns: 1fr;
    }
}

.hc-material-category-icon {
    width: 50px;
    height: 50px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.5rem;
}

.hc-materials-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 3.5rem;
}

.hc-materials-items-grid + .hc-features-box {
    margin-top: 1.5rem;
}

.hc-material-item-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.hc-material-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--cyan);
}

.hc-material-item-img {
    height: 180px;
    background: #f1f5f9;
}

.hc-material-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hc-material-item-body {
    padding: 20px;
}

.hc-material-item-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.hc-material-item-body p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    height: auto;
}

.hc-material-item-meta {
    display: flex;
    gap: 10px;
}

.hc-meta-box {
    flex: 1;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.hc-meta-box strong {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.hc-meta-box span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
}

.hc-material-cta {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hc-material-cta-icon {
    width: 45px;
    height: 45px;
    background: #f0f9ff;
    color: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hc-material-cta-text {
    flex-grow: 1;
}

.hc-material-cta-text strong {
    display: block;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.hc-material-cta-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Características Box */
.hc-features-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
}

.hc-features-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.hc-features-header i {
    color: var(--cyan);
    font-size: 1.2rem;
}

.hc-features-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.hc-features-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hc-feature-list-item {
    display: flex;
    gap: 15px;
}

.hc-feature-list-item i {
    color: var(--cyan);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.hc-feature-list-item strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.hc-feature-list-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Aplicaciones Grid */
.hc-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hc-app-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.hc-app-card:hover {
    border-color: var(--cyan);
    background: #f0f9ff;
    transform: translateY(-3px);
}

.hc-app-card i {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.hc-app-card strong {
    display: block;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.hc-app-card p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Consejos Section */
.hc-consejos-section {
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.hc-consejos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hc-consejo-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.hc-consejo-card:hover {
    background: #f0f9ff;
    border-color: var(--cyan);
}

.hc-consejo-card i {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 15px;
    display: block;
}

.hc-consejo-card strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.hc-consejo-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .hc-materials-items-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-consejos-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-apps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hc-materials-items-grid { grid-template-columns: 1fr; }
    .hc-material-cta { flex-direction: column; text-align: center; }
    .hc-features-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hc-consejos-grid { grid-template-columns: 1fr; }
    .hc-apps-grid { grid-template-columns: 1fr; }
}
.hc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.hc-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.hc-card:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hc-card-icon {
    margin-bottom: 20px;
}

.hc-card-icon i {
    font-size: 2rem;
    color: var(--cyan);
}

.hc-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hc-card-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hc-card-arrow {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.hc-card-arrow i {
    color: var(--cyan);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.hc-card:hover .hc-card-arrow i {
    transform: translateX(5px);
}

/* FAQ & Support Split */
.hc-faq-split-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
}

.hc-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.hc-faq-item:hover {
    border-color: var(--cyan);
}

.hc-faq-item.active {
    border-color: var(--cyan);
    box-shadow: 0 4px 12px rgba(0, 196, 204, 0.1);
}

.hc-faq-item--hidden {
    display: none;
}

.hc-faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hc-faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.hc-faq-question i {
    color: var(--cyan);
    font-size: 0.9rem;
    transition: transform 0.3s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-faq-item.active .hc-faq-question i {
    transform: rotate(45deg);
}

.hc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hc-faq-item.active .hc-faq-answer {
    max-height: 500px; /* Ajustar según necesidad */
}

.hc-faq-answer-content {
    padding: 0 25px 20px 25px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

.hc-faq-more-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--cyan);
    border-radius: 8px;
    padding: 12px 25px;
    margin-top: 20px;
    transition: all 0.3s;
    background: transparent;
    text-decoration: none;
}

.hc-faq-more-btn:hover {
    background: var(--cyan);
    color: #fff;
    text-decoration: none;
}

/* Support Card */
.hc-support-card {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.hc-support-icon {
    width: 80px;
    height: 80px;
    background: var(--cyan);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
}

.hc-support-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.hc-support-card p {
    color: #64748b;
    margin-bottom: 35px;
}

/* Download Banner */
.hc-download-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-top: 2rem;
    padding: 14px 16px;
    border-radius: 10px;
}

.hc-download-banner-icon {
    width: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
}

.hc-download-banner-copy h3 {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 0.25rem;
}

.hc-download-banner-copy p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.hc-download-banner-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .2s ease, filter .2s ease;
}

.hc-download-banner-btn:hover {
    color: inherit;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.hc-download-banner-btn--disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.hc-download-banner-btn--disabled:hover {
    filter: none;
    transform: none;
}

/* Support Banner */
.hc-support-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.hc-support-banner-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    font-size: 1rem;
}

.hc-support-banner-copy h3 {
        font-size: 0.92rem;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.hc-support-banner-copy p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
}

.hc-support-banner-hours {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.3;
}

.hc-support-banner-hours i {
    color: var(--cyan);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hc-support-banner-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hc-support-banner-btn {
    padding: 8px 14px;
    white-space: nowrap;
    font-size: 0.85rem;
    min-height: 36px;
    justify-content: center;
}

.hc-support-banner-email-btn {
    background: #ffffff;
    color: var(--dark);
    border-color: #cbd5e1;
}

.hc-support-banner-email-btn:hover {
    background: rgba(203, 213, 225, 0.30);
    color: var(--dark);
}

@media (max-width: 900px) {
    .hc-download-banner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }
    .hc-download-banner-btn {
        width: 100%;
        white-space: normal;
    }
    .hc-support-banner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hc-support-banner-actions {
        justify-content: flex-start;
    }
    .hc-support-banner-icon {
        margin-bottom: 12px;
    }
}

@media (max-width: 900px) {
    .hc-support-banner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hc-support-banner-actions {
        justify-content: flex-start;
    }
    .hc-support-banner-icon {
        margin-bottom: 12px;
    }
}

.hc-support-hours {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.hc-support-hours i {
    color: var(--cyan);
    font-size: 1.3rem;
    margin-top: 4px;
}

.hc-support-hours strong {
    display: block;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.hc-support-hours p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Trust Bar */
.hc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hc-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hc-trust-icon {
    font-size: 2rem;
    color: var(--cyan);
}

.hc-trust-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.hc-trust-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .hc-faq-split-layout { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 992px) {
    .hc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hc-hero h1 { font-size: 2.8rem !important; }
    .hc-cards-grid { grid-template-columns: 1fr; }
    .hc-trust-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CENTRO DE AYUDA - INTERNAL PAGES
   ============================================= */
.hc-internal-hero {
    min-height: 35vh;
}

.hc-internal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

/* Sidebar */
.hc-sidebar {
    position: sticky;
    top: 100px;
}

.hc-sidebar-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hc-sidebar-box h3 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0bac9;
    margin-bottom: 20px;
}

.hc-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hc-sidebar-menu > li {
    margin-bottom: 5px;
}

.hc-sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 10px;
}

.hc-sidebar-menu li.active a {
    background: #f0f9ff;
    border-color: var(--cyan);
}

.hc-sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hc-sidebar-icon i {
    color: var(--cyan);
    font-size: 1.1rem;
}

.hc-sidebar-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 3px;
    font-weight: 700;
}

.hc-sidebar-text p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Submenu Materiales */
.hc-sidebar-submenu {
    list-style: none;
    padding: 10px 0 10px 47px;
    margin: 0;
}

.hc-sidebar-submenu li {
    margin-bottom: 8px;
}

.hc-sidebar-submenu li a {
    color: #64748b;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.hc-sidebar-submenu li a:hover,
.hc-sidebar-submenu li.active a {
    color: var(--cyan);
}

.hc-sidebar-cta {
    background: var(--dark);
    border-radius: 16px;
    padding: 30px 25px;
    color: #fff;
    text-align: center;
}

.hc-sidebar-cta h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.hc-sidebar-cta p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Content */
.hc-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.hc-content-body h2 {
    color: var(--dark);
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}

.hc-content-body h3 {
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.25rem;
}

.hc-content-body p {
    margin-bottom: 1.5rem;
}

.hc-content-body ul, .hc-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.hc-content-body li {
    margin-bottom: 8px;
}

/* Materials Grid Interno */
.hc-materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.hc-material-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s;
}

.hc-cta-banner {
    background: var(--dark);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 18px;
}

.hc-cta-icon {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hc-cta-text {
    flex: 1 1 auto;
}

.hc-cta-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.hc-cta-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.hc-cta-banner .btn {
    flex-shrink: 0;
}


.hc-content-footer p {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.hc-feedback {
    display: flex;
    gap: 10px;
}

.btn-feedback {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-feedback:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: #f0f9ff;
}

/* =============================================
   HELP CENTER RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .hc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-internal-grid { grid-template-columns: 1fr; }
    .hc-sidebar { position: static; margin-bottom: 40px; }
}

@media (max-width: 600px) {
    .hc-cards-grid { grid-template-columns: 1fr; }
    .hc-materials-grid { grid-template-columns: 1fr; }
    .hc-content-footer { flex-direction: column; gap: 20px; text-align: center; }
}
