/*
=========================================================
ARCHIVO: sitio_web.css
UBICACIÓN: static/css/
FUNCIÓN: estilos globales del Template 3
USO: sitio web corporativo multipágina premium
=========================================================
*/

/* =========================================================
   BASE GENERAL
========================================================= */
.t3-page {
    --t3-max-width: 1280px;
    --t3-radius-xl: 28px;
    --t3-radius-lg: 22px;
    --t3-radius-md: 16px;
    --t3-border: 1px solid rgba(15, 23, 42, 0.08);
    --t3-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.05);
    --t3-shadow-card: 0 14px 28px rgba(15, 23, 42, 0.06);
    --t3-text-soft: #667085;
    --t3-text-strong: #344054;
    --t3-bg-soft: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,249,252,0.98));
    --t3-bg-panel: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,250,0.98));
    --t3-line: rgba(15, 23, 42, 0.08);
}

.t3-main {
    padding-top: 30px;
    padding-bottom: 72px;
}

.t3-home,
.t3-stack {
    display: grid;
    gap: 44px;
}

.t3-container {
    width: min(var(--t3-max-width), calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   TOPBAR
========================================================= */
.t3-topbar {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.t3-topbar-inner {
    width: min(var(--t3-max-width), calc(100% - 40px));
    margin: 0 auto;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.t3-topbar-left,
.t3-topbar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.t3-topbar-message,
.t3-topbar-item,
.t3-topbar-link {
    color: rgba(255, 255, 255, 0.92);
}

.t3-topbar-link:hover {
    color: #ffffff;
}

/* =========================================================
   HEADER
========================================================= */
.t3-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.t3-header-inner {
    width: min(var(--t3-max-width), calc(100% - 40px));
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.t3-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.t3-brand-logo {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 18px;
    border: var(--t3-border);
    background: #ffffff;
    box-shadow: var(--t3-shadow-card);
}

.t3-brand-logo-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.10), rgba(14, 165, 233, 0.08));
}

.t3-brand-text {
    min-width: 0;
}

.t3-brand-title {
    margin: 0;
    color: var(--brand-primary);
    font-size: 20px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.t3-brand-description {
    margin: 6px 0 0;
    max-width: 560px;
    color: var(--t3-text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.t3-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.t3-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--t3-text-strong);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.22s ease;
}

.t3-nav a:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--brand-primary);
}

.t3-nav .t3-btn {
    margin-left: 6px;
}

/* =========================================================
   FOOTER
========================================================= */
.t3-footer {
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--t3-line);
}

