:root {
  --white: rgb(255, 255, 255);
  --blue: rgb(12, 87, 161);
  --blue-dark: #063d76;
  --blue-soft: #edf7ff;
  --ice: #f6fbff;
  --ink: #10233f;
  --text: #4b5a6b;
  --line: #dce7f3;
  --shadow: 0 18px 42px rgba(12, 87, 161, .18);
  --shadow-soft: 0 10px 25px rgba(12, 87, 161, .10);
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 190px; }
body { margin: 0; font-family: 'Roboto', Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.45; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 44px, var(--max)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 9999; background: var(--blue); color: #fff; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { left: 10px; }
.topbar { background: var(--blue); color: var(--white); font-size: 14px; font-weight: 700; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; opacity: .96; }
.topbar-links img { width: 20px; height: 20px; border-radius: 50%; }
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); box-shadow: 0 4px 18px rgba(16,35,63,.09); }
.navbar-inner { min-height: 170px; display: flex; align-items: center; gap: 28px; position: relative; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 150px; width: auto; max-width: 300px; object-fit: contain; }
.menu { margin-left: auto; display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 900; text-transform: uppercase; }
.menu a { position: relative; padding: 10px 0; color: var(--ink); }
.menu a::after { content: ''; position: absolute; left: 0; bottom: 2px; width: 0; height: 3px; background: var(--blue); border-radius: 99px; transition: width .2s ease; }
.menu a:hover::after { width: 100%; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 30px; height: 3px; background: var(--blue); margin: 6px; border-radius: 99px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 22px; border-radius: 4px; border: 2px solid transparent; font-weight: 900; text-transform: uppercase; font-size: 13px; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; text-align: center; }
.btn:hover { transform: translateY(-2px); }
.btn img { width: 22px; height: 22px; border-radius: 50%; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(12,87,161,.25); }
.btn-outline { background: rgba(255,255,255,.88); color: var(--blue); border-color: var(--blue); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); }
.btn-green { background: #25d366; color: #fff; }
.nav-cta { flex: 0 0 auto; }
.hero-slider { position: relative; height: 575px; overflow: hidden; background: var(--ice); }
.slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .55s ease; background-size: cover; background-position: center right; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,.32) 58%, rgba(255,255,255,.06) 100%); }
.slide-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; max-width: 690px; }
.hero-kicker { color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin-bottom: 13px; }
.slide h1, .slide h2 { margin: 0 0 12px; color: var(--blue); font-size: clamp(46px, 6vw, 78px); line-height: .95; text-transform: uppercase; font-weight: 900; letter-spacing: -.03em; }
.hero-lead { margin: 0 0 12px; color: var(--ink); font-size: 22px; font-weight: 900; }
.hero-copy { margin: 0 0 24px; color: var(--text); max-width: 590px; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--blue); font-size: 42px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-soft); }
.slider-prev { left: 22px; }
.slider-next { right: 22px; }
.slider-dots { position: absolute; z-index: 6; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 14px; height: 14px; border-radius: 50%; border: 0; background: rgba(12,87,161,.28); cursor: pointer; }
.dot.active { background: var(--blue); }
.section { padding: 68px 0; }
.section-soft { padding: 54px 0; background: linear-gradient(180deg, #f6fbff, #ffffff); }
.section-title { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 34px; text-align: center; }
.section-title p { margin: 0; color: var(--blue); text-transform: uppercase; font-weight: 900; font-size: 20px; }
.section-title span { width: 46px; height: 3px; background: var(--blue); border-radius: 99px; }
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
#servicios .container .services-grid {
}
#servicios .container .services-grid {
}


