:root {
  --blue: #0a18bb;
  --blue-deep: #07116f;
  --blue-soft: #eef0ff;
  --yellow: #f09e00;
  --yellow-soft: #fff4d8;
  --gray: #738e9a;
  --ink: #11183f;
  --muted: #586174;
  --white: #ffffff;
  --surface: #f7f8fc;
  --shadow: 0 24px 70px rgba(7, 17, 111, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; background: var(--yellow); color: var(--blue-deep); border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(18px); border-bottom: 3px solid var(--yellow); }
.nav-shell { width: min(1180px, calc(100% - 40px)); min-height: 84px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { width: 172px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.6rem; font-size: .95rem; font-weight: 700; color: var(--blue-deep); }
.main-nav a { position: relative; text-decoration: none; padding: .65rem 0; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .35rem; height: 2px; background: var(--yellow); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.main-nav a[aria-current="page"]:not(.nav-cta)::after { right: 0; height: 3px; }
.nav-cta { padding: .75rem 1.15rem !important; color: var(--white); background: var(--blue); border-radius: 999px; }
.nav-cta[aria-current="page"] { background: var(--yellow); color: var(--blue-deep); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--blue); font: inherit; font-weight: 800; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s ease; }
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

.hero { position: relative; width: min(1240px, calc(100% - 40px)); min-height: 520px; margin: 26px auto 70px; display: block; border-radius: 36px; overflow: hidden; background: var(--blue); box-shadow: var(--shadow); }
.hero-copy { position: relative; z-index: 3; width: 56%; height: 100%; padding: clamp(2.5rem, 4.5vw, 4.5rem); display: flex; flex-direction: column; justify-content: center; color: var(--white); }
.hero-copy::after { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; bottom: -80px; border: 28px solid rgba(240,158,0,.22); border-radius: 50%; }
.hero h1, .hero h2 { max-width: 680px; margin: .75rem 0 1rem; color: var(--white); font-size: clamp(2.55rem, 4vw, 4.35rem); line-height: .98; letter-spacing: -.055em; }
.hero p { margin: 0 0 2rem; font-size: clamp(1.15rem, 2vw, 1.35rem); color: #dfe3ff; }
.hero-visual { position: absolute; inset: 0; min-height: 0; height: 100%; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,111,.14) 0%, transparent 56%), linear-gradient(0deg, rgba(7,17,111,.22), transparent 52%); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.hero-note { position: absolute; z-index: 2; right: 28px; bottom: 28px; display: grid; padding: 1rem 1.25rem; color: var(--blue-deep); background: var(--yellow); border-radius: 16px; box-shadow: 0 14px 35px rgba(7,17,111,.25); }
.hero-note span { font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-note strong { font-size: 1.05rem; }
.hero-carousel { position: relative; width: min(1240px, calc(100% - 40px)); height: 520px; margin: 26px auto 70px; overflow: hidden; border-radius: 36px; box-shadow: var(--shadow); background: var(--blue); }
.hero-carousel .hero { width: 100%; height: 100%; min-height: 0; margin: 0; border-radius: 0; box-shadow: none; }
.carousel-slide { display: none; }
.carousel-slide.is-active { display: grid; animation: carousel-in .45s ease both; }
.carousel-controls { position: absolute; z-index: 5; left: 50%; bottom: 24px; display: flex; align-items: center; gap: .65rem; padding: .45rem .55rem; background: rgba(7,17,111,.76); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; backdrop-filter: blur(10px); transform: translateX(-50%); }
.carousel-arrow { display: grid; place-items: center; width: 36px; height: 36px; padding: 0; color: var(--blue-deep); background: var(--yellow); border: 0; border-radius: 50%; font: inherit; font-size: 1.15rem; font-weight: 900; cursor: pointer; }
.carousel-dots { display: flex; gap: .45rem; }
.carousel-dot { width: 9px; height: 9px; padding: 0; background: rgba(255,255,255,.48); border: 0; border-radius: 50%; cursor: pointer; }
.carousel-dot.is-active { width: 25px; background: var(--yellow); border-radius: 999px; }
@keyframes carousel-in { from { opacity: .35; } to { opacity: 1; } }
.eyebrow { display: block; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: var(--yellow); }
.button { display: inline-flex; width: fit-content; align-items: center; justify-content: center; padding: .9rem 1.4rem; border-radius: 12px; font-weight: 900; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--blue-deep); background: var(--yellow); box-shadow: 0 10px 30px rgba(240,158,0,.22); }
.button-yellow { color: var(--blue-deep); background: var(--yellow); }
.button-blue { color: var(--white); background: var(--blue); box-shadow: 0 10px 30px rgba(10,24,187,.18); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.62); }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.journey { position: relative; width: min(1180px, calc(100% - 40px)); min-height: 500px; margin: 0 auto 110px; border-radius: var(--radius); overflow: hidden; }
.journey > img { width: 100%; height: 540px; object-fit: cover; }
.journey::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,111,.9) 0%, rgba(10,24,187,.72) 38%, transparent 74%); }
.journey-card { position: absolute; z-index: 1; left: clamp(2rem, 6vw, 5rem); top: 50%; max-width: 520px; color: var(--white); transform: translateY(-50%); }
.journey-card h2 { margin: .6rem 0 1rem; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.02; letter-spacing: -.04em; }
.journey-card p { color: #e7e9ff; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: .5rem; align-items: center; margin-top: .8rem; color: var(--yellow); font-weight: 900; text-decoration: none; }

.section { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-image { position: relative; padding: 0 24px 24px 0; }
.about-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px 90px 12px 90px; box-shadow: var(--shadow); }
.image-accent { position: absolute; right: 0; bottom: 0; width: 55%; height: 55%; background: var(--yellow); border-radius: 20px 20px 10px 20px; }
.section-copy h2, .section-heading h2, .vigilance h2 { margin: .55rem 0 1.3rem; font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.045em; color: var(--blue-deep); }
.section-copy p { color: var(--muted); font-size: 1.08rem; }
.section-heading { max-width: 720px; margin-bottom: 2.5rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }

.reasons { width: min(1180px, calc(100% - 40px)); }
.reason-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.reason-card { overflow: hidden; min-height: 420px; padding: 0 1.8rem 2rem; display: grid; grid-template-rows: 215px auto auto 1fr; align-content: start; color: var(--white); background: var(--blue); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; box-shadow: 0 18px 44px rgba(7,17,111,.14); }
.reason-card img { width: 100%; height: 190px; margin: 12px auto 6px; padding: 1rem; object-fit: contain; filter: brightness(0) saturate(100%) invert(67%) sepia(92%) saturate(2035%) hue-rotate(359deg) brightness(98%) contrast(102%); transition: transform .25s ease; }
.reason-icon { display: grid; place-items: center; min-width: 0; }
.reason-card:hover img { transform: translateY(-4px); }
.reason-card.featured { color: var(--blue-deep); background: var(--yellow); transform: none; }
.reason-card.featured img { filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(4947%) hue-rotate(239deg) brightness(67%) contrast(115%); }
.reason-number { margin-top: .3rem; color: var(--yellow); font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.reason-card.featured .reason-number { color: var(--blue); }
.reason-card h3 { margin: .35rem 0 .45rem; font-size: 1.6rem; line-height: 1.15; }
.reason-card p { margin: 0; color: #e8ebff; }
.reason-card.featured p { color: var(--blue-deep); }
.section-action { display: flex; justify-content: center; padding-top: 2rem; }

.vigilance { width: min(1180px, calc(100% - 40px)); padding: 0; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; color: var(--white); background: var(--blue); border-radius: 32px; box-shadow: var(--shadow); }
.vigilance-copy { padding: clamp(3rem, 6vw, 6rem); }
.vigilance h2 { color: var(--white); }
.vigilance p { max-width: 650px; margin-bottom: 2rem; color: #e4e7ff; font-size: 1.08rem; }
.vigilance-visual { min-height: 500px; background: var(--yellow-soft); }
.vigilance-visual img { width: 100%; height: 100%; object-fit: cover; }

.clients { width: min(1180px, calc(100% - 40px)); padding-block: 120px; }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.client-grid img { width: 100%; height: 120px; padding: 1.6rem; object-fit: contain; filter: grayscale(1); opacity: .62; background: var(--surface); border: 1px solid #e8eaf3; border-radius: 16px; transition: filter .2s ease, opacity .2s ease, transform .2s ease; }
.client-grid img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-3px); }

.site-footer { color: var(--white); background: var(--blue-deep); }
.footer-main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 42px; display: grid; grid-template-columns: 1.1fr 1.5fr .7fr .75fr; gap: 3rem; align-items: start; }
.footer-brand img { width: 170px; padding: .65rem; background: var(--white); border-radius: 10px; }
.footer-brand p { max-width: 240px; color: #dfe2ff; }
.footer-label { display: block; margin-bottom: .65rem; color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a { color: var(--white); text-decoration: none; }
.footer-contact a:hover { color: var(--yellow); }
.claims img { width: 150px; padding: .6rem; background: var(--white); border-radius: 12px; }
.footer-bottom { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 34px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.18); color: #dfe2ff; }
.footer-bottom p { margin: 0; }
.social-links { display: flex; gap: .6rem; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--blue-deep); background: var(--yellow); font-weight: 900; text-decoration: none; }
.whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; place-items: center; width: 58px; height: 58px; color: var(--white); background: #19b857; border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.22); font-size: .78rem; font-weight: 900; text-decoration: none; }

/* Páginas interiores */
.page-hero { position: relative; isolation: isolate; width: min(1240px, calc(100% - 40px)); min-height: 430px; margin: 26px auto 0; display: flex; align-items: end; overflow: hidden; color: var(--white); background-color: var(--blue); background-position: center; background-size: cover; border-radius: 36px; box-shadow: var(--shadow); }
.page-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7,17,111,.97) 0%, rgba(10,24,187,.82) 48%, rgba(10,24,187,.28) 100%); }
.page-hero::after { content: ""; position: absolute; z-index: -1; right: -70px; bottom: -100px; width: 280px; height: 280px; border: 42px solid rgba(240,158,0,.3); border-radius: 50%; }
.page-hero-about { background-image: url('images/quienes-somos.jpg'); }
.page-hero-services { background-image: url('images/distribucion.jpg'); }
.page-hero-vigilance { background-image: url('images/farmacovigilancia.png'); background-position: 70% 48%; }
.page-hero-contact { background-image: url('images/especialistas.jpg'); }
.page-hero-copy { max-width: 780px; padding: clamp(3rem, 7vw, 6rem); }
.page-hero h1 { margin: .5rem 0 .75rem; font-size: clamp(3rem, 7vw, 6rem); line-height: .95; letter-spacing: -.055em; text-transform: capitalize; }
.page-hero p { max-width: 680px; margin: 0; color: #e5e8ff; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.inner-about { padding-bottom: 72px; }
.brand-band { width: min(1120px, calc(100% - 40px)); margin: 0 auto 30px; padding: 2.3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; color: var(--white); background: var(--blue); border-radius: 24px; box-shadow: var(--shadow); }
.brand-band div { padding: 1rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.22); }
.brand-band div:last-child { border-right: 0; }
.brand-band span { display: block; color: var(--yellow); font-size: clamp(1.6rem, 3vw, 2.55rem); font-weight: 900; line-height: 1.1; }
.brand-band p { margin: .45rem 0 0; color: #e4e7ff; }
.commitment { padding-top: 85px; }
.commitment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.commitment-grid article { padding: 2rem; text-align: center; background: var(--surface); border: 1px solid #e7eaf5; border-radius: 22px; }
.commitment-grid img { width: 100%; height: 150px; margin: 0 auto 1rem; padding: .5rem; object-fit: contain; filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(4947%) hue-rotate(239deg) brightness(67%) contrast(115%); }
.commitment-grid h3 { margin: 0 0 .45rem; color: var(--blue-deep); font-size: 1.35rem; }
.commitment-grid p { margin: 0; color: var(--muted); }
.company-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.story-visual { padding: clamp(1.5rem, 4vw, 3.5rem); background: var(--yellow-soft); border-radius: 32px 90px 32px 32px; box-shadow: var(--shadow); }
.story-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.differences { width: min(1180px, calc(100% - 40px)); padding-top: 75px; }
.difference-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.difference-grid article { min-height: 380px; padding: 1.7rem; display: flex; flex-direction: column; background: var(--surface); border: 1px solid #e7eaf5; border-radius: 22px; }
.difference-grid article:nth-child(even) { color: var(--white); background: var(--blue); border-color: var(--blue); }
.difference-icon { height: 145px; margin-bottom: 1.15rem; display: grid; place-items: center; }
.difference-icon img { width: 100%; height: 135px; object-fit: contain; filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(4947%) hue-rotate(239deg) brightness(67%) contrast(115%); }
.difference-grid article:nth-child(even) .difference-icon img { filter: brightness(0) saturate(100%) invert(67%) sepia(92%) saturate(2035%) hue-rotate(359deg) brightness(98%) contrast(102%); }
.difference-grid h3 { margin: 0 0 .55rem; color: var(--blue-deep); font-size: 1.45rem; }
.difference-grid article:nth-child(even) h3 { color: var(--yellow); }
.difference-grid p { margin: 0; color: var(--muted); }
.difference-grid article:nth-child(even) p { color: #e8ebff; }
.purpose-grid { width: min(1180px, calc(100% - 40px)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
.purpose-card { position: relative; overflow: hidden; min-height: 420px; padding: clamp(2.2rem, 5vw, 4rem); color: var(--white); background: var(--blue); border-radius: 28px; box-shadow: var(--shadow); }
.purpose-card.yellow { color: var(--blue-deep); background: var(--yellow); }
.purpose-card h2 { margin: .45rem 0 1rem; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1; }
.purpose-card p { position: relative; z-index: 1; margin: 0; color: #e8ebff; font-size: 1.05rem; }
.purpose-card.yellow p { color: var(--blue-deep); }
.purpose-number { position: absolute; right: 1.5rem; bottom: -2.8rem; color: rgba(255,255,255,.1); font-size: 11rem; font-weight: 900; line-height: 1; }
.purpose-card.yellow .purpose-number { color: rgba(7,17,111,.09); }
.values { padding-top: 70px; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.values-grid article { padding: 2rem; background: var(--white); border: 1px solid #e3e6f2; border-left: 5px solid var(--yellow); border-radius: 18px; box-shadow: 0 12px 30px rgba(7,17,111,.07); }
.values-grid span { color: var(--yellow); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.values-grid h3 { margin: .3rem 0 .55rem; color: var(--blue-deep); font-size: 1.45rem; }
.values-grid p { margin: 0; color: var(--muted); }
.service-intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.service-photo { position: relative; }
.service-photo::after { content: ""; position: absolute; right: -18px; bottom: -18px; z-index: -1; width: 55%; height: 62%; background: var(--yellow); border-radius: 20px; }
.service-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.inner-reasons { padding-top: 70px; }
.vigilance-detail { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.vigilance-article h2, .contact-intro h2 { margin: .5rem 0 1.4rem; color: var(--blue-deep); font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.045em; }
.vigilance-article p { color: var(--muted); font-size: 1.08rem; }
.vigilance-article .source { color: var(--blue); font-size: .9rem; font-weight: 900; }
.vigilance-image { padding: 2rem; background: var(--yellow); border-radius: 32px; box-shadow: var(--shadow); }
.vigilance-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(4947%) hue-rotate(239deg) brightness(67%) contrast(115%); }
.report-section { width: min(1120px, calc(100% - 40px)); margin: 0 auto 110px; }
.report-card { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem); color: var(--white); background: var(--blue); border-radius: 30px; box-shadow: var(--shadow); }
.report-card::after { content: ""; position: absolute; right: -80px; top: -100px; width: 260px; height: 260px; border: 40px solid rgba(240,158,0,.28); border-radius: 50%; }
.report-card h2 { position: relative; z-index: 1; max-width: 850px; margin: .55rem 0 1.2rem; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.05; }
.report-card p { position: relative; z-index: 1; max-width: 850px; color: #e5e8ff; font-size: 1.06rem; }
.report-card a:not(.button) { color: var(--yellow); font-weight: 800; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.contact-intro p { color: var(--muted); font-size: 1.08rem; }
.contact-intro > img { width: 100%; margin-top: 2rem; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 26px 70px 26px 26px; box-shadow: var(--shadow); }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.contact-card { min-height: 250px; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--blue); border-radius: 24px; box-shadow: 0 16px 38px rgba(7,17,111,.12); }
.contact-card.yellow { color: var(--blue-deep); background: var(--yellow); }
.contact-card.light { color: var(--blue-deep); background: var(--surface); border: 1px solid #e7eaf5; }
.contact-kicker { color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.yellow .contact-kicker, .light .contact-kicker { color: var(--blue); }
.contact-card h3 { margin: .35rem 0 .7rem; font-size: 1.6rem; }
.contact-card p { margin: 0 0 .6rem; }
.contact-card a { text-decoration: none; }
.text-link.dark { color: var(--blue-deep); }
.contact-social { display: flex; flex-wrap: wrap; gap: .55rem; }
.contact-social a { padding: .45rem .7rem; color: var(--blue-deep); background: var(--yellow); border-radius: 999px; font-size: .9rem; font-weight: 900; }
.claims-large img { width: 180px; max-height: 100px; margin-top: .75rem; object-fit: contain; }

/* Formulario de farmacovigilancia */
.form-hero { width: min(1180px, calc(100% - 40px)); margin: 26px auto 0; padding: clamp(2.8rem, 7vw, 5.5rem); color: var(--white); background: linear-gradient(120deg, var(--blue-deep), var(--blue)); border-radius: 34px; box-shadow: var(--shadow); }
.form-hero > div { max-width: 880px; }
.form-hero h1 { margin: .55rem 0 1rem; font-size: clamp(2.65rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.05em; }
.form-hero p { max-width: 720px; margin: 0; color: #e4e7ff; font-size: 1.15rem; }
.back-link { display: inline-flex; margin-bottom: 2rem; color: var(--yellow); font-weight: 900; text-decoration: none; }
.form-shell { width: min(980px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 110px; }
.report-form { display: grid; gap: 22px; }
.required-note { margin: 0; color: var(--muted); text-align: right; }
.required-note span, .report-form label b { color: var(--yellow); }
.report-form fieldset { margin: 0; padding: clamp(1.5rem, 4vw, 2.6rem); background: var(--white); border: 1px solid #e2e6f1; border-radius: 24px; box-shadow: 0 14px 34px rgba(7,17,111,.07); }
.report-form legend { padding: 0 .8rem 0 0; color: var(--blue-deep); font-size: 1.4rem; font-weight: 900; }
.report-form legend span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-right: .55rem; color: var(--blue-deep); background: var(--yellow); border-radius: 50%; font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.15rem; padding-top: .8rem; }
.report-form label { display: grid; gap: .45rem; color: var(--blue-deep); font-weight: 800; }
.report-form input, .report-form select, .report-form textarea { width: 100%; padding: .9rem 1rem; color: var(--ink); background: var(--surface); border: 1px solid #cfd6e1; border-radius: 12px; font: inherit; font-weight: 500; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.report-form textarea { resize: vertical; min-height: 145px; }
.report-form input:focus, .report-form select:focus, .report-form textarea:focus { outline: 0; background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10,24,187,.1); }
.field-wide { grid-column: 1 / -1; }
.privacy-note { padding: 1.5rem; color: var(--blue-deep); background: var(--yellow-soft); border-left: 5px solid var(--yellow); border-radius: 14px; }
.privacy-note p { margin: .45rem 0 0; color: var(--muted); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.report-form button { border: 0; cursor: pointer; font: inherit; }
.form-status { margin: 0; color: var(--blue-deep); font-weight: 800; }

/* Libro de Reclamaciones */
.claims-hero { display: grid; grid-template-columns: 1fr 240px; gap: 3rem; align-items: center; }
.claims-hero-copy { max-width: 820px; }
.claims-hero-mark { padding: 1.5rem; background: var(--white); border-radius: 24px; box-shadow: 0 18px 45px rgba(0,0,0,.16); }
.claims-hero-mark img { width: 100%; height: 150px; object-fit: contain; }
.claim-guidance { width: min(980px, calc(100% - 40px)); margin: 46px auto 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.claim-guidance article { padding: 1.35rem 1.55rem; background: var(--surface); border: 1px solid #e2e6f1; border-radius: 16px; }
.claim-guidance article:first-child { border-left: 5px solid var(--blue); }
.claim-guidance article:last-child { border-left: 5px solid var(--yellow); }
.claim-guidance strong { color: var(--blue-deep); font-size: 1.12rem; }
.claim-guidance p { margin: .25rem 0 0; color: var(--muted); }
.claims-form-shell { padding-top: 42px; }
.claim-grid { align-items: end; }
.report-form .check-field { margin-top: 1.25rem; display: flex; align-items: flex-start; gap: .75rem; color: var(--ink); font-weight: 650; }
.report-form .check-field input { flex: 0 0 auto; width: 20px; height: 20px; margin: .15rem 0 0; padding: 0; accent-color: var(--blue); }
.claim-consents { padding: 1.6rem; background: var(--yellow-soft); border-left: 5px solid var(--yellow); border-radius: 16px; }
.claim-consents .check-field { margin: 0; }
.claim-consents p { margin: 1rem 0; color: var(--muted); }
.button-outline { color: var(--blue-deep); background: var(--white); border: 2px solid var(--blue) !important; }
.claim-ready .claims-hero, .claim-ready .claim-guidance { display: none; }

@media print {
  .site-header, .site-footer, .whatsapp, .form-hero, .claim-guidance, .form-actions, .required-note { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .form-shell { width: 100%; padding: 0; }
  .report-form { gap: 10px; }
  .report-form fieldset { padding: 14px; break-inside: avoid; box-shadow: none; border: 1px solid #888; }
  .report-form input, .report-form select, .report-form textarea { padding: 7px; color: #000; background: #fff; border: 1px solid #777; }
  .privacy-note, .claim-consents { background: #fff; border: 1px solid #888; }
}

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 900px) {
  .nav-shell { min-height: 74px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: .8rem; padding: .75rem; }
  .main-nav { position: absolute; top: calc(100% + 3px); left: 0; right: 0; display: none; padding: 1rem 20px 1.25rem; flex-direction: column; align-items: stretch; gap: .25rem; background: var(--white); box-shadow: 0 18px 30px rgba(7,17,111,.12); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .8rem 1rem; }
  .nav-cta { text-align: center; }
  .hero-carousel { height: 560px; }
  .hero { min-height: 0; }
  .hero-copy { width: 64%; min-height: 0; }
  .hero-visual { min-height: 0; }
  .journey-card { right: 2rem; }
  .about { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-card, .reason-card.featured { min-height: 0; grid-template-rows: 190px auto auto 1fr; transform: none; }
  .vigilance { grid-template-columns: 1fr; }
  .vigilance-visual { min-height: 360px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: 360px; }
  .brand-band { grid-template-columns: 1fr; }
  .brand-band div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .brand-band div:last-child { border-bottom: 0; }
  .commitment-grid { grid-template-columns: 1fr; }
  .service-intro, .vigilance-detail, .contact-layout, .company-story, .purpose-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px) {
  .nav-shell, .hero, .hero-carousel, .journey, .section, .reasons, .vigilance, .clients, .footer-main, .footer-bottom, .page-hero, .brand-band, .report-section, .form-hero, .form-shell { width: min(100% - 28px, 1180px); }
  .brand img { width: 145px; }
  .menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .hero { margin-top: 14px; margin-bottom: 52px; border-radius: 22px; }
  .hero-copy { width: 100%; min-height: 0; padding: 2rem 1.65rem 5rem; }
  .hero h1, .hero h2 { font-size: clamp(2.05rem, 10vw, 2.75rem); }
  .hero p { margin-bottom: 1.2rem; font-size: 1rem; }
  .hero-visual { min-height: 0; }
  .hero-visual > img { object-position: right center; }
  .hero-visual::after { background: linear-gradient(90deg, rgba(7,17,111,.96) 0%, rgba(7,17,111,.82) 60%, rgba(7,17,111,.38) 100%), linear-gradient(0deg, rgba(7,17,111,.42), transparent 62%); }
  .hero-note { right: 16px; bottom: 68px; padding: .7rem .85rem; }
  .journey { min-height: 560px; margin-bottom: 48px; }
  .journey > img { height: 560px; }
  .journey::after { background: linear-gradient(0deg, rgba(7,17,111,.94) 0%, rgba(10,24,187,.66) 62%, transparent 100%); }
  .journey-card { left: 1.6rem; right: 1.6rem; top: auto; bottom: 2rem; transform: none; }
  .section { padding: 72px 0; }
  .section-copy h2, .section-heading h2, .vigilance h2 { font-size: 2.45rem; }
  .reason-card { min-height: 0; padding: 0 1.4rem 1.7rem; grid-template-rows: 170px auto auto 1fr; }
  .reason-card img { height: 155px; }
  .vigilance-copy { padding: 2.2rem 1.6rem; }
  .vigilance-visual { min-height: 280px; }
  .client-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .client-grid img { height: 92px; padding: 1rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 310px; margin-top: 14px; border-radius: 22px; }
  .page-hero-copy { padding: 2rem; }
  .page-hero h1 { font-size: 3rem; }
  .page-hero-vigilance h1 { font-size: 2.35rem; }
  .brand-band { padding: 1.3rem; }
  .commitment-grid article { padding: 1.5rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .report-section { margin-bottom: 72px; }
  .report-card { padding: 2rem 1.6rem; }
  .hero-carousel { height: 560px; margin-top: 14px; margin-bottom: 52px; border-radius: 22px; }
  .carousel-controls { bottom: 14px; }
  .difference-grid, .values-grid, .form-grid { grid-template-columns: 1fr; }
  .difference-grid article { min-height: 0; }
  .field-wide { grid-column: auto; }
  .form-hero { margin-top: 14px; border-radius: 22px; }
  .form-hero h1 { font-size: 2.5rem; }
  .form-shell { padding: 55px 0 72px; }
  .claims-hero { grid-template-columns: 1fr; }
  .claims-hero-mark { display: none; }
  .claim-guidance { width: min(100% - 28px, 980px); grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