.t3-footer-inner {
    width: min(var(--t3-max-width), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1fr;
    gap: 28px;
    padding-bottom: 22px;
}

.t3-footer-title {
    margin: 0 0 14px;
    color: var(--brand-primary);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.t3-footer-text,
.t3-footer-links {
    display: grid;
    gap: 12px;
    color: var(--t3-text-soft);
    font-size: 15px;
    line-height: 1.78;
}

.t3-footer-links a,
.t3-footer-text a {
    color: var(--t3-text-soft);
}

.t3-footer-links a:hover,
.t3-footer-text a:hover {
    color: var(--brand-primary);
}

.t3-footer-bottom {
    width: min(var(--t3-max-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 34px;
    border-top: 1px solid var(--t3-line);
    color: #98a2b3;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   SHELLS GENERALES
========================================================= */
.t3-section,
.t3-section-shell,
.t3-hero-open,
.t3-about-hero,
.t3-services-hero,
.t3-trust-hero,
.t3-catalog-hero,
.t3-contact-hero,
.t3-contact-channels,
.t3-contact-guidance,
.t3-contact-operational,
.t3-contact-location,
.t3-contact-trust,
.t3-contact-final,
.t3-services-editorial,
.t3-services-primary,
.t3-services-benefits,
.t3-services-process,
.t3-services-proof,
.t3-services-cta,
.t3-catalog-editorial,
.t3-catalog-groups,
.t3-catalog-feature,
.t3-catalog-guidance,
.t3-catalog-benefits,
.t3-catalog-cta,
.t3-about-editorial,
.t3-origin-story,
.t3-mission-vision,
.t3-values-section,
.t3-work-philosophy,
.t3-about-signals,
.t3-brand-statement,
.t3-about-cta,
.t3-trust-signals,
.t3-trust-context,
.t3-trust-faq,
.t3-trust-impact,
.t3-trust-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--t3-radius-xl);
    border: var(--t3-border);
    background: var(--t3-bg-soft);
    box-shadow: var(--t3-shadow-soft);
}

.t3-section,
.t3-section-shell,
.t3-hero-open,
.t3-about-hero,
.t3-services-hero,
.t3-trust-hero,
.t3-catalog-hero,
.t3-contact-hero,
.t3-contact-channels,
.t3-contact-guidance,
.t3-contact-operational,
.t3-contact-location,
.t3-contact-trust,
.t3-contact-final,
.t3-services-editorial,
.t3-services-primary,
.t3-services-benefits,
.t3-services-process,
.t3-services-proof,
.t3-services-cta,
.t3-catalog-editorial,
.t3-catalog-groups,
.t3-catalog-feature,
.t3-catalog-guidance,
.t3-catalog-benefits,
.t3-catalog-cta,
.t3-about-editorial,
.t3-origin-story,
.t3-mission-vision,
.t3-values-section,
.t3-work-philosophy,
.t3-about-signals,
.t3-brand-statement,
.t3-about-cta,
.t3-trust-signals,
.t3-trust-context,
.t3-trust-faq,
.t3-trust-impact,
.t3-trust-cta {
    padding: 56px;
}

.t3-section::before,
.t3-section-shell::before,
.t3-hero-open::before,
.t3-about-hero::before,
.t3-services-hero::before,
.t3-trust-hero::before,
.t3-catalog-hero::before,
.t3-contact-hero::before,
.t3-services-proof::before,
.t3-brand-statement::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 72%);
    pointer-events: none;
}

.t3-section::after,
.t3-section-shell::after,
.t3-hero-open::after,
.t3-about-hero::after,
.t3-services-hero::after,
.t3-trust-hero::after,
.t3-catalog-hero::after,
.t3-contact-hero::after,
.t3-services-proof::after,
.t3-brand-statement::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05), transparent 72%);
    pointer-events: none;
}

/* =========================================================
   TIPOGRAFÍA
========================================================= */
.t3-section-head {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
}

.t3-section-title,
.t3-hero-open-title,
.t3-strip-title {
    margin: 0;
    color: var(--brand-primary);
    letter-spacing: -0.04em;
}

.t3-section-title {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
    max-width: 980px;
}

.t3-hero-open-title {
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.01;
    max-width: 860px;
}

.t3-strip-title {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.t3-section-text,
.t3-hero-open-text,
.t3-about-body-text,
.t3-big-quote,
.t3-quote-side p,
.t3-quote-author,
.t3-contact-band-copy p,
.t3-contact-band-info span,
.t3-placeholder,
.t3-catalog-side p,
.t3-service-side p,
.t3-about-editorial-side p,
.t3-work-philosophy-side p,
.t3-brand-statement-side p,
.t3-trust-hero-side p,
.t3-services-hero-side p,
.t3-catalog-hero-side p,
.t3-contact-hero-side p {
    color: var(--t3-text-soft);
}

.t3-section-text,
.t3-hero-open-text {
    font-size: 17px;
    line-height: 1.9;
    max-width: 880px;
}

.t3-about-body-text {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 1.88;
}

.t3-mini-label,
.t3-overline span,
.t3-service-tag,
.t3-catalog-card-kicker,
.t3-contact-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    color: #4f46e5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.t3-overline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.t3-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.t3-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    color: #4f46e5;
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   BOTONES
========================================================= */
.btn-t3,
.t3-btn {
    appearance: none;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn-t3:hover,
.t3-btn:hover {
    transform: translateY(-2px);
}

.btn-t3-primary,
.btn-primary,
.t3-btn-primary,
.t3-btn.t3-btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), rgba(99, 102, 241, 0.90));
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(99, 102, 241, 0.18);
}

