:root {
  --blue-900: #021b3a;
  --blue-800: #003b7a;
  --blue-700: #004f9f;
  --blue-500: #0c72cf;
  --yellow: #f3b51b;
  --steel: #eef3f7;
  --steel-2: #d7e0e8;
  --ink: #142033;
  --muted: #5d6b7d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(2, 27, 58, .16);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.1rem; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-light { background: linear-gradient(180deg, #fff 0%, var(--steel) 100%); }
.section-blue { background: radial-gradient(circle at top left, #085baa 0%, var(--blue-900) 48%, #010c1b 100%); color: var(--white); }
.align-center { align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; }

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 9999;
  background: var(--yellow); color: var(--blue-900); padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 59, 122, .11);
}
.navbar { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 210px; max-height: 62px; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.nav-menu a {
  display: inline-flex; padding: 10px 14px; border-radius: 999px;
  color: var(--blue-900); font-weight: 750; font-size: .95rem;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--blue-800); color: var(--white); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--blue-800); padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: .25s ease; }

.hero { min-height: 100svh; display: grid; place-items: center; color: var(--white); padding-top: 120px; }
.hero-bg { position: absolute; inset: 0; background: url('../assets/img/hero-industrial.png') center/cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,27,58,.94) 0%, rgba(0,59,122,.82) 43%, rgba(2,27,58,.22) 100%); }
.hero-content { position: relative; max-width: 780px; margin-left: max(16px, calc((100% - var(--container)) / 2)); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ''; width: 34px; height: 4px; background: currentColor; border-radius: 999px; }
.yellow { color: var(--yellow); }
.hero .eyebrow { color: var(--yellow); }
h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; }
h1 { font-size: clamp(2.5rem, 7vw, 5.6rem); max-width: 920px; letter-spacing: -.055em; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
.hero p, .section-heading p, .section-copy p { color: inherit; opacity: .88; font-size: 1.08rem; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 13px 22px; border-radius: 999px;
  border: 2px solid transparent; font-weight: 900; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.btn-primary { background: var(--yellow); color: var(--blue-900); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.btn-light { background: var(--white); color: var(--blue-900); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 680px; }
.hero-stats article { padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.09); backdrop-filter: blur(10px); }
.hero-stats strong { display: block; font-size: 2rem; color: var(--yellow); line-height: 1; }
.hero-stats span { font-size: .9rem; opacity: .88; }

.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.image-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--steel); position: relative; }
.image-card::after, .portfolio-main::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.55); border-radius: inherit; pointer-events: none; }
.image-card img { width: 100%; height: 520px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.value-card { padding: 18px; border-radius: 18px; background: var(--white); border: 1px solid var(--steel-2); box-shadow: 0 10px 30px rgba(2,27,58,.06); }
.value-card span { color: var(--yellow); font-weight: 950; }
.value-card strong { display: block; color: var(--blue-900); }
.value-card small { color: var(--muted); }

.mission-section { background: var(--blue-900); color: var(--white); padding: 54px 0; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mission-card { padding: 28px; border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.13); }
.icon { font-size: 2rem; display: inline-block; margin-bottom: 12px; }
.mission-card p { color: rgba(255,255,255,.78); margin-bottom: 0; }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--steel-2); }
.service-card img { width: 100%; height: 230px; object-fit: cover; }
.service-card div { padding: 24px; }
.service-card p, .service-card li { color: var(--muted); }
.service-card li { margin: 7px 0; }

