/* Gemba Consultora — Sitio web por pestañas */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

[id] {
    scroll-margin-top: 80px;
}

.page-servicios {
    --svc-navy: #1a2d5e;
    --svc-navy-dark: #0f1f3d;
    --svc-blue: #4a7fd4;
    --svc-blue-light: #6b9ae8;
    --svc-blue-pale: #e8eef8;
    --svc-orange: #e8913a;
    --svc-purple: #7c5cbf;
    --svc-green: #5a9e6f;
    --svc-text: #2c3e50;
    --svc-text-light: #5a6a7e;
    --svc-white: #ffffff;
    --svc-gray-bg: #f0f3f8;
    font-family: 'Montserrat', sans-serif;
    background: var(--svc-white);
    color: var(--svc-text);
}

/* Nav */
.svc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--svc-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.svc-nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.svc-nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    flex: 1;
    justify-content: center;
    margin: 0 16px;
}

.svc-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 1.5px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.svc-nav-links a:hover {
    color: var(--svc-white);
}

.svc-nav-links li.active a {
    color: var(--svc-white);
    border-bottom-color: var(--svc-white);
}

.svc-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--svc-navy);
    color: var(--svc-white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 24px;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.svc-nav-cta:hover {
    background: var(--svc-blue);
}

.svc-icon-chat {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.svc-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.svc-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--svc-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .svc-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
}

body.nav-open .svc-hamburger span:nth-child(2) {
    opacity: 0;
}

body.nav-open .svc-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Paneles / pestañas */
.page-panel {
    display: none !important;
}

.page-panel.is-active,
.page-panel:not([hidden]).is-active {
    display: block !important;
    animation: pageFadeIn 0.35s ease;
}

.page-panel[hidden] {
    display: none !important;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.svc-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    background-color: var(--svc-navy-dark);
    background-image: url('../fotos/hero-inicio-mat.jpg?v=1');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.svc-hero--home {
    min-height: 88vh;
    padding: 140px 5% 100px;
}

.svc-hero--page {
    min-height: 360px;
    padding: 120px 5% 70px;
}

.svc-hero-brand {
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    font-weight: 800;
    color: var(--svc-white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.svc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.svc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--svc-white);
    color: var(--svc-navy);
    border: 2px solid var(--svc-white);
    transition: background 0.3s ease, color 0.3s ease;
}

.svc-hero-btn:hover {
    background: transparent;
    color: var(--svc-white);
}

.svc-hero-btn--ghost {
    background: transparent;
    color: var(--svc-white);
}

.svc-hero-btn--ghost:hover {
    background: var(--svc-white);
    color: var(--svc-navy);
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 31, 61, 0.78) 0%, rgba(15, 31, 61, 0.42) 48%, rgba(15, 31, 61, 0.18) 100%);
}

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

.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 22px;
}

.svc-breadcrumb a {
    color: #8bb4f0;
    text-decoration: none;
}

.svc-breadcrumb a:hover {
    text-decoration: underline;
}

.svc-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.85);
}

.svc-hero-title {
    font-size: clamp(2.1rem, 4.8vw, 3.15rem);
    font-weight: 800;
    color: var(--svc-white);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.svc-hero-highlight {
    color: #8bb4f0;
}

.svc-hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    font-weight: 400;
}

/* Secciones comunes */
.svc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.svc-section-label {
    color: var(--svc-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.svc-section-title {
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    font-weight: 700;
    color: var(--svc-navy);
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.svc-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--svc-orange);
    border-radius: 2px;
}

.svc-section-title--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Cards servicios */
.svc-services {
    padding: 80px 5%;
    background: var(--svc-white);
}

.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.svc-card {
    background: var(--svc-white);
    border: 1px solid #e4e9f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-card:hover {
    box-shadow: 0 8px 30px rgba(26, 45, 94, 0.12);
    transform: translateY(-4px);
}

.svc-card-image-wrap {
    position: relative;
    height: 175px;
    overflow: visible;
    z-index: 1;
}

.svc-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-card-icon {
    position: absolute;
    bottom: -36px;
    left: 20px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--svc-white);
    z-index: 2;
}

.svc-card-icon svg {
    width: 34px;
    height: 34px;
}