.btn-t3-secondary,
.btn-secondary,
.t3-btn-secondary,
.t3-btn.t3-btn-secondary {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.16);
    color: var(--brand-primary) !important;
    box-shadow: 0 12px 22px rgba(99, 102, 241, 0.06);
}

.btn-t3-light,
.btn-light,
.t3-btn-light,
.t3-btn.t3-btn-light {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
    color: var(--t3-text-strong) !important;
}

.t3-cta-actions,
.t3-card-actions,
.t3-hero-open-actions,
.t3-contact-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

/* =========================================================
   UTILIDADES Y BLOQUES COMPARTIDOS
========================================================= */
.t3-list,
.t3-list-grid {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.t3-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.8;
    color: var(--t3-text-strong);
}

.t3-list-check {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.t3-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    border-radius: var(--t3-radius-lg);
    border: 1px dashed rgba(15, 23, 42, 0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,251,0.98));
    line-height: 1.9;
}

.t3-inline-link {
    margin-top: 18px;
}

.t3-inline-link a {
    color: var(--brand-primary);
    font-weight: 800;
}

.t3-inline-link a:hover {
    text-decoration: underline;
}

.t3-proof-card,
.t3-trust-card,
.t3-impact-card,
.t3-feature-card,
.t3-service-card,
.t3-service-side,
.t3-catalog-side,
.t3-about-editorial-side,
.t3-work-philosophy-side,
.t3-services-editorial-side,
.t3-services-hero-side,
.t3-trust-hero-side,
.t3-catalog-hero-side,
.t3-contact-hero-side {
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: #ffffff;
    box-shadow: var(--t3-shadow-card);
}

.t3-proof-card,
.t3-trust-card,
.t3-impact-card,
.t3-feature-card,
.t3-service-card,
.t3-service-side,
.t3-catalog-side,
.t3-about-editorial-side,
.t3-work-philosophy-side,
.t3-services-editorial-side,
.t3-services-hero-side,
.t3-trust-hero-side,
.t3-catalog-hero-side,
.t3-contact-hero-side {
    padding: 24px;
}

.t3-proof-card strong,
.t3-trust-card h3,
.t3-impact-card strong,
.t3-feature-card h3,
.t3-service-card h3,
.t3-service-side h3,
.t3-catalog-side h3,
.t3-about-editorial-side h3,
.t3-work-philosophy-side h3,
.t3-services-editorial-side h3,
.t3-services-hero-side h3,
.t3-trust-hero-side h3,
.t3-catalog-hero-side h3,
.t3-contact-hero-side h3 {
    color: var(--brand-primary);
    margin-top: 18px;
    margin-bottom: 18px;
}

.t3-proof-card span,
.t3-trust-card p,
.t3-impact-card p,
.t3-feature-card p,
.t3-service-card p,
.t3-service-side p,
.t3-catalog-side p,
.t3-about-editorial-side p,
.t3-work-philosophy-side p,
.t3-services-editorial-side p,
.t3-services-hero-side p,
.t3-trust-hero-side p,
.t3-catalog-hero-side p,
.t3-contact-hero-side p {
    margin: 18px 0 0;
    line-height: 1.95;
}

.t3-trust-strip-grid,
.t3-impact-grid,
.t3-feature-grid {
    display: grid;
    gap: 22px;
}

.t3-trust-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.t3-impact-grid,
.t3-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t3-feature-card .t3-feature-number,
.t3-service-number,
.t3-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.10);
    color: var(--brand-primary);
    font-weight: 900;
    margin-bottom: 14px;
}

.t3-big-quote {
    margin: 18px 0 0;
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: -0.02em;
    color: var(--brand-primary);
}

.t3-quote-author {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.7;
}

.t3-quote-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: stretch;
}

.t3-contact-band-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr auto;
    gap: 28px;
    align-items: center;
}