.portfolio-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; align-items: stretch; }
.portfolio-main { position: relative; min-height: 620px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.portfolio-main img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.portfolio-panel { position: absolute; left: 24px; bottom: 24px; right: 24px; padding: 28px; border-radius: 22px; background: rgba(2,27,58,.82); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.2); }
.portfolio-panel p { color: rgba(255,255,255,.82); }
.product-list { display: grid; gap: 18px; }
.product-list article { border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.product-list img { height: 225px; width: 100%; object-fit: cover; }
.product-list div { padding: 22px; }
.product-list p { color: rgba(255,255,255,.78); }

.projects-section { background: linear-gradient(135deg, #fff 0%, #f2f6fa 100%); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.steps div { padding: 16px; border-radius: 18px; background: var(--white); border: 1px solid var(--steel-2); }
.steps strong { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--blue-800); color: var(--white); margin-bottom: 10px; }
.steps span { display: block; color: var(--muted); font-weight: 800; font-size: .87rem; }

.contact-section { background: var(--steel); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-cards article { display: flex; gap: 14px; padding: 18px; border-radius: 18px; background: var(--white); box-shadow: 0 8px 24px rgba(2,27,58,.06); }
.contact-cards span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-800); color: var(--white); flex: 0 0 auto; }
.contact-cards p { margin: 5px 0 0; color: var(--muted); }
.contact-panel { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.contact-panel > img { width: 100%; height: 300px; object-fit: cover; }
.contact-form { padding: 26px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-weight: 850; color: var(--blue-900); }
input, select, textarea {
  width: 100%; border: 1px solid var(--steel-2); border-radius: 14px; padding: 13px 14px;
  font: inherit; color: var(--ink); background: #f9fbfd; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(12,114,207,.12); }
.form-note { margin: 0; color: var(--muted); font-size: .88rem; }

.site-footer { background: #061326; color: var(--white); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 28px; }
.footer-grid img { width: 180px; background: #fff; border-radius: 14px; padding: 6px; margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,.72); max-width: 430px; }
.footer-grid a { display: block; color: rgba(255,255,255,.74); margin: 8px 0; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 24px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section { padding: 74px 0; }
  .grid-2, .contact-grid, .portfolio-layout { grid-template-columns: 1fr; }
  .cards-grid, .mission-grid { grid-template-columns: 1fr; }
  .hero-content { margin-left: auto; }
  .hero-overlay { background: linear-gradient(180deg, rgba(2,27,58,.95) 0%, rgba(0,59,122,.78) 62%, rgba(2,27,58,.5) 100%); }
  .image-card img { height: 420px; }
  .portfolio-main, .portfolio-main img { min-height: 480px; }
}

@media (max-width: 760px) {
  .navbar { height: 74px; }
  .brand img { width: 168px; }
  .nav-toggle { display: inline-block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu {
    position: fixed; left: 16px; right: 16px; top: 84px;
    display: grid; gap: 6px; padding: 12px; border-radius: 22px;
    background: rgba(255,255,255,.98); box-shadow: var(--shadow);
    border: 1px solid rgba(0,59,122,.12); transform-origin: top;
    transform: scaleY(0); opacity: 0; pointer-events: none; transition: .22s ease;
  }
  .nav-menu.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-menu a { display: flex; justify-content: center; }
  .hero { min-height: 92svh; padding-top: 112px; }
  h1 { font-size: clamp(2.35rem, 14vw, 4rem); }
  .hero-stats, .values-grid, .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .image-card img, .contact-panel > img { height: 320px; }
  .service-card img, .product-list img { height: 210px; }
  .portfolio-panel { position: static; border-radius: 0; }
  .portfolio-main, .portfolio-main img { min-height: initial; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

html { scroll-behavior: auto; }
.page-view { display: none; min-height: calc(100svh - 82px); padding-top: 132px; animation: pageFade .35s ease; }
.page-view.active { display: block; }
.hero.page-view { display: none; padding-top: 120px; }
.hero.page-view.active { display: grid; }
@keyframes pageFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.page-intro { margin-bottom: 44px; }
.page-block { margin-top: 36px; }
#quienes-somos .mission-card { background: linear-gradient(145deg, var(--blue-900), var(--blue-800)); color: var(--white); box-shadow: var(--shadow); }
#quienes-somos .mission-card p { color: rgba(255,255,255,.82); }

.hero-slide { opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 6s ease; }
.hero-slide.active { opacity: 1; transform: scale(1.02); }
.slider-dots { display: flex; gap: 10px; align-items: center; margin-top: 26px; }
.slider-dots button { width: 34px; height: 7px; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); cursor: pointer; transition: .25s ease; }
.slider-dots button.active { width: 54px; background: var(--yellow); }

.service-banner { display: grid; grid-template-columns: .7fr 1fr; gap: 26px; align-items: center; margin-top: 34px; padding: 24px; border-radius: var(--radius); background: linear-gradient(135deg, var(--steel), #fff); border: 1px solid var(--steel-2); box-shadow: var(--shadow); }
.service-banner img { width: 100%; height: 260px; object-fit: cover; border-radius: 18px; }
.service-banner p { color: var(--muted); }

.project-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; margin-top: 34px; padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 30px 90px rgba(0,0,0,.22); }
.project-panel img { width: 100%; height: 380px; object-fit: cover; border-radius: 20px; }
.project-panel p { color: rgba(255,255,255,.82); }
.project-panel .steps div { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.project-panel .steps strong { background: var(--yellow); color: var(--blue-900); }
.project-panel .steps span { color: rgba(255,255,255,.82); }

@media (max-width: 980px) {
  .page-view { padding-top: 112px; }
  .service-banner, .project-panel { grid-template-columns: 1fr; }
  .project-panel img { height: 300px; }
}

@media (max-width: 760px) {
  .page-view { min-height: calc(100svh - 74px); padding-top: 98px; }
  .hero.page-view { padding-top: 112px; }
  .slider-dots button { width: 26px; }
  .slider-dots button.active { width: 42px; }
  .service-banner { padding: 18px; }
  .service-banner img, .project-panel img { height: 220px; }
}


.brand img,
.footer-grid img {
  background: #fff;
  object-fit: contain;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
}
.hero-slide {
  opacity: 0;
  transform: scale(1.08) translateX(0);
  transition: opacity 1.45s ease-in-out, transform 8.5s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.015) translateX(-1.2%);
}
.hero-overlay {
  background:
    radial-gradient(circle at 78% 22%, rgba(243,181,27,.12), transparent 30%),
    linear-gradient(90deg, rgba(2,27,58,.96) 0%, rgba(0,59,122,.86) 45%, rgba(2,27,58,.30) 100%);
}
.slider-dots button {
  position: relative;
  overflow: hidden;
}
.slider-dots button.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.45);
  transform-origin: left;
  animation: dotProgress 6s linear forwards;
}
@keyframes dotProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.portfolio-main img,
.service-card img,
.service-banner img,
.project-panel img,
.image-card img {
  object-fit: cover;
  object-position: center;
}
.product-list article {
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  box-shadow: 0 20px 55px rgba(0,0,0,.14);
}
.product-list img {
  height: 210px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: linear-gradient(135deg, #004f9f, #021b3a);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.product-list div { min-height: 150px; }

.contact-simple {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: stretch;
}
.single-address article {
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(0,59,122,.08);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn-outline-dark {
  color: var(--blue-900);
  border-color: rgba(0,59,122,.25);
  background: rgba(255,255,255,.72);
}
.map-panel {
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,59,122,.10);
}
.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  color: #06331b;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(2,27,58,.22);
  border: 1px solid rgba(2,27,58,.08);
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(2,27,58,.28);
}
.whatsapp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25D366;
  font-size: 0;
  position: relative;
}
.whatsapp-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.02 3.2A12.7 12.7 0 0 0 5.2 22.58L3.8 28.8l6.36-1.32A12.8 12.8 0 1 0 16.02 3.2Zm0 2.46a10.33 10.33 0 0 1 8.78 15.8 10.24 10.24 0 0 1-12.1 3.55l-.42-.18-3.78.78.82-3.63-.25-.45A10.25 10.25 0 0 1 16.02 5.66Zm-4.28 5.55c-.24 0-.62.09-.95.45-.33.36-1.24 1.2-1.24 2.94 0 1.73 1.27 3.4 1.45 3.64.18.24 2.45 3.93 6.06 5.35 3.01 1.18 3.62.95 4.27.89.65-.06 2.11-.86 2.41-1.7.3-.83.3-1.54.21-1.7-.09-.15-.33-.24-.69-.42-.36-.18-2.11-1.04-2.44-1.16-.33-.12-.57-.18-.81.18-.24.36-.93 1.16-1.14 1.4-.21.24-.42.27-.78.09-.36-.18-1.52-.56-2.9-1.78-1.07-.95-1.8-2.13-2.01-2.49-.21-.36-.02-.55.16-.73.16-.16.36-.42.54-.63.18-.21.24-.36.36-.6.12-.24.06-.45-.03-.63-.09-.18-.81-1.95-1.11-2.67-.29-.7-.59-.61-.81-.62h-.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.02 3.2A12.7 12.7 0 0 0 5.2 22.58L3.8 28.8l6.36-1.32A12.8 12.8 0 1 0 16.02 3.2Zm0 2.46a10.33 10.33 0 0 1 8.78 15.8 10.24 10.24 0 0 1-12.1 3.55l-.42-.18-3.78.78.82-3.63-.25-.45A10.25 10.25 0 0 1 16.02 5.66Zm-4.28 5.55c-.24 0-.62.09-.95.45-.33.36-1.24 1.2-1.24 2.94 0 1.73 1.27 3.4 1.45 3.64.18.24 2.45 3.93 6.06 5.35 3.01 1.18 3.62.95 4.27.89.65-.06 2.11-.86 2.41-1.7.3-.83.3-1.54.21-1.7-.09-.15-.33-.24-.69-.42-.36-.18-2.11-1.04-2.44-1.16-.33-.12-.57-.18-.81.18-.24.36-.93 1.16-1.14 1.4-.21.24-.42.27-.78.09-.36-.18-1.52-.56-2.9-1.78-1.07-.95-1.8-2.13-2.01-2.49-.21-.36-.02-.55.16-.73.16-.16.36-.42.54-.63.18-.21.24-.36.36-.6.12-.24.06-.45-.03-.63-.09-.18-.81-1.95-1.11-2.67-.29-.7-.59-.61-.81-.62h-.65Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 980px) {
  .contact-simple { grid-template-columns: 1fr; }
  .map-panel, .map-panel iframe { min-height: 420px; }
  .product-list img { height: 220px; }
}
@media (max-width: 760px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(2,27,58,.97), rgba(0,59,122,.82) 58%, rgba(2,27,58,.62));
  }
  .product-list img { height: 190px; padding: 8px; }
  .product-list div { min-height: auto; }
  .map-panel, .map-panel iframe { min-height: 360px; }
  .contact-actions .btn { width: 100%; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 8px 9px 8px 14px;
  }
  .whatsapp-text { font-size: .9rem; }
  .whatsapp-icon { width: 46px; height: 46px; }
}
@media (max-width: 420px) {
  .whatsapp-text { display: none; }
  .whatsapp-float { padding: 8px; }
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img,
.footer-grid img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain;
}
.brand img {
  width: 218px;
  max-height: 64px;
}

.mission-icon,
.contact-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 28px rgba(0,0,0,.10);
  margin-bottom: 16px;
  position: relative;
}
.mission-icon::before,
.contact-icon::before {
  content: '';
  width: 28px;
  height: 28px;
  background: var(--yellow);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
}
.mission-icon-target::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 2a1 1 0 0 1 2 0v1.06A9 9 0 0 1 20.94 11H22a1 1 0 1 1 0 2h-1.06A9 9 0 0 1 13 20.94V22a1 1 0 1 1-2 0v-1.06A9 9 0 0 1 3.06 13H2a1 1 0 1 1 0-2h1.06A9 9 0 0 1 11 3.06V2Zm1 3a7 7 0 1 0 0 14a7 7 0 0 0 0-14Zm0 3a1 1 0 0 1 1 1v1.59l2.7-2.7a1 1 0 0 1 1.4 1.42L14.41 12H16a1 1 0 1 1 0 2h-2.83a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 2a1 1 0 0 1 2 0v1.06A9 9 0 0 1 20.94 11H22a1 1 0 1 1 0 2h-1.06A9 9 0 0 1 13 20.94V22a1 1 0 1 1-2 0v-1.06A9 9 0 0 1 3.06 13H2a1 1 0 1 1 0-2h1.06A9 9 0 0 1 11 3.06V2Zm1 3a7 7 0 1 0 0 14a7 7 0 0 0 0-14Zm0 3a1 1 0 0 1 1 1v1.59l2.7-2.7a1 1 0 0 1 1.4 1.42L14.41 12H16a1 1 0 1 1 0 2h-2.83a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
}
.mission-icon-vision::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c5.86 0 10.27 5.12 11.55 6.84a1 1 0 0 1 0 1.32C22.27 14.88 17.86 20 12 20S1.73 14.88.45 13.16a1 1 0 0 1 0-1.32C1.73 10.12 6.14 5 12 5Zm0 2c-4.45 0-8.06 3.62-9.44 5c1.38 1.38 4.99 5 9.44 5s8.06-3.62 9.44-5C20.06 10.62 16.45 7 12 7Zm0 2.5a4.5 4.5 0 1 1 0 9a4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c5.86 0 10.27 5.12 11.55 6.84a1 1 0 0 1 0 1.32C22.27 14.88 17.86 20 12 20S1.73 14.88.45 13.16a1 1 0 0 1 0-1.32C1.73 10.12 6.14 5 12 5Zm0 2c-4.45 0-8.06 3.62-9.44 5c1.38 1.38 4.99 5 9.44 5s8.06-3.62 9.44-5C20.06 10.62 16.45 7 12 7Zm0 2.5a4.5 4.5 0 1 1 0 9a4.5 4.5 0 0 1 0-9Zm0 2a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5Z'/%3E%3C/svg%3E");
}
.mission-icon-promise::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.38 5.67a3.5 3.5 0 0 0-4.95 0l-.7.7l-.2-.2a3 3 0 0 0-4.24 0L6.77 9.69a2.98 2.98 0 0 0-.87 1.91l-1.39 1.39a1.5 1.5 0 0 0 0 2.12l4.38 4.38a1.5 1.5 0 0 0 2.12 0l1.39-1.39c.72-.07 1.39-.38 1.91-.87l3.52-3.52a3 3 0 0 0 0-4.24l-.2-.2l.7-.7a3.5 3.5 0 0 0 0-4.95ZM9.95 18.08l-3.03-3.03l.83-.83l3.03 3.03l-.83.83Zm6.48-6.12l-3.52 3.52a1 1 0 0 1-1.42 0l-2.95-2.95a1 1 0 0 1 0-1.42l3.52-3.52a1 1 0 0 1 1.42 0l2.95 2.95a1 1 0 0 1 0 1.42Zm2.54-4.54l-.68.68l-2.83-2.83l.68-.68a1.5 1.5 0 1 1 2.12 2.12Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.38 5.67a3.5 3.5 0 0 0-4.95 0l-.7.7l-.2-.2a3 3 0 0 0-4.24 0L6.77 9.69a2.98 2.98 0 0 0-.87 1.91l-1.39 1.39a1.5 1.5 0 0 0 0 2.12l4.38 4.38a1.5 1.5 0 0 0 2.12 0l1.39-1.39c.72-.07 1.39-.38 1.91-.87l3.52-3.52a3 3 0 0 0 0-4.24l-.2-.2l.7-.7a3.5 3.5 0 0 0 0-4.95ZM9.95 18.08l-3.03-3.03l.83-.83l3.03 3.03l-.83.83Zm6.48-6.12l-3.52 3.52a1 1 0 0 1-1.42 0l-2.95-2.95a1 1 0 0 1 0-1.42l3.52-3.52a1 1 0 0 1 1.42 0l2.95 2.95a1 1 0 0 1 0 1.42Zm2.54-4.54l-.68.68l-2.83-2.83l.68-.68a1.5 1.5 0 1 1 2.12 2.12Z'/%3E%3C/svg%3E");
}
.contact-cards .contact-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border-radius: 12px;
  background: var(--blue-800);
  border: none;
  box-shadow: none;
}
.contact-cards .contact-icon::before {
  width: 20px;
  height: 20px;
  background: #fff;
}
.icon-location::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 4.79-5.06 11.2-6.21 12.6a1 1 0 0 1-1.58 0C10.06 20.2 5 13.79 5 9a7 7 0 0 1 7-7Zm0 2a5 5 0 0 0-5 5c0 2.91 2.84 7.22 5 9.94c2.16-2.72 5-7.03 5-9.94a5 5 0 0 0-5-5Zm0 2.5A2.5 2.5 0 1 1 9.5 9A2.5 2.5 0 0 1 12 6.5Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 1 7 7c0 4.79-5.06 11.2-6.21 12.6a1 1 0 0 1-1.58 0C10.06 20.2 5 13.79 5 9a7 7 0 0 1 7-7Zm0 2a5 5 0 0 0-5 5c0 2.91 2.84 7.22 5 9.94c2.16-2.72 5-7.03 5-9.94a5 5 0 0 0-5-5Zm0 2.5A2.5 2.5 0 1 1 9.5 9A2.5 2.5 0 0 1 12 6.5Z'/%3E%3C/svg%3E");
}