.svc-card-icon svg path,
.svc-card-icon svg rect,
.svc-card-icon svg circle {
    fill: none;
    stroke: #fff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-card-icon--blue svg path:first-child {
    fill: #fff;
    stroke: none;
}

.svc-card-icon--blue svg .svc-icon-check {
    fill: none;
    stroke: var(--svc-blue);
    stroke-width: 2.2;
}

.svc-card-icon--green svg path,
.svc-card-icon--green svg circle {
    fill: #fff;
    stroke: none;
}

.svc-card-icon--green svg {
    width: 36px;
    height: 28px;
}

.svc-card-icon--purple { background: var(--svc-purple); }
.svc-card-icon--blue { background: var(--svc-blue); }
.svc-card-icon--green { background: var(--svc-green); }
.svc-card-icon--orange { background: var(--svc-orange); }

.svc-card-body {
    padding: 52px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--svc-navy);
    margin-bottom: 12px;
}

.svc-card-body p {
    font-size: 0.8rem;
    color: var(--svc-text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.svc-card-list {
    list-style: none;
    margin-bottom: 18px;
    flex: 1;
}

.svc-card-list li {
    font-size: 0.75rem;
    color: var(--svc-text-light);
    padding: 4px 0 4px 14px;
    position: relative;
    line-height: 1.5;
}

.svc-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--svc-blue);
    font-weight: 700;
}

.svc-card-list--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 8px;
}

.svc-card-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--svc-blue);
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.svc-card-link:hover {
    color: var(--svc-navy);
}

/* Clientes carousel */
.svc-clients {
    padding: 60px 2%;
    background: var(--svc-white);
    border-top: 1px solid #e4e9f0;
}

.svc-clients-title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--svc-blue);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 48px;
    padding: 0 3%;
}

.svc-clients-carousel-wrap {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.svc-carousel-btn {
    flex-shrink: 0;
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d0d8e4;
    background: var(--svc-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.svc-carousel-btn:hover {
    background: var(--svc-blue-pale);
    border-color: var(--svc-blue);
}

.svc-carousel-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--svc-text-light);
}

.svc-clients-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 12px 0;
}

.svc-clients-track::-webkit-scrollbar {
    display: none;
}

.svc-client-item {
    flex: 0 0 280px;
    width: 280px;
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid #e4e9f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svc-client-item:last-child {
    border-right: none;
}

.svc-client-logo {
    margin-bottom: 20px;
    width: 220px;
    height: 128px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.svc-client-logo img {
    width: 220px;
    height: 128px;
    object-fit: contain;
    object-position: center;
    display: block;
    image-rendering: auto;
    -webkit-user-drag: none;
}

/* Logos horizontales: compensar proporción para igualar peso visual */
.svc-client-logo img.svc-logo-wide {
    transform: scale(1.12);
}

.svc-client-item p {
    font-size: 0.8rem;
    color: var(--svc-text);
    line-height: 1.5;
    max-width: 240px;
}

/* Situaciones */
.svc-situaciones {
    padding: 80px 5%;
    background: #f0f4f8;
}

.svc-situaciones-title,
.svc-metodologia-title {
    text-align: center;
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    font-weight: 700;
    color: #4a7bc7;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 52px;
}

.svc-situaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 40px;
    max-width: 1080px;
    margin: 0 auto;
    list-style: none;
}

.svc-situacion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent;
    padding: 0;
    border: none;
}

.svc-check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6c84d1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 1px;
}

.svc-check-icon svg {
    width: 14px;
    height: 14px;
}

.svc-situacion-item p {
    font-size: 0.95rem;
    color: #2e3a59;
    line-height: 1.45;
    font-weight: 400;
}

/* Metodología */
.svc-metodologia {
    padding: 80px 5%;
    background: var(--svc-white);
}

.svc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.svc-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 0;
    border-top: 2px dotted #b8c2d0;
    z-index: 0;
}

.svc-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.svc-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4a6bc7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.svc-step-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.svc-step-icon svg path {
    fill: currentColor;
}

.svc-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #4a6bc7;
    margin-bottom: 12px;
}

.svc-step p {
    font-size: 0.82rem;
    color: #666666;
    line-height: 1.55;
    max-width: 230px;
    margin: 0 auto;
    font-weight: 400;
}

/* CTA */
.svc-cta {
    background: var(--svc-blue);
    padding: 40px 5%;
}

