* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --nav-height: 76px;
    --ink: #0f172a; /* Slate 900 for a more premium deep contrast */
    --ink-soft: #334155; /* Slate 700 */
    --muted: #64748b; /* Slate 500 */
    --line: rgba(226, 232, 240, 0.8); /* Slate 200 translucent */
    --surface: #ffffff;
    --surface-soft: #f8fafc; /* Slate 50 */
    --brand: #0284c7; /* Sky 600 - modern vibrant blue */
    --brand-dark: #0369a1; /* Sky 700 */
    --brand-glow: rgba(2, 132, 199, 0.15);
    --blue: #0ea5e9; /* Sky 500 */
    --amber: #f97316; /* Orange 500 */
    --rose: #f43f5e; /* Rose 500 */
    --shadow-sm: 0 8px 30px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface);
    overflow-x: hidden;
    position: relative;
}

/* Typography Headings */
h1, h2, h3, h4, .hero-brand-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
}

/* Background Glow Blobs */
.glow-blob {
    position: absolute;
    width: clamp(300px, 45vw, 600px);
    height: clamp(300px, 45vw, 600px);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: multiply;
    animation: glow-float 20s infinite ease-in-out alternate;
    will-change: transform;
}

.glow-blob-1 {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.glow-blob-2 {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    top: 35%;
    right: -10%;
    animation-delay: -5s;
}

.glow-blob-3 {
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, transparent 70%);
    bottom: 15%;
    left: -5%;
    animation-delay: -10s;
}

@keyframes glow-float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -50px) scale(1.15);
    }
    100% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
}

.nav-inner {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    width: 280px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a,
.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
}

.nav-links a {
    padding: 0 14px;
    color: var(--ink-soft);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    color: var(--brand);
    background: rgba(2, 132, 199, 0.08);
}