.contact-simple {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 34px;
  align-items: start;
}
.contact-visuals {
  display: grid;
  grid-template-rows: 250px 300px;
  gap: 18px;
}
.contact-photo-card,
.map-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,59,122,.10);
}
.contact-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}
.contact-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,27,58,.14) 0%, rgba(2,27,58,.72) 100%);
}
.contact-photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
}
.contact-photo-overlay .eyebrow { color: var(--yellow); }
.contact-photo-overlay strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}
.map-panel {
  min-height: 300px;
}
.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

/**/
.whatsapp-float,
.contact-actions .btn-primary {
  /**/
}

@media (max-width: 980px) {
  .contact-simple { grid-template-columns: 1fr; }
  .contact-visuals { grid-template-rows: 220px 320px; }
}
@media (max-width: 760px) {
  .brand img { width: 176px; }
  .mission-icon { width: 52px; height: 52px; }
  .mission-icon::before { width: 24px; height: 24px; }
  .contact-visuals { grid-template-rows: 200px 300px; }
  .contact-photo-overlay { left: 18px; right: 18px; bottom: 16px; }
}

.contact-photo-card {
  background: linear-gradient(135deg, #071f3f, #eef3f7);
}
.contact-photo-card img {
  object-fit: cover;
  object-position: center 35%;
}
.contact-photo-card::after {
  background:
    linear-gradient(90deg, rgba(2,27,58,.42) 0%, rgba(2,27,58,.16) 48%, rgba(2,27,58,.28) 100%),
    linear-gradient(180deg, rgba(2,27,58,.05) 0%, rgba(2,27,58,.72) 100%);
}
.contact-visuals {
  grid-template-rows: 310px 270px;
}
.map-panel,
.map-panel iframe {
  min-height: 270px;
}
.single-address {
  max-width: 560px;
}
.single-address article a {
  color: var(--blue-800);
  font-weight: 800;
}
.icon-email::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2v.25l8 5l8-5V7H4Zm0 2.61V17h16V9.61l-7.47 4.67a1 1 0 0 1-1.06 0L4 9.61Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2v.25l8 5l8-5V7H4Zm0 2.61V17h16V9.61l-7.47 4.67a1 1 0 0 1-1.06 0L4 9.61Z'/%3E%3C/svg%3E");
}
.btn-facebook {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}
.facebook-btn-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1877f2;
  font-weight: 950;
  font-family: Arial, sans-serif;
  line-height: 1;
}
@media (max-width: 980px) {
  .contact-visuals { grid-template-rows: 300px 300px; }
  .map-panel, .map-panel iframe { min-height: 300px; }
}
@media (max-width: 760px) {
  .contact-visuals { grid-template-rows: 260px 280px; }
  .map-panel, .map-panel iframe { min-height: 280px; }
  .contact-photo-card img { object-position: center 36%; }
}
@media (max-width: 420px) {
  .contact-visuals { grid-template-rows: 230px 260px; }
  .map-panel, .map-panel iframe { min-height: 260px; }
}