.service-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 9px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 205px; object-fit: cover; object-position: center; background: var(--blue-soft); }
.card-icon { position: absolute; top: 158px; left: 24px; width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: var(--white); font-size: 30px; border: 4px solid var(--white); box-shadow: 0 10px 16px rgba(12,87,161,.24); }
.service-body { padding: 38px 24px 22px; min-height: 255px; display: flex; flex-direction: column; }
.service-body h3 { margin: 0 0 10px; color: var(--blue); text-transform: uppercase; font-size: 18px; line-height: 1.08; font-weight: 900; }
.service-body p { margin: 0 0 18px; color: var(--text); font-size: 14px; }
.service-body a { margin-top: auto; color: var(--blue); font-weight: 900; }
.one-row { display: grid; }
.benefits-row { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); }
.benefits-row article { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); }
.benefits-row article:last-child { border-right: 0; }
.line-icon { margin: 0 auto 12px; width: 58px; height: 58px; display: grid; place-items: center; color: var(--blue); font-size: 36px; }
.benefits-row h3 { margin: 0 0 8px; color: var(--blue); font-size: 15px; line-height: 1.15; }
.benefits-row p { margin: 0; color: var(--text); font-size: 13px; }
.process-line { padding-top: 44px; background: var(--white); }
.process-row { position: relative; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; }
.process-row::before { content: ''; position: absolute; left: 8%; right: 8%; top: 42px; border-top: 2px dashed rgba(12,87,161,.36); }
.process-row article { position: relative; z-index: 2; text-align: center; background: var(--white); padding: 0 12px; }
.process-row span { display: grid; place-items: center; margin: 0 auto 10px; width: 64px; height: 64px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 900; font-size: 28px; box-shadow: 0 10px 18px rgba(12,87,161,.2); }
.process-row i { display: block; color: var(--blue); font-style: normal; font-size: 32px; margin-bottom: 8px; }
.process-row h3 { margin: 0 0 8px; color: var(--blue); font-size: 15px; line-height: 1.12; }
.process-row p { margin: 0; color: var(--text); font-size: 13px; }
.cta-row-section { background: linear-gradient(90deg, var(--blue), #0b477f); color: var(--white); padding: 42px 0; position: relative; overflow: hidden; }
.cta-row-section::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 36%; opacity: .18; background: url('assets/cta-bg.jpg') center/cover no-repeat; }
.cta-row { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(300px, 1.1fr) auto auto; gap: 32px; align-items: center; }
.cta-copy h2 { margin: 0 0 8px; text-transform: uppercase; font-size: 31px; line-height: 1.05; }
.cta-copy p { margin: 0; max-width: 620px; font-size: 16px; opacity: .96; }
.cta-actions-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-social { display: flex; align-items: center; gap: 12px; }
.cta-social p { margin: 0 4px 0 0; font-weight: 900; text-transform: uppercase; font-size: 13px; }
.cta-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--white); }
.cta-social img { width: 30px; height: 30px; border-radius: 50%; }
.contact-form-section { padding: 52px 0 56px; background: var(--white); }
.contact-layout { display: grid; grid-template-columns: .95fr minmax(360px, .75fr); gap: 42px; align-items: start; }
.contact-copy h2 { margin: 0 0 16px; color: var(--blue); text-transform: uppercase; font-size: 32px; }
.contact-copy p { color: var(--text); font-size: 17px; margin: 0 0 22px; }
.contact-mini { display: grid; gap: 12px; }
.contact-mini a { display: inline-flex; color: var(--blue); font-weight: 900; }
.vertical-form { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 28px; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); background: var(--white); }
.vertical-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 900; color: var(--ink); }
.vertical-form input, .vertical-form select, .vertical-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 12px 13px; outline: none; background: #fbfdff; color: var(--ink); }
.vertical-form input, .vertical-form select { height: 48px; }
.vertical-form textarea { min-height: 112px; resize: vertical; }
.vertical-form input:focus, .vertical-form select:focus, .vertical-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(12,87,161,.09); }
.form-button { height: 50px; white-space: nowrap; }
.site-footer { background: var(--blue); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr .75fr 1fr 1fr; gap: 34px; padding: 44px 0; }
.footer-brand img {
    width: 230px;
    max-height: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}
.footer-brand p { margin: 0 0 10px; font-weight: 900; text-transform: uppercase; }
.footer-brand small { opacity: .9; }
.site-footer h3 { margin: 0 0 12px; text-transform: uppercase; font-size: 15px; }
.site-footer a, .site-footer p { display: block; margin: 0 0 9px; color: rgba(255,255,255,.92); }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-social { display: flex !important; align-items: center; gap: 8px; }
.footer-social img { width: 22px; height: 22px; border-radius: 50%; }
.copyright { text-align: center; padding: 14px; background: rgba(0,0,0,.16); font-size: 14px; }
.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: #25d366; box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.floating-whatsapp img { width: 44px; height: 44px; border-radius: 50%; }
.privacy-hero { padding: 80px 0; background: linear-gradient(90deg, var(--blue), #0b477f); color: var(--white); }
.privacy-hero h1 { margin: 0 0 14px; font-size: clamp(42px, 6vw, 72px); text-transform: uppercase; line-height: .95; }
.privacy-hero p { max-width: 780px; margin: 0; font-size: 18px; }
.narrow { max-width: 900px; }
.privacy-content h2 { color: var(--blue); margin-top: 32px; }
.privacy-content p, .privacy-content li { color: var(--text); }
.privacy-content a { color: var(--blue); font-weight: 900; }
.notice-note { background: var(--blue-soft); border-left: 5px solid var(--blue); padding: 16px 18px; border-radius: 8px; }
.footer-grid-privacy { grid-template-columns: 1.4fr 1fr 1fr; }
.menu-static { margin-left: auto; }
@media (max-width: 1180px) {
  .nav-cta { display: none; }
  .navbar-inner { min-height: 145px; }
  .brand img { height: 125px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-row { gap: 16px; }
  .cta-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  html { scroll-padding-top: 120px; }
  .container { width: min(100% - 32px, var(--max)); }
  .topbar-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; gap: 8px; }
  .topbar-links { flex-wrap: wrap; gap: 12px; }
  .navbar-inner { min-height: 92px; }
  .brand img { height: 78px; max-width: 210px; }
  .menu-toggle { display: block; }
  .menu { display: none; position: absolute; left: 16px; right: 16px; top: calc(100% + 8px); background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); padding: 14px; flex-direction: column; gap: 0; align-items: stretch; }
  .menu.is-open { display: flex; }
  .menu a { padding: 13px 10px; }
  .hero-slider { height: 635px; }
  .slide { background-position: center right; }
  .slide-overlay { background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.82)); }
  .slide-content { justify-content: flex-start; padding-top: 58px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-row { grid-template-columns: 1fr; }
  .process-row::before { display: none; }
  .cta-actions-row, .cta-social { flex-wrap: wrap; }
  .footer-grid, .footer-grid-privacy { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .topbar { font-size: 12px; }
  .brand img { height: 68px; }
  .slide h1, .slide h2 { font-size: 40px; }
  .hero-actions .btn, .cta-actions-row .btn, .form-button { width: 100%; }
  .benefits-row { grid-template-columns: 1fr; }
  .service-card img { height: 190px; }
  .contact-copy h2 { font-size: 27px; }
}