.nav-cta {
    padding: 0 18px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.35);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(82svh - var(--nav-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: var(--ink);
}

.hero-media,
.hero-media::after,
.hero-media img {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-media::after {
    content: "";
    display: block;
    background:
        linear-gradient(90deg, rgba(7, 14, 27, 0.92) 0%, rgba(7, 14, 27, 0.76) 44%, rgba(7, 14, 27, 0.3) 100%),
        linear-gradient(180deg, rgba(7, 14, 27, 0.2) 0%, rgba(7, 14, 27, 0.72) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(520px, 600px);
    gap: clamp(20px, 2vw, 32px);
    align-items: center;
    justify-content: space-between;
    padding: 84px 0 64px;
}

.hero-copy {
    max-width: 560px;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 800;
}

.hero .eyebrow,
.cta .eyebrow {
    color: #83ddff;
}

.hero-brand-title {
    display: grid;
    max-width: 520px;
    font-size: 5.8rem;
    line-height: 1.15; /* Giving ample vertical room for text and text-shadows */
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(7, 79, 181, 0.25);
}

.hero-brand-title span {
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-brand-title:hover .hero-brand-ponto {
    transform: translateX(6px) scale(1.01);
}

.hero-brand-title:hover .hero-brand-vagas {
    transform: translateX(-2px) scale(1.01);
}

.hero-brand-ponto {
    background: linear-gradient(135deg, #074fb5 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.1em;
}

.hero-brand-vagas {
    background: linear-gradient(135deg, #ff5f00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -0.22em; /* Cohesive baseline alignment */
    padding-bottom: 0.2em; /* Full space for g descender */
}

.hero-lead {
    max-width: 430px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.18;
}

.hero-lead strong {
    color: #5fd8ff;
    font-weight: 900;
}

.hero-audience {
    display: grid;
    gap: 22px;
    max-width: 470px;
    margin-top: 30px;
}

.hero-audience-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.hero-audience-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5fd8ff;
    font-size: 1.55rem;
}

.hero-audience-item strong {
    display: block;
    color: white;
    font-size: 1.02rem;
    line-height: 1.2;
}

.hero-audience-item strong span {
    color: #5fd8ff;
}

.hero-audience-item p {
    max-width: 340px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    line-height: 1.35;
}

.hero-actions {
    display: grid;
    gap: 12px;
    max-width: 390px;
    margin-top: 34px;
}

.hero-art-gallery {
    position: relative;
    width: min(100%, 420px);
    height: clamp(480px, 84svh, 530px);
    align-self: start;
    justify-self: end;
    margin-top: -48px;
    margin-right: -10px;
}


.hero-art-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(7, 79, 156, 0.98), rgba(2, 18, 50, 0.98));
    box-shadow: 0 28px 78px rgba(2, 12, 28, 0.46);
    transform: translateZ(0);
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-art-slider::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 26%, rgba(7, 14, 27, 0.12) 100%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 62%);
    opacity: 0.52;
}

.hero-art-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: translateX(18px) scale(0.985);
    transition: opacity 0.48s ease, transform 0.48s ease;
    will-change: opacity, transform;
}

.hero-art-slide.is-active {
    z-index: 1;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.hero-art-dots {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 30px;
    display: inline-flex;
    gap: 7px;
}

.hero-art-dots button {
    width: 9px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-art-dots button.is-active {
    width: 24px;
    background: white;
}

.hero-art-control,
.hero-art-pause {
    position: absolute;
    z-index: 4;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    color: white;
    background: rgba(7, 14, 27, 0.56);
    box-shadow: 0 12px 28px rgba(2, 12, 28, 0.28);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-art-control {
    top: 50%;
    transform: translateY(-50%);
}

.hero-art-control-prev {
    left: 14px;
}

.hero-art-control-next {
    right: 14px;
}

.hero-art-pause {
    top: 14px;
    right: 14px;
}

.hero-art-slider.is-paused .hero-art-pause {
    color: var(--ink);
    background: #5fd8ff;
}

.hero-art-slider:hover,
.hero-art-slider:focus-visible {
    border-color: rgba(95, 216, 255, 0.7);
    box-shadow: 0 32px 86px rgba(2, 12, 28, 0.56);
    transform: translateY(-3px);
}

.hero-art-control:hover,
.hero-art-control:focus-visible,
.hero-art-pause:hover,
.hero-art-pause:focus-visible,
.hero-art-dots button:hover,
.hero-art-dots button:focus-visible {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(95, 216, 255, 0.88);
    color: var(--ink);
}

.hero-art-control:hover,
.hero-art-control:focus-visible {
    transform: translateY(-50%) scale(1.05);
}

.hero-art-pause:hover,
.hero-art-pause:focus-visible,
.hero-art-dots button:hover,
.hero-art-dots button:focus-visible {
    transform: scale(1.05);
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    color: var(--ink);
    background: white;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #ecfffb;
}

.btn-jobs {
    color: var(--ink);
    border-color: rgba(95, 216, 255, 0.88);
    background: #5fd8ff;
    box-shadow: 0 14px 36px rgba(5, 174, 232, 0.24);
}

.btn-jobs:hover,
.btn-jobs:focus-visible {
    background: #7ee0ff;
}

.btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.78);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hero-trust span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

.hero-trust i {
    color: #83ddff;
}

.hero-panel {
    align-self: stretch;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    padding: 28px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.panel-header span {
    color: var(--muted);
    font-weight: 700;
}

.panel-header strong {
    color: var(--brand-dark);
    font-size: 0.95rem;
}

.pipeline-list {
    display: grid;
    gap: 18px;
    list-style: none;
}

.pipeline-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.pipeline-list > li > span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--brand-dark);
    background: #e8f5ff;
    font-weight: 900;
}

.pipeline-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 1.02rem;
}

.pipeline-list small {
    color: var(--muted);
    font-size: 0.92rem;
}

.proof-bar {
    position: relative;
    z-index: 2;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 -10px 36px rgba(16, 24, 40, 0.06);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 22px 26px;
    border-left: 1px solid var(--line);
}

.proof-item:last-child {
    border-right: 1px solid var(--line);
}

.proof-item strong {
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.proof-item span {
    color: var(--muted);
    font-weight: 650;
}

.section {
    padding: 92px 0;
}

.section-heading h2,
.contact-info h2 {
    max-width: 760px;
    color: var(--ink);
    font-size: 2.6rem;
    line-height: 1.08;
}

.hero-brand-title,
.hero-lead,
.hero-audience,
.hero-art-gallery,
.hero-art-slider,
.section-heading,
.about-copy,
.insight-panel,
.service-card,
.method-step,
.contact-info,
.contact-form {
    min-width: 0;
}

.section-heading p:not(.eyebrow),
.contact-info > p {
    max-width: 680px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.centered {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.jobs {
    background: var(--surface-soft);
}

.jobs-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.jobs-modal[hidden] {
    display: grid !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.jobs-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.72);
    backdrop-filter: blur(8px);
}

.jobs-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: calc(100svh - 48px);
    overflow-y: auto;
    padding: 34px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jobs-modal[hidden] .jobs-modal-dialog {
    transform: scale(0.95);
}

.jobs-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: white;
    cursor: pointer;
}

.jobs-modal-close:hover,
.jobs-modal-close:focus-visible {
    color: white;
    background: var(--ink);
}

.jobs-modal-layout {
    width: 100%;
}

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-modal[hidden] {
    display: grid !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.privacy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.72);
    backdrop-filter: blur(8px);
}

.privacy-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100svh - 48px);
    overflow-y: auto;
    padding: 34px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.privacy-modal[hidden] .privacy-modal-dialog {
    transform: scale(0.95);
}