.icon-phone::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.56 3.58.56a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.19 2.46.56 3.58a1 1 0 0 1-.24 1.01l-2.2 2.2Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.56 3.58.56a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.19 2.46.56 3.58a1 1 0 0 1-.24 1.01l-2.2 2.2Z'/%3E%3C/svg%3E");
}
.btn-linkedin {
  color: #fff;
  background: #0a66c2;
  border-color: #0a66c2;
}
.linkedin-btn-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #0a66c2;
  font-weight: 950;
  font-family: Arial, sans-serif;
  font-size: .8rem;
  line-height: 1;
}
.btn-linkedin:hover {
  background: #0759aa;
  border-color: #0759aa;
}

@media (min-width: 981px) {
  #contacto .contact-simple {
    align-items: stretch;
  }

  #contacto .contact-visuals {
    min-height: calc(100svh - 150px);
    grid-template-rows: 310px minmax(430px, 1fr);
  }

  #contacto .map-panel,
  #contacto .map-panel iframe {
    height: 100%;
    min-height: 430px;
  }
}

.whatsapp-float {
  min-height: 72px;
  padding: 10px 14px 10px 24px;
  gap: 16px;
  border-radius: 999px;
  background: #fff;
}

.whatsapp-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  flex: 0 0 58px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #2be36f 0%, #18c95d 100%);
}