.svc-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

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

.svc-cta-bubble {
    width: 56px;
    height: 56px;
    fill: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.svc-cta-heading {
    color: var(--svc-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-cta-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 480px;
}

.svc-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--svc-white);
    color: var(--svc-navy);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid var(--svc-white);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.svc-cta-btn:hover {
    background: transparent;
    color: var(--svc-white);
}

.svc-cta-whatsapp {
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.svc-cta-whatsapp:hover {
    transform: scale(1.08);
}

.svc-cta-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: var(--svc-white);
}

/* Footer */
.svc-footer {
    background: var(--svc-navy-dark);
    padding: 60px 5% 30px;
    color: rgba(255, 255, 255, 0.7);
}

.svc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.svc-footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.svc-footer-social {
    display: flex;
    gap: 10px;
}

.svc-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.svc-footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--svc-blue-light);
}

.svc-footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
}

.svc-footer-col h5 {
    color: var(--svc-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.svc-footer-col ul {
    list-style: none;
}

.svc-footer-col ul li {
    margin-bottom: 10px;
}

.svc-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.svc-footer-col ul li a:hover {
    color: var(--svc-blue-light);
}

.svc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
}

.svc-footer-contact svg {
    width: 16px;
    height: 16px;
    fill: var(--svc-blue-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.svc-footer-contact a:hover {
    color: var(--svc-blue-light);
}

.svc-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.svc-footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.svc-footer-legal {
    display: flex;
    gap: 24px;
}

.svc-footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.svc-footer-legal a:hover {
    color: var(--svc-blue-light);
}

/* Inicio — intro y pilares */
.svc-home-intro {
    padding: 80px 5%;
    background: var(--svc-white);
}

.svc-home-intro-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.svc-home-intro-text {
    margin-top: 28px;
    font-size: 1.02rem;
    color: var(--svc-text-light);
    line-height: 1.75;
}

.svc-home-intro-text em {
    font-style: normal;
    font-weight: 700;
    color: var(--svc-navy);
}

.svc-home-pillars {
    padding: 20px 5% 90px;
    background: var(--svc-gray-bg);
}

.svc-pillars-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.svc-pillar-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 8px 4px 16px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.svc-pillar-link:hover {
    border-bottom-color: var(--svc-orange);
    transform: translateY(-2px);
}

.svc-pillar-num {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--svc-blue);
    margin-bottom: 12px;
}

.svc-pillar-link h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--svc-navy);
    margin-bottom: 10px;
}

.svc-pillar-link p {
    font-size: 0.85rem;
    color: var(--svc-text-light);
    line-height: 1.55;
}

/* Sobre Gemba */
.svc-about {
    padding: 80px 5%;
    background: var(--svc-white);
}

.svc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    max-width: 1100px;
    margin: 0 auto;
}

.svc-about-heading {
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    color: var(--svc-navy);
    margin: 10px 0 18px;
    line-height: 1.3;
}

.svc-about-copy p {
    font-size: 0.92rem;
    color: var(--svc-text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.svc-about-gemba {
    padding: 70px 5%;
    background: var(--svc-gray-bg);
}

.svc-about-gemba-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.svc-about-gemba-text {
    margin-top: 28px;
    font-size: 1rem;
    color: var(--svc-text-light);
    line-height: 1.75;
}

.svc-about-founder {
    padding: 80px 5%;
    background: var(--svc-white);
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.svc-about-founder-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
}

.svc-about-founder-photo {
    width: 100%;
    aspect-ratio: 460 / 476;
    overflow: hidden;
}

.svc-about-founder-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.svc-about-credentials {
    list-style: none;
    margin-top: 22px;
}

.svc-about-credentials li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 0.88rem;
    color: var(--svc-text);
    line-height: 1.5;
}

.svc-about-credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--svc-orange);
}

.svc-areas-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-top: 32px;
}

.svc-areas-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--svc-navy);
    letter-spacing: 0.3px;
}

/* Casos de éxito — detalle */
.svc-cases {
    padding: 70px 5% 90px;
    background: var(--svc-gray-bg);
}

.svc-cases-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.svc-case h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--svc-navy);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--svc-orange);
    display: inline-block;
}