.t3-contact-band-info {
    display: grid;
    gap: 12px;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   INICIO
========================================================= */
.t3-hero-open {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(255,255,255,0.98) 52%, rgba(14, 165, 233, 0.08));
}

.t3-hero-open-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 44px;
    align-items: center;
}

.t3-hero-open-text {
    margin: 22px 0 0;
}

.t3-hero-open-actions {
    margin-top: 32px;
}

.t3-hero-open-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.t3-signal-item {
    padding: 22px;
    border-radius: 18px;
    border: var(--t3-border);
    background: rgba(255,255,255,0.86);
}

.t3-signal-item strong {
    color: var(--brand-primary);
    display: block;
    margin-bottom: 10px;
}

.t3-signal-item span {
    color: var(--t3-text-soft);
    font-size: 14px;
    line-height: 1.78;
}

.t3-hero-open-media,
.t3-editorial-visual,
.t3-about-hero-visual,
.t3-origin-visual,
.t3-split-media {
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: var(--t3-bg-panel);
}

.t3-hero-open-media img,
.t3-editorial-visual img,
.t3-about-hero-visual img,
.t3-origin-visual img,
.t3-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t3-trust-strip {
    padding: 38px 44px;
}

.t3-trust-strip-head {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.t3-strip-text {
    margin: 0;
    color: var(--t3-text-soft);
    font-size: 16px;
    line-height: 1.82;
    max-width: 820px;
}

.t3-editorial-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 38px;
    align-items: center;
}

.t3-services-showcase {
    position: relative;
    overflow: hidden;
    border-radius: var(--t3-radius-xl);
    border: var(--t3-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(246,248,252,0.98));
    box-shadow: var(--t3-shadow-soft);
    padding: 56px;
}

.t3-services-header {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    margin-bottom: 32px;
    align-items: end;
}

.t3-services-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.t3-service-main {
    padding: 30px;
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,249,252,0.98));
    box-shadow: var(--t3-shadow-card);
}

.t3-service-main h3 {
    margin: 18px 0 16px;
    color: var(--brand-primary);
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.t3-service-main p {
    color: var(--t3-text-soft);
    line-height: 1.9;
}

.t3-service-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.t3-service-points span,
.t3-catalog-card-points span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--t3-text-strong);
    font-size: 12px;
    font-weight: 700;
}

.t3-catalog-highlight,
.t3-home .t3-catalog-highlight {
    position: relative;
    overflow: hidden;
    border-radius: var(--t3-radius-xl);
    border: var(--t3-border);
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(245,247,251,0.98));
    box-shadow: var(--t3-shadow-soft);
    padding: 56px;
}

.t3-catalog-head {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

/* =========================================================
   NOSOTROS
========================================================= */
.t3-about-hero {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(255,255,255,0.98) 56%, rgba(99, 102, 241, 0.06));
}

.t3-about-hero-grid,
.t3-origin-grid,
.t3-work-philosophy-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 38px;
    align-items: center;
}

.t3-about-editorial-grid,
.t3-brand-statement-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 32px;
    align-items: start;
}

.t3-origin-points,
.t3-values-list,
.t3-about-signals-grid {
    display: grid;
    gap: 18px;
}

.t3-origin-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.t3-origin-point,
.t3-value-item,
.t3-about-signal,
.t3-purpose-block {
    padding: 24px;
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: #ffffff;
    box-shadow: var(--t3-shadow-card);
}

.t3-origin-point strong,
.t3-value-item strong,
.t3-about-signal strong,
.t3-purpose-block h3 {
    color: var(--brand-primary);
}

.t3-origin-point p,
.t3-value-item p,
.t3-about-signal p,
.t3-purpose-block p {
    margin: 12px 0 0;
    color: var(--t3-text-soft);
    line-height: 1.88;
}

.t3-mission-vision-head,
.t3-values-head,
.t3-about-signals-head {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.t3-mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.t3-values-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t3-brand-statement {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(255,255,255,0.99) 52%, rgba(14, 165, 233, 0.06));
}

.t3-about-cta {
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(246,248,252,0.98));
}