.whatsapp-icon::before {
  width: 34px;
  height: 34px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.46 1.34 4.96L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.44 9.91-9.91C21.96 6.45 17.51 2 12.04 2Zm0 18.15h-.01a8.2 8.2 0 0 1-4.18-1.15l-.3-.18l-3.12.82l.83-3.04l-.2-.31a8.2 8.2 0 0 1-1.25-4.38c0-4.54 3.69-8.23 8.24-8.23a8.2 8.2 0 0 1 8.23 8.24c0 4.54-3.7 8.23-8.24 8.23Zm4.52-6.16c-.25-.12-1.47-.72-1.7-.81c-.23-.08-.39-.12-.56.13c-.16.24-.64.8-.78.97c-.14.16-.29.18-.54.06c-.25-.13-1.05-.39-2-1.23c-.74-.66-1.24-1.47-1.38-1.72c-.14-.25-.02-.38.11-.51c.11-.11.25-.29.37-.43c.12-.14.16-.25.25-.41c.08-.17.04-.31-.02-.43c-.06-.13-.56-1.35-.77-1.85c-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31c-.23.25-.87.85-.87 2.07c0 1.22.89 2.4 1.01 2.56c.12.17 1.75 2.67 4.24 3.75c.59.25 1.05.4 1.41.52c.59.19 1.13.16 1.55.1c.47-.07 1.47-.6 1.67-1.18c.21-.58.21-1.08.15-1.18c-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.46 1.34 4.96L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.44 9.91-9.91C21.96 6.45 17.51 2 12.04 2Zm0 18.15h-.01a8.2 8.2 0 0 1-4.18-1.15l-.3-.18l-3.12.82l.83-3.04l-.2-.31a8.2 8.2 0 0 1-1.25-4.38c0-4.54 3.69-8.23 8.24-8.23a8.2 8.2 0 0 1 8.23 8.24c0 4.54-3.7 8.23-8.24 8.23Zm4.52-6.16c-.25-.12-1.47-.72-1.7-.81c-.23-.08-.39-.12-.56.13c-.16.24-.64.8-.78.97c-.14.16-.29.18-.54.06c-.25-.13-1.05-.39-2-1.23c-.74-.66-1.24-1.47-1.38-1.72c-.14-.25-.02-.38.11-.51c.11-.11.25-.29.37-.43c.12-.14.16-.25.25-.41c.08-.17.04-.31-.02-.43c-.06-.13-.56-1.35-.77-1.85c-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31c-.23.25-.87.85-.87 2.07c0 1.22.89 2.4 1.01 2.56c.12.17 1.75 2.67 4.24 3.75c.59.25 1.05.4 1.41.52c.59.19 1.13.16 1.55.1c.47-.07 1.47-.6 1.67-1.18c.21-.58.21-1.08.15-1.18c-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 760px) {
  .whatsapp-float {
    min-height: 62px;
    padding: 8px 10px 8px 16px;
    gap: 10px;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-basis: 50px;
  }

  .whatsapp-icon::before {
    width: 29px;
    height: 29px;
  }
}