.privacy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: white;
    cursor: pointer;
}

.privacy-modal-close:hover,
.privacy-modal-close:focus-visible {
    color: white;
    background: var(--ink);
}

.privacy-modal-layout {
    width: 100%;
}

body.is-modal-open {
    overflow: hidden;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 58px;
    align-items: start;
}

.job-form {
    background: white;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-reminder {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 2px 0 16px;
    color: var(--ink-soft);
    font-weight: 750;
}

.form-reminder i {
    margin-top: 4px;
    color: var(--brand);
}

.form-consent {
    margin: 4px 0 18px;
}

.form-consent label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.45;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--brand-dark);
}

.form-consent input.is-invalid {
    outline: 3px solid rgba(225, 29, 72, 0.22);
    outline-offset: 2px;
}

.form-consent a {
    color: var(--brand-dark);
    font-weight: 800;
}

.about {
    background: var(--surface-soft);
}

.about-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px 64px;
    align-items: start;
}

.about-copy {
    color: var(--ink-soft);
}

.about-copy p + p {
    margin-top: 16px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--ink);
    font-weight: 700;
}

.check-list i {
    margin-top: 4px;
    color: var(--brand);
}

.insight-panel {
    grid-column: 2;
    padding: 32px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.9) 0%, rgba(249, 115, 22, 0.8) 100%);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.panel-label {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    margin-bottom: 16px;
    color: #e8f5ff;
    font-weight: 850;
}

.insight-panel h3 {
    font-size: 1.65rem;
    line-height: 1.18;
}

.insight-panel p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
}

/* Cities Section Styling */
.cities {
    background: var(--surface-soft);
    position: relative;
}

.cities-grid-wrapper {
    margin-top: 40px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.city-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.93rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.2s ease, 
                box-shadow 0.2s ease, 
                background-color 0.2s ease;
}

.city-chip i {
    color: var(--brand);
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.city-chip:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--brand);
    background: white;
    box-shadow: 0 12px 24px rgba(2, 132, 199, 0.12);
}

.city-chip:hover i {
    transform: scale(1.2);
}

.city-chip.is-active {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.city-chip.is-active i {
    color: white;
}

.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    color: var(--brand-dark);
    background: #e8f5ff;
    font-size: 1.2rem;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
    color: #1d4ed8;
    background: #e8efff;
}

.service-card:nth-child(3) .service-icon,
.service-card:nth-child(6) .service-icon {
    color: #9a3412;
    background: #fff4df;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.service-card p {
    color: var(--muted);
}

/* Materials Section Styling */
.materials {
    background: white;
    position: relative;
}

.materials-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.materials-tabs-nav .tab-btn {
    min-height: 40px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.materials-tabs-nav .tab-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(2, 132, 199, 0.05);
}

.materials-tabs-nav .tab-btn.active {
    border-color: transparent;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.material-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.material-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    background: #e8f5ff;
    color: var(--brand-dark);
}

.material-card[data-category="entrevistas"] .material-badge {
    background: #fff4df;
    color: #9a3412;
}

.material-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.material-content h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--ink);
}