/* =========================================================
   SERVICIOS
========================================================= */
.t3-services-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(255,255,255,0.98) 56%, rgba(99, 102, 241, 0.05));
}

.t3-services-hero-grid,
.t3-services-editorial-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 32px;
    align-items: start;
}

.t3-services-primary-head,
.t3-services-benefits-head {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.t3-services-primary-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr 1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.t3-services-primary .t3-service-main h3 {
    margin-top: 12px;
}

.t3-services-primary .t3-service-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--brand-primary);
    font-weight: 800;
}

.t3-services-process .t3-process-wrapper,
.t3-catalog-guidance .t3-process-wrapper,
.t3-contact-guidance .t3-process-wrapper {
    display: grid;
    gap: 28px;
}

.t3-process-intro {
    display: grid;
    gap: 14px;
}

.t3-process-layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.t3-process-block {
    padding: 28px;
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: #ffffff;
    box-shadow: var(--t3-shadow-card);
}

.t3-process-block h3 {
    margin: 14px 0 14px;
    color: var(--brand-primary);
}

.t3-process-block p {
    color: var(--t3-text-soft);
    line-height: 1.88;
}

.t3-services-proof {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(255,255,255,0.99) 54%, rgba(16, 185, 129, 0.04));
}

/* =========================================================
   CATALOGO
========================================================= */
.t3-catalog-hero {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(255,255,255,0.98) 58%, rgba(14, 165, 233, 0.05));
}

.t3-catalog-hero-grid,
.t3-catalog-editorial-grid,
.t3-catalog-feature-layout {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 32px;
    align-items: start;
}

.t3-catalog-groups-head {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.t3-catalog-groups-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.t3-catalog-group-card,
.t3-catalog-card,
.t3-contact-panel {
    padding: 28px;
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: #ffffff;
    box-shadow: var(--t3-shadow-card);
}

.t3-catalog-group-card h3,
.t3-catalog-card-title {
    margin: 16px 0 16px;
    color: var(--brand-primary);
}

.t3-catalog-group-card p,
.t3-catalog-card-text {
    color: var(--t3-text-soft);
    line-height: 1.9;
}

.t3-catalog-group-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--brand-primary);
    font-weight: 800;
}

.t3-catalog-feature-side {
    display: grid;
    gap: 18px;
}

/* =========================================================
   CONFIANZA
========================================================= */
.t3-trust-hero {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.06), rgba(255,255,255,0.99) 58%, rgba(99, 102, 241, 0.05));
}

.t3-trust-hero-grid,
.t3-trust-context-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: start;
}

.t3-trust-hero-copy .t3-section-title {
    max-width: 860px;
}

.t3-trust-signals .t3-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.t3-trust-context-main .t3-list {
    margin-top: 24px;
}

.t3-trust-faq .t3-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t3-trust-impact {
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(246,248,252,0.98));
}

/* =========================================================
   CONTACTO (soporte base)
========================================================= */
.t3-contact-page .t3-section {
    padding: 44px;
}

.t3-contact-hero {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(255,255,255,0.99) 56%, rgba(99, 102, 241, 0.05));
}

.t3-contact-hero-grid,
.t3-contact-operational-grid,
.t3-contact-location-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 32px;
    align-items: start;
}

.t3-contact-channels-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.t3-contact-channel-main,
.t3-contact-channel-card,
.t3-contact-channel-side,
.t3-contact-operational-side,
.t3-contact-location-side {
    padding: 28px;
    border-radius: var(--t3-radius-lg);
    border: var(--t3-border);
    background: #ffffff;
    box-shadow: var(--t3-shadow-card);
}

.t3-contact-channel-main h3,
.t3-contact-channel-card h3,
.t3-contact-channel-side h3,
.t3-contact-operational-side h3 {
    margin: 14px 0 14px;
    color: var(--brand-primary);
}

.t3-contact-data-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.t3-contact-data-item {
    display: grid;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid var(--t3-line);
}

.t3-contact-data-item strong {
    color: var(--brand-primary);
}