@media (max-width: 760px) {
  #portafolio .portfolio-main {
    display: flex;
    flex-direction: column;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 24px;
    overflow: hidden;
    background: var(--blue-800);
  }

  #portafolio .portfolio-main > img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }

  #portafolio .portfolio-panel {
    position: static !important;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 28px 24px 28px;
    border-radius: 0;
    background: linear-gradient(145deg, rgba(0,59,122,.98), rgba(2,27,58,.96));
    border: 0;
    backdrop-filter: none;
  }

  #portafolio .portfolio-panel h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    margin-bottom: 18px;
  }

  #portafolio .portfolio-panel p {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  #portafolio .portfolio-panel .btn {
    width: 100%;
    min-height: 58px;
    padding: 15px 22px;
    border-radius: 999px;
    font-size: 1rem;
  }
}

.whatsapp-float {
  min-width: 176px;
  min-height: 66px;
  justify-content: space-between;
  padding: 10px 12px 10px 22px !important;
  border-radius: 999px !important;
}

.whatsapp-text {
  display: inline-block !important;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1;
}

.whatsapp-icon {
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px;
}

.whatsapp-icon::before {
  width: 31px !important;
  height: 31px !important;
}

@media (max-width: 760px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 150px;
    min-height: 58px;
    gap: 8px;
    padding: 8px 9px 8px 16px !important;
  }

  .whatsapp-text {
    font-size: .9rem !important;
  }

  .whatsapp-icon {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px;
  }

  .whatsapp-icon::before {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 420px) {
  .whatsapp-text {
    display: inline-block !important;
  }

  .whatsapp-float {
    min-width: 142px;
  }
}

