/*
Theme Name: Dixel Taller Gráfico (Actualizado)
Theme URI: https://dixel.com.ar
Author: Ivan
Description: Tema personalizado Dixel – imprenta en Mendoza, cartelería en gran formato en Mendoza, impresiones, estampados textiles y merchandising corporativo Mendoza.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: dixel
*/

/* =============================================
   VARIABLES
   ============================================= */
:root {
    --cyan:       #00B0E5;
    --cyan-dark:  #0095C5;
    --dark:       #0c1a2e;
    --dark2:      #0f2040;
    --dark3:      #112448;
    --white:      #ffffff;
    --gray-bg:    #f2f4f7;
    --gray-text:  #666;
    --border:     rgba(255,255,255,0.08);
    --font:       'Open Sans', sans-serif;
    --fw-regular: 400;
    --fw-bold:    700;
    --fw-xbold:   800;
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
    --radius:     6px;
    --trans:      all 0.28s ease;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #1a1a1a; line-height: 1.65; background: #fff; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { text-decoration: none; transition: var(--trans); }

/* =============================================
   TIPOGRAFÍA  –  Open Sans
   ============================================= */

/* Cuerpo: Regular 400 */
body, p, li, td, input, textarea, select, button {
    font-family: var(--font);
    font-weight: var(--fw-regular);
    font-size: .95rem;
    line-height: 1.7;
}

/* Títulos principales: ExtraBold 800 */
h1, h2 {
    font-family: var(--font);
    font-weight: var(--fw-xbold);
    line-height: 1.12;
    letter-spacing: -0.5px;
}

/* Subtítulos y encabezados de sección: Bold 700 */
h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.05rem; }

/* Etiquetas de sección: Bold 700 + spacing */
.section-label {
    display: block;
    font-family: var(--font);
    font-weight: var(--fw-bold);
    font-size: .72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .5rem;
}

/* Botones: Bold 700 */
.btn, .filter-btn, .load-more-btn, button[type="submit"] {
    font-family: var(--font);
    font-weight: var(--fw-bold);
    letter-spacing: .5px;
}

/* Navegación: Bold 700 */
.nav-links a, .footer-nav a {
    font-family: var(--font);
    font-weight: var(--fw-bold);
}

/* Hero subtítulos / lead */
.hero-sub, .page-hero-sub, .lead {
    font-family: var(--font);
    font-weight: var(--fw-regular);
    font-size: 1.05rem;
    line-height: 1.6;
}