.svc-case p {
    font-size: 0.92rem;
    color: var(--svc-text-light);
    line-height: 1.7;
}

/* Contacto */
.svc-contact {
    padding: 80px 5% 100px;
    background: var(--svc-white);
}

.svc-contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.svc-contact-info p {
    font-size: 0.92rem;
    color: var(--svc-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.svc-contact-details {
    list-style: none;
}

.svc-contact-details li {
    margin-bottom: 20px;
}

.svc-contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--svc-blue);
    margin-bottom: 6px;
}

.svc-contact-details a,
.svc-contact-details span:not(.svc-contact-label):not(.svc-contact-social) {
    font-size: 0.95rem;
    color: var(--svc-text);
    text-decoration: none;
}

.svc-contact-details a:hover {
    color: var(--svc-blue);
}

.svc-contact-social {
    display: flex;
    gap: 18px;
}

.svc-contact-social a {
    font-weight: 600;
    color: var(--svc-navy);
}

.svc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.svc-contact-form-intro {
    font-size: 0.88rem;
    color: var(--svc-text-light);
    margin-bottom: 4px;
}

.svc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-field span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--svc-navy);
}

.svc-field input,
.svc-field textarea {
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--svc-text);
    padding: 12px 14px;
    border: 1px solid #d0d8e4;
    border-radius: 6px;
    background: var(--svc-white);
    transition: border-color 0.25s ease;
    resize: vertical;
}

.svc-field input:focus,
.svc-field textarea:focus {
    outline: none;
    border-color: var(--svc-blue);
}

.svc-contact-submit {
    align-self: flex-start;
    margin-top: 8px;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--svc-white);
    background: var(--svc-navy);
    border: none;
    border-radius: 8px;
    padding: 15px 32px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.svc-contact-submit:hover {
    background: var(--svc-blue);
}

/* SVG fills */
.svc-carousel-btn svg path { fill: var(--svc-text-light); }
.svc-cta-bubble path { fill: rgba(255, 255, 255, 0.3); }
.svc-cta-whatsapp svg path { fill: #fff; }
.svc-footer-social svg path { fill: rgba(255, 255, 255, 0.8); }
.svc-footer-contact svg path { fill: var(--svc-blue-light); }
.svc-icon-chat path { fill: currentColor; }

/* Responsive */
@media (max-width: 1100px) {
    .svc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .svc-steps::before {
        display: none;
    }

    .svc-about-founder-inner {
        grid-template-columns: 220px 1fr;
        gap: 32px;
    }
}

@media (max-width: 1100px) {
    .svc-nav-links {
        gap: 12px;
        margin: 0 8px;
    }

    .svc-nav-links a {
        font-size: 0.58rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 900px) {
    .svc-nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--svc-navy-dark);
        padding: 30px 5%;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1200;
        margin: 0;
        justify-content: flex-start;
        flex: none;
    }

    body.nav-open .svc-nav-links {
        display: flex;
    }

    .svc-hamburger {
        display: flex;
    }

    .svc-nav-cta {
        display: none;
    }

    .svc-hero {
        min-height: 380px;
        padding: 100px 5% 60px;
        background-size: 100% 100%;
        background-position: center center;
    }

    .svc-situaciones-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .svc-client-item {
        flex: 0 0 260px;
        width: 260px;
        padding: 8px 18px;
    }

    .svc-about-grid,
    .svc-contact-grid,
    .svc-about-founder-inner {
        grid-template-columns: 1fr;
    }

    .svc-about-founder-photo {
        max-width: 260px;
    }

    .svc-hero--home {
        min-height: 70vh;
        padding: 120px 5% 80px;
    }
}

@media (max-width: 600px) {
    .svc-cards-grid,
    .svc-pillars-grid {
        grid-template-columns: 1fr;
    }

    .svc-situaciones-grid {
        grid-template-columns: 1fr;
    }

    .svc-steps {
        grid-template-columns: 1fr;
    }

    .svc-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .svc-cta-text {
        flex-direction: column;
    }

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

    .svc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .svc-clients {
        padding: 50px 1%;
    }

    .svc-client-item {
        flex: 0 0 240px;
        width: 240px;
    }

    .svc-client-logo {
        width: 200px;
        height: 116px;
    }

    .svc-client-logo img {
        width: 200px;
        height: 116px;
    }
}