.material-content p {
    color: var(--muted);
    font-size: 0.96rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-material {
    width: 100%;
    color: white;
    background: var(--brand-dark);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.btn-material:hover {
    background: var(--ink);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
}

.material-card.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.method {
    background: var(--surface-soft);
}

.method-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 56px;
    align-items: start;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.method-step {
    min-height: 218px;
    padding: 26px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease;
}

.method-step:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.method-step span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: white;
    background: var(--ink);
    font-weight: 900;
}

.method-step h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.method-step p {
    color: var(--muted);
}

.cta {
    padding: 70px 0;
    color: white;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, 0.96), rgba(7, 79, 156, 0.9)),
        var(--ink);
}

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

.cta h2 {
    max-width: 760px;
    font-size: 2.25rem;
    line-height: 1.12;
}

.cta p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.contact {
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.contact-link {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 74px;
    padding: 13px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--ink);
    text-decoration: none;
    background: var(--glass-bg);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease,
                background-color 0.3s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--brand);
    background: white;
    box-shadow: var(--shadow-md);
}

.contact-link i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--brand-dark);
    background: #e8f5ff;
    font-size: 1.1rem;
}

.contact-link span {
    min-width: 0;
    color: var(--muted);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.contact-link strong {
    display: block;
    color: var(--ink);
    font-size: 1rem;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.privacy {
    background: var(--surface-soft);
}

.privacy-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 58px;
    align-items: start;
}

.privacy-copy {
    color: var(--ink-soft);
}

.privacy-copy p + p {
    margin-top: 16px;
}

.privacy-copy a {
    color: var(--brand-dark);
    font-weight: 800;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 1.45rem;
}

.form-header p {
    margin-top: 4px;
    color: var(--muted);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-honeypot[type="checkbox"] {
    width: 0;
    height: 0;
    margin: 0;
}

@keyframes job-form-autofill-start {
    from {
        opacity: 1;
    }

    to {
        opacity: 1;
    }
}

.job-form input:-webkit-autofill {
    animation: job-form-autofill-start 0.01s;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    color: var(--ink);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 136px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(11, 100, 189, 0.13);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: var(--rose);
}

.form-status {
    min-height: 0;
    margin: 0;
    padding: 0;
    font-size: 0.94rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--brand-dark);
    display: none;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.form-status:not(:empty) {
    display: flex;
    margin: 8px 0 20px;
    padding: 12px 16px;
    background: rgba(2, 132, 199, 0.06);
    border-color: rgba(2, 132, 199, 0.18);
    color: var(--brand-dark);
}

.form-status:not(:empty)::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f05a";
    font-size: 1.05rem;
    flex-shrink: 0;
}

.form-status.is-error:not(:empty) {
    background: rgba(244, 63, 94, 0.06);
    border-color: rgba(244, 63, 94, 0.18);
    color: var(--rose);
}

.form-status.is-error:not(:empty)::before {
    content: "\f06a";
}

.mailto-fallback {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: -4px 0 16px;
    padding: 10px 14px;
    border: 1px solid rgba(11, 100, 189, 0.24);
    border-radius: 8px;
    color: var(--brand-dark);
    background: white;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
}

.mailto-fallback[hidden] {
    display: none;
}

.mailto-fallback:hover,
.mailto-fallback:focus-visible {
    border-color: var(--brand-dark);
    background: rgba(11, 100, 189, 0.08);
}

.btn-form {
    width: 100%;
    color: white;
    background: var(--brand-dark);
}

.btn-form:hover,
.btn-form:focus-visible {
    background: var(--ink);
}

.btn-form:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.footer {
    color: rgba(255, 255, 255, 0.78);
    background: #0b1220;
}

.footer-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-actions > a,
.privacy-preferences {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border: 0;
    color: white;
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.footer-actions > a:hover,
.footer-actions > a:focus-visible,
.privacy-preferences:hover,
.privacy-preferences:focus-visible {
    color: #83ddff;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    border-color: rgba(125, 211, 199, 0.58);
    background: rgba(125, 211, 199, 0.12);
}

.privacy-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    width: min(560px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: white;
    box-shadow: var(--shadow-lg);
}

.privacy-banner[hidden] {
    display: none;
}

.privacy-banner strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.privacy-banner p {
    color: var(--muted);
    font-size: 0.94rem;
}

.privacy-banner-actions {
    display: flex;
    gap: 10px;
}

.privacy-banner .btn {
    min-height: 42px;
    padding: 0 16px;
}

.privacy-banner .btn-secondary {
    color: var(--ink);
    border-color: var(--line);
    background: white;
}

.privacy-banner .btn-primary {
    color: white;
    background: var(--brand-dark);
    box-shadow: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.38);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .nav-cta {
        display: none;
    }

    .nav-inner {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        margin-right: 14px;
        margin-left: 14px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 8px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 0 10px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 8px;
        background: white;
        box-shadow: none;
        pointer-events: none;
        transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                    opacity 0.2s ease, 
                    padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                    border-color 0.3s ease, 
                    box-shadow 0.3s ease;
    }

    .nav-links.is-open {
        padding: 10px;
        max-height: 380px;
        opacity: 1;
        border-color: var(--line);
        box-shadow: var(--shadow-sm);
        pointer-events: auto;
    }

    .nav-links a {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-grid,
    .jobs-layout,
    .about-layout,
    .method-layout,
    .privacy-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-panel {
        max-width: 560px;
        min-height: auto;
    }

    .hero-art-gallery {
        width: min(100%, 350px);
        height: clamp(360px, 64svh, 430px);
        justify-self: start;
        margin-top: 0;
        margin-right: 0;
    }

    .insight-panel {
        grid-column: auto;
    }

    .services-grid,
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .container {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        min-height: auto;
    }

    .hero-media::after {
        background:
            linear-gradient(180deg, rgba(7, 14, 27, 0.84) 0%, rgba(7, 14, 27, 0.78) 54%, rgba(7, 14, 27, 0.9) 100%);
    }

    .hero-grid {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        gap: 34px;
        margin-right: 14px;
        margin-left: 14px;
        padding: 66px 0 48px;
    }

    .hero-copy,
    .hero-brand-title,
    .hero-lead,
    .hero-audience,
    .hero-art-gallery {
        width: 100%;
        max-width: calc(100vw - 28px);
    }

    .hero-lead,
    .hero-audience,
    .hero-actions {
        max-width: 34ch;
    }

    .hero-brand-title {
        font-size: 4.3rem;
    }

    .hero-lead {
        font-size: 1.15rem;
    }

    .hero-art-gallery {
        max-width: 34rem;
        height: min(460px, 122vw);
    }

    .hero-audience-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .hero-audience-item i {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }

    .hero-panel {
        display: none;
    }

    .proof-item {
        min-height: 106px;
        padding: 20px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading h2,
    .contact-info h2 {
        font-size: 2.05rem;
        line-height: 1.12;
    }

    .services-grid,
    .form-grid-2,
    .method-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta h2 {
        font-size: 1.9rem;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 26px 0;
    }

    .footer-actions,
    .privacy-banner,
    .privacy-banner-actions {
        width: 100%;
    }

    .footer-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .privacy-banner {
        grid-template-columns: minmax(0, 1fr);
    }

    .privacy-banner-actions {
        justify-content: stretch;
    }

    .privacy-banner .btn {
        flex: 1;
    }

    .jobs-modal-dialog {
        padding: 28px 22px 22px;
    }

    .privacy-modal-dialog {
        padding: 28px 22px 22px;
    }
}

@media (max-width: 520px) {
    .brand-logo {
        width: 210px;
    }

    .hero-brand-title {
        font-size: 3.35rem;
    }

    .hero-art-gallery {
        height: min(430px, 122vw);
        max-width: 100%;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta .btn {
        width: 100%;
    }

    .hero-trust {
        display: none;
    }

    .hero-actions .btn,
    .cta .btn {
        justify-content: center;
    }
    .proof-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .proof-item,
    .proof-item:last-child {
        border-right: 1px solid var(--line);
    }

    .service-card,
    .method-step,
    .insight-panel,
    .contact-form {
        padding: 22px;
    }

    .contact-link {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .contact-link i {
        width: 42px;
        height: 42px;
    }

    .privacy-banner {
        right: 14px;
        bottom: 14px;
        width: calc(100vw - 28px);
    }

    .privacy-banner-actions {
        flex-direction: column;
    }

    .jobs-modal {
        padding: 14px;
    }

    .privacy-modal {
        padding: 14px;
    }

    .jobs-modal-dialog {
        max-height: calc(100svh - 28px);
    }

    .privacy-modal-dialog {
        max-height: calc(100svh - 28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .hero-art-slide {
        transition: none !important;
    }
}