.text-center { text-align: center; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section          { padding: 72px 0; }
.section--white   { background: #fff; }
.section--gray    { background: var(--gray-bg); }

/* Sección Proceso con textura */
.section--proceso {
    background:
        linear-gradient(rgba(8,16,38,0.60), rgba(8,16,38,0.60)),
		/*CAMBIO FOTO FONDO PROCESOS*/
		/* Acá se modifica la foto de fondo de la sección: PROCESOS en el HOME y aplica a las demás páginas donde este esto mismo*/
        url('https://dixel.com.ar/wp-content/uploads/2026/05/asi_trabajamos.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}
.section--proceso .section-label {
    color: var(--cyan) !important;
}
.section--proceso h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.section--proceso .step h3 {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.section--proceso .step p {
    color: #e0e8f0 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.section--proceso .step-circle {
    border-color: var(--cyan);
    background: rgba(0,176,229,0.18);
    color: var(--cyan);
}
.section--proceso .step-arrow {
    color: var(--cyan);
    opacity: 1;
}
.section--dark-band {
    background:
        linear-gradient(rgba(10,20,45,0.88), rgba(10,20,45,0.88)),
		/*CAMBIO FOTO FONDO PROPUESTA DE VALOR*/
		/* Acá se modifica la foto de fonde de la sección: PROPUESTA DE VALOR en el HOME y aplica a las demás páginas donde este esto mismo*/
        url('https://dixel.com.ar/wp-content/uploads/2026/05/produccion_propia.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main    { flex: 1; }

/* =============================================
   BOTONES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--trans);
    text-decoration: none;
}

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

.btn-lg { padding: 15px 34px; font-size: .95rem; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-outline-dark:hover {
    background: var(--dark);
    color: #fff;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: #00B0E5;
    border-bottom: none;
    font-size: .78rem;
    color: #fff;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =============================================
   LEGAL PAGES: Política de Privacidad / Términos
   ============================================= */
.legal-content .policy-content {
    max-width: 880px;
    margin-top: 18px;
    color: var(--gray-text);
    line-height: 1.85;
    font-size: 1rem;
}
.legal-content .policy-content h2,
.legal-content .policy-content h3 {
    color: var(--dark);
    margin-top: 1.2rem;
    margin-bottom: .6rem;
}
.legal-content .policy-content p { margin-bottom: .9rem; }
.legal-content .policy-content ul { margin: .6rem 0 1rem 1.2rem; }
.legal-content .policy-content a { color: var(--cyan); }

@media (max-width: 720px) {
    .legal-content .policy-content { font-size: .98rem; padding: 0 6px; }
}

/* Inline materials menu (when shown above content) */
.hc-inline-materials-menu { margin-bottom: 18px; }
.hc-inline-materials-menu .hc-inline-menu { display:flex; flex-wrap:wrap; gap:12px; padding:0; }
.hc-inline-materials-menu .hc-inline-menu li { list-style:none; }
.hc-inline-materials-menu .hc-inline-menu a { display:flex; align-items:center; gap:8px; padding:8px 12px; background: #fff; border:1px solid rgba(16,24,40,0.04); border-radius:8px; color:var(--dark); }
.hc-inline-materials-menu .hc-inline-menu a .hc-sidebar-icon { width:28px; height:28px; display:flex; align-items:center; justify-content:center; border-radius:6px; background: rgba(0,176,229,0.08); color:var(--cyan); }
.hc-inline-materials-menu .hc-inline-menu li.active a { box-shadow: var(--shadow); border-color: rgba(0,176,229,0.12); }

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i    { color: #fff; font-size: .8rem; opacity: .85; }
.top-bar-left a    { color: #fff; }
.top-bar-left a:hover { color: rgba(255,255,255,.75); }

.top-bar-icon-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: inline-block;
    flex: 0 0 auto;
}

.top-bar-right { display: flex; gap: 14px; align-items: center; }
.top-bar-right a,
.top-bar-social-item {
    color: #fff;
    font-size: .85rem;
    transition: var(--trans);
    opacity: .85;
    display: inline-flex;
    align-items: center;
}
.top-bar-right a:hover { opacity: 1; }

/* =============================================
   BOTTOM BAR (Web desarrollada por)
   ============================================= */
.bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: .78rem;
    color: rgba(255,255,255,0.4);
}

.bottom-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.bottom-bar-right {
    display: flex;
    align-items: center;
}

.bottom-bar-right a,
.bottom-bar-right span {
    color: rgba(255,255,255,0.4);
    transition: var(--trans);
}

.bottom-bar-right a:hover {
    color: rgba(255,255,255,0.9);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-bottom: 1px solid #eaeef4;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-branding a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 6px;
    transition: opacity .25s ease;
}
.site-branding a:hover { opacity: .85; }

.site-branding img {
    height: 44px;
    width: auto;
    display: block;
    border-radius: 6px;
}

/* NAV */
.main-navigation { flex: 1; }

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.main-navigation ul li a {
    color: var(--dark);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .8px;
    padding: 8px 14px 6px;
    border-radius: 4px;
    transition: var(--trans);
    display: block;
    position: relative;
}

/* Línea inferior animada */
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.main-navigation ul li a:hover { color: var(--cyan); }
.main-navigation ul li a:hover::after { width: calc(100% - 28px); }

/* Página activa */
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a,
.main-navigation ul li.current-menu-ancestor a {
    color: var(--cyan);
}
.main-navigation ul li.current-menu-item a::after,
.main-navigation ul li.current_page_item a::after,
.main-navigation ul li.current-menu-ancestor a::after {
    width: calc(100% - 28px);
}

/* Botón presupuesto en header */
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .6px;
    padding: 10px 18px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: var(--trans);
}
.btn-header-cta:hover { background: var(--cyan-dark); color: #fff; }
.btn-header-cta i     { font-size: 1rem; }

/* Toggle mobile */
.menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid rgba(0,0,0,0.2);
    color: var(--dark);
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1rem;
    margin-left: auto;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('img/hero-bg.jpg') right center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,20,40,0.97) 0%,
        rgba(10,20,40,0.90) 35%,
        rgba(10,20,40,0.45) 65%,
        rgba(10,20,40,0.10) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 48px 0;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    text-align: left;
    line-height: 1.1;
}

.hero-cyan { color: var(--cyan); }

.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   SERVICIOS
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 2.8rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: var(--radius);
    padding: 28px 16px 22px;
    text-align: center;
    transition: var(--trans);
    cursor: default;
}

.service-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 28px rgba(0,176,229,.12);
    transform: translateY(-4px);
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
}

.service-card .service-icon svg {
    width: 100%;
    height: 100%;
}

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

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

/* =============================================
   BANDA OSCURA – PROPUESTA DE VALOR
   ============================================= */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--trans);
}

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

.value-icon {
    width: 54px;
    height: 54px;
    background: rgba(0,176,229,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.value-text h3 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.value-text p {
    color: rgba(255,255,255,0.6);
    font-size: .83rem;
    margin: 0;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 2.5rem 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: var(--dark2);
}

.portfolio-placeholder { background: #1a2d4a; }

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,176,229,.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
}

.portfolio-cta { text-align: center; }

/* =============================================
   PROCESO
   ============================================= */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    max-width: 200px;
}

.step-circle {
    position: relative;
    width: 76px;
    height: 76px;
    background: var(--dark);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-circle i {
    color: var(--cyan);
    font-size: 1.4rem;
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--cyan);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step p {
    font-size: .78rem;
    color: var(--gray-text);
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
    color: var(--cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* =============================================
   CLIENTES + TESTIMONIOS
   ============================================= */
.clients-testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.ct-divider {
    background: #e0e4ec;
    align-self: stretch;
    margin: 0;
}

/* ACÁ SE MANEJAN LOS ICONOS DE LAS EMPRESAS*/
.clients-logos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px 32px;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
}

@media (max-width: 900px) {
    .clients-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    aspect-ratio: auto;
    padding: 0px;   /*Sirve para separar el texto o imágenes del borde de su contenedor*/
    background: transparent;
    border-radius: var(--radius);
    min-height: 0;
    overflow: hidden;
    border: none;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform .28s ease;
}

.client-logo:hover img,
.client-logo:active img,
.client-logo:focus-within img {
    transform: scale(1.03);
}

/*
.clients-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 1.5rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--gray-bg);
    border-radius: var(--radius);
    min-height: 70px;
}

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

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

.testimonial-card {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--cyan);
}

.testimonial-stars {
    color: #f5a623;
    font-size: .9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    font-size: .9rem;
    margin-bottom: 14px;
}

.testimonial-author {
    font-size: .82rem;
    color: var(--dark);
    margin: 0;
}

/* =============================================
   CONTACTO + CTA
   ============================================= */
.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-item i {
    color: var(--cyan);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.contact-item strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    font-size: .88rem;
    color: var(--gray-text);
    margin: 0;
}

.contact-item a:hover { color: var(--cyan); }

.map-embed {
    margin-top: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 240px;
    border: none;
    display: block;
}

/* CTA box */
.cta-col { display: flex; align-items: center; }

.cta-box {
    background: var(--dark);
    border-radius: 10px;
    padding: 48px 36px;
    width: 100%;
    text-align: center;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin: .3rem 0 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.8rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand a {
    display: inline-flex;
    margin-bottom: 16px;
    border-radius: 6px;
    transition: opacity .25s ease;
}
.footer-brand a:hover { opacity: .8; }
.footer-brand img {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 6px;
}
.footer-brand p     { font-size: .84rem; line-height: 1.7; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: .85rem;
    transition: var(--trans);
}
.footer-social a:hover {
    background: var(--cyan);
    color: #fff;
}

.footer-col h4 {
    color: var(--white);
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cyan);
    display: inline-block;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: .84rem;
}
.footer-col ul li a:hover { color: var(--cyan); }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .84rem;
}
.footer-contact-list li i {
    color: var(--cyan);
    font-size: .85rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-list li a { color: rgba(255,255,255,0.55); }
.footer-contact-list li a:hover { color: var(--cyan); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-seo-links a {
    color: rgba(255,255,255,0.4);
    font-size: .74rem;
}
.footer-seo-links a:hover { color: var(--cyan); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(5, 12, 28, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(6px);
}
.lb-overlay.lb-open {
    opacity: 1;
    pointer-events: all;
}

.lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

#lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,.7);
    opacity: 1;
    transition: opacity 0.16s ease;
    display: block;
}

.lb-caption {
    color: rgba(255,255,255,.65);
    font-size: .82rem;
    letter-spacing: .5px;
    text-align: center;
    margin: 0;
    max-width: 600px;
}

/* Botón cerrar */
.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 2;
}
.lb-close:hover { background: rgba(255,255,255,.18); transform: scale(1.1); }

/* Botones navegación */
.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 2;
}
.lb-nav:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-50%) scale(1.08); }
.lb-nav--prev { left: 20px; }
.lb-nav--next { right: 20px; }

/* Strip de miniaturas */
.lb-thumbs-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: linear-gradient(to top, rgba(5,12,28,.95) 0%, rgba(5,12,28,.6) 100%);
    display: flex;
    justify-content: center;
}

.lb-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: 90vw;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
}
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }

.lb-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color .2s, transform .2s, opacity .2s;
    opacity: .5;
}
.lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lb-thumb:hover { opacity: .85; transform: scale(1.05); }
.lb-thumb--active {
    border-color: var(--cyan);
    opacity: 1;
    transform: scale(1.08);
}

/* Cursor pointer en items de portfolio */
.portfolio-item { cursor: pointer; }

@media (max-width: 600px) {
    .lb-nav--prev { left: 8px; }
    .lb-nav--next { right: 8px; }
    .lb-nav { width: 38px; height: 38px; font-size: .85rem; }
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="100"]  { transition-delay: 100ms; }
.reveal[data-delay="150"]  { transition-delay: 150ms; }
.reveal[data-delay="200"]  { transition-delay: 200ms; }
.reveal[data-delay="250"]  { transition-delay: 250ms; }
.reveal[data-delay="300"]  { transition-delay: 300ms; }
.reveal[data-delay="350"]  { transition-delay: 350ms; }
.reveal[data-delay="400"]  { transition-delay: 400ms; }
.reveal[data-delay="450"]  { transition-delay: 450ms; }
.reveal[data-delay="500"]  { transition-delay: 500ms; }
.reveal[data-delay="600"]  { transition-delay: 600ms; }

/* Reveal desde izquierda */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Reveal desde derecha */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Fade simple */
.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.reveal-fade.visible { opacity: 1; }