#contacto .contact-cards {
  gap: 14px;
}
#contacto .contact-cards article {
  padding: 18px 20px;
}
#contacto .contact-cards p {
  line-height: 1.55;
}
#contacto .contact-social-actions {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
#contacto .contact-social-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  white-space: nowrap;
}

@media (min-width: 981px) {
  #contacto .contact-simple {
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: start;
  }
  #contacto .contact-visuals {
    min-height: auto;
    grid-template-rows: 300px minmax(360px, 1fr) auto;
    gap: 16px;
  }
  #contacto .map-panel,
  #contacto .map-panel iframe {
    min-height: 360px;
    height: 100%;
  }
}

@media (max-width: 1100px) {
  #contacto .contact-social-actions {
    grid-template-columns: 1fr;
  }
  #contacto .contact-social-actions .btn {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  #contacto .contact-cards article {
    padding: 16px;
  }
  #contacto .contact-visuals {
    grid-template-rows: 230px 300px auto;
  }
  #contacto .map-panel,
  #contacto .map-panel iframe {
    min-height: 300px;
  }
  #contacto .contact-social-actions .btn {
    max-width: none;
  }
}

@media (min-width: 981px) {
  #contacto .contact-simple {
    align-items: stretch;
  }

  #contacto .contact-visuals {
    height: 100%;
    display: grid;
    grid-template-rows: 300px 300px 1fr;
    gap: 16px;
  }

  #contacto .map-panel,
  #contacto .map-panel iframe {
    min-height: 300px;
    height: 300px;
  }

  #contacto .contact-social-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
    padding: 24px;
    min-height: 230px;
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,59,122,.10);
    box-shadow: var(--shadow);
  }

  #contacto .contact-social-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 58px;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 980px) {
  #contacto .contact-social-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