.t3-contact-info {
    display: grid;
    gap: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
    .t3-topbar-inner,
    .t3-header-inner,
    .t3-footer-inner,
    .t3-footer-bottom,
    .t3-container {
        width: min(var(--t3-max-width), calc(100% - 28px));
    }

    .t3-header-inner {
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .t3-nav {
        justify-content: flex-start;
    }

    .t3-hero-open-grid,
    .t3-editorial-grid,
    .t3-about-hero-grid,
    .t3-origin-grid,
    .t3-about-editorial-grid,
    .t3-work-philosophy-grid,
    .t3-brand-statement-layout,
    .t3-services-hero-grid,
    .t3-services-editorial-grid,
    .t3-quote-layout,
    .t3-catalog-hero-grid,
    .t3-catalog-editorial-grid,
    .t3-catalog-feature-layout,
    .t3-trust-hero-grid,
    .t3-trust-context-grid,
    .t3-contact-hero-grid,
    .t3-contact-operational-grid,
    .t3-contact-location-grid,
    .t3-contact-band-grid {
        grid-template-columns: 1fr;
    }

    .t3-services-grid,
    .t3-services-primary-grid,
    .t3-contact-channels-grid {
        grid-template-columns: 1fr 1fr;
    }

    .t3-trust-strip-grid,
    .t3-trust-signals .t3-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t3-impact-grid,
    .t3-feature-grid,
    .t3-values-list,
    .t3-catalog-groups-grid,
    .t3-process-layout,
    .t3-origin-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t3-mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .t3-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .t3-main {
        padding-top: 22px;
        padding-bottom: 42px;
    }

    .t3-home,
    .t3-stack {
        gap: 28px;
    }

    .t3-section,
    .t3-section-shell,
    .t3-hero-open,
    .t3-about-hero,
    .t3-services-hero,
    .t3-trust-hero,
    .t3-catalog-hero,
    .t3-contact-hero,
    .t3-contact-channels,
    .t3-contact-guidance,
    .t3-contact-operational,
    .t3-contact-location,
    .t3-contact-trust,
    .t3-contact-final,
    .t3-services-editorial,
    .t3-services-primary,
    .t3-services-benefits,
    .t3-services-process,
    .t3-services-proof,
    .t3-services-cta,
    .t3-catalog-editorial,
    .t3-catalog-groups,
    .t3-catalog-feature,
    .t3-catalog-guidance,
    .t3-catalog-benefits,
    .t3-catalog-cta,
    .t3-about-editorial,
    .t3-origin-story,
    .t3-mission-vision,
    .t3-values-section,
    .t3-work-philosophy,
    .t3-about-signals,
    .t3-brand-statement,
    .t3-about-cta,
    .t3-trust-signals,
    .t3-trust-context,
    .t3-trust-faq,
    .t3-trust-impact,
    .t3-trust-cta {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .t3-topbar-inner {
        min-height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .t3-brand {
        align-items: flex-start;
    }

    .t3-nav .t3-btn {
        margin-left: 0;
    }

    .t3-section-title,
    .t3-hero-open-title {
        font-size: 30px;
        line-height: 1.12;
    }

    .t3-strip-title {
        font-size: 24px;
    }

    .t3-section-text,
    .t3-hero-open-text,
    .t3-about-body-text,
    .t3-big-quote {
        font-size: 16px;
    }

    .t3-hero-open-signals,
    .t3-trust-strip-grid,
    .t3-impact-grid,
    .t3-feature-grid,
    .t3-services-grid,
    .t3-services-primary-grid,
    .t3-values-list,
    .t3-catalog-groups-grid,
    .t3-trust-signals .t3-trust-grid,
    .t3-contact-channels-grid,
    .t3-process-layout,
    .t3-origin-points {
        grid-template-columns: 1fr;
    }

    .t3-contact-band-actions,
    .t3-cta-actions,
    .t3-card-actions,
    .t3-hero-open-actions {
        flex-direction: column;
    }

    .btn-t3,
    .t3-btn {
        width: 100%;
    }

    .t3-footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}