/* Escala */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* =============================================
   HEADER SCROLLED
   ============================================= */
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,.8); }

/* =============================================
   PORTFOLIO BADGE CATEGORÍA
   ============================================= */
.portfolio-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--cyan);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 3;
}

/* =============================================
   PORTFOLIO HIDDEN (filtro / load more)
   ============================================= */
.portfolio-item.hidden { display: none !important; }

/* =============================================
   FILTER BAR (página Trabajos)
   ============================================= */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 2rem 0 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 1.5px solid #d0d5e0;
    color: var(--dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--font);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
}

/* =============================================
   LOAD MORE BUTTON
   ============================================= */
.load-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
}
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--dark);
    color: var(--dark);
    background: transparent;
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--trans);
}
.load-more-btn:hover {
    background: var(--dark);
    color: #fff;
}

/* =============================================
   NOSOTROS – HISTORIA
   ============================================= */
.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 2rem;
}

.historia-text .section-label { margin-bottom: .6rem; }

.historia-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.historia-text p {
    color: var(--gray-text);
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.historia-text .btn-outline-dark { margin-top: .8rem; }

.historia-fotos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.historia-fotos .foto-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/7;
}

.historia-fotos .foto-side {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.historia-fotos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.historia-fotos .foto-main:hover img,
.historia-fotos .foto-side:hover img {
    transform: scale(1.04);
}

/* =============================================
   NOSOTROS – VALUE GRID 4 COLUMNAS
   ============================================= */
.value4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.value4-item {
    padding: 40px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.value4-item:last-child { border-right: none; }
.value4-item:hover { background: rgba(255,255,255,.04); }

.value4-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;
}
.value4-icon i { color: var(--cyan); font-size: 1.2rem; }

.value4-item h4 {
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.value4-item p {
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    margin: 0;
    line-height: 1.5;
}

/* =============================================
   NOSOTROS – EQUIPO
   ============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 2.5rem;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark2);
    margin-bottom: 12px;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
}

.team-photo-placeholder i {
    font-size: 2.5rem;
    color: rgba(255,255,255,.25);
}

.team-card:hover .team-photo img { transform: scale(1.05); }

.team-card h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-card span {
    font-size: .75rem;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: .5px;
}

/* =============================================
   CTA BAR (Trabajos / Nosotros)
   ============================================= */
.cta-bar {
    background:
        linear-gradient(rgba(8,18,40,0.92), rgba(8,18,40,0.92)),
		/*CAMBIO FOTO FONDO ¿TENÉS UN PROYECTO EN MENTE?*/
		/* Acá se modifica la foto de fonde de la sección: ¿TENÉS UN PROYECTO EN MENTE?* en el HOME y aplica a las demás páginas donde este esto mismo*/
        url('https://dixel.com.ar/wp-content/uploads/2025/07/grandes-formatos.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    padding: 40px 0;
}

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

.cta-bar-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.cta-bar-copy h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}
.cta-bar-copy p {
    color: rgba(255,255,255,.55);
    font-size: .83rem;
    margin: 0;
}

/* =============================================
   TRABAJOS – HERO MINI (breadcrumb + título)
   ============================================= */
.page-hero-mini {
    background: var(--dark);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    opacity: .18;
}

.page-hero-mini-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.page-hero-mini h1 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    text-transform: uppercase;
    margin: .5rem 0 .8rem;
    text-align: left;
}

.page-hero-mini p {
    color: rgba(255,255,255,.65);
    font-size: .93rem;
    max-width: 540px;
    text-align: left;
}

/* =============================================
   WHATSAPP FLOTANTE
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 22px rgba(37,211,102,.45);
    transition: var(--trans);
    animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
.whatsapp-float i     { font-size: 1.6rem; }

@keyframes wa-pulse {
    0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,.45); }
    50%      { box-shadow: 0 6px 32px rgba(37,211,102,.7); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
    .value-grid           { grid-template-columns: 1fr; }
    .value-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .value-item:last-child{ border-bottom: none; }

    .portfolio-grid       { grid-template-columns: repeat(2, 1fr); }
    .clients-testimonials-grid { grid-template-columns: 1fr; }
    .ct-divider           { display: none; }
    .contact-cta-grid     { grid-template-columns: 1fr; }
    .cta-box              { padding: 36px 24px; }
}

@media (max-width: 768px) {
    .top-bar-left span:not(:first-child) { display: none; }

    .menu-toggle    { display: flex; align-items: center; justify-content: center; }
    .main-navigation { display: none; }
    .main-navigation.toggled {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eaeef4;
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
        z-index: 999;
    }
    .main-navigation.toggled ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }
    .main-navigation.toggled ul li a {
        padding: 12px 24px;
        border-radius: 0;
        color: var(--dark);
    }
    .main-navigation.toggled ul li a::after { display: none; }
    .main-navigation.toggled ul li a:hover  { color: var(--cyan); background: #f4f8fc; }
    .btn-header-cta { display: none; }
    .header-inner   { position: relative; flex-wrap: wrap; }

    .hero               { min-height: 60vh; }
    .hero-overlay       { background: rgba(10,20,40,0.88); }
    .services-grid      { grid-template-columns: repeat(2, 1fr); }
    .process-steps      { flex-wrap: wrap; gap: 16px; }
    .step-arrow         { display: none; }
    .step               { max-width: 50%; flex: 0 0 45%; }
    .clients-logos      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid        { grid-template-columns: 1fr; }
    .footer-bottom-inner{ flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .section            { padding: 52px 0; }
    .services-grid      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .portfolio-grid     { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons       { flex-direction: column; }
    .btn                { justify-content: center; }
}

/* =============================================
   RESPONSIVE – COMPONENTES NUEVOS
   ============================================= */
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .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); }
}

@media (max-width: 900px) {
    .historia-grid { grid-template-columns: 1fr; }
    .historia-fotos { order: -1; }
    .cta-bar-inner { flex-direction: column; text-align: center; }
    .cta-bar-text  { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 768px) {
    .team-grid    { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .value4-grid  { grid-template-columns: 1fr; }
    .value4-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .filter-bar   { gap: 6px; }
    .filter-btn   { font-size: .68rem; padding: 7px 12px; }
}

@media (max-width: 480px) {
    .team-grid    { grid-template-columns: repeat(2, 1fr); }
    .historia-fotos { grid-template-columns: 1fr; }
    .historia-fotos .foto-main { grid-column: 1; }
}

/* =============================================
   FOOTER - LEGAL QRS & PAYMENTS
   ============================================= */
.footer-legal-qrs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.qr-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}
.qr-item span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}
.qr-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}
.qr-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

.footer-grid:has(.footer-col-payments) {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
}

.footer-col-payments {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.footer-payments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.payment-icon {
    background: #fff;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/2;
}
.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .footer-grid:has(.footer-col-payments) {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid:has(.footer-col-payments) {
        grid-template-columns: 1fr;
    }
    .footer-col-payments {
        margin-top: 20px;
    }
}

/* Quitar fondo blanco de pagos */
.payment-icon {
    background: transparent !important;
    padding: 0 !important;
}

/* Páginas legales */
.legal-page {
    background: #fff;
}
.legal-content {
    max-width: 920px;
    margin: 0 auto;
    color: #162033;
    line-height: 1.75;
}
.legal-content h1 {
    margin: 0 0 28px;
    color: #081226;
}
.legal-content h2,
.legal-content h3 {
    margin: 32px 0 12px;
    color: #081226;
}
.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 18px;
}
.legal-content a {
    color: #00B0E5;
    font-weight: 700;
}
