:root{
  --bg:#f6f9fb;
  --surface:#ffffff;
  --text:#0f1f3a;
  --muted:#5d6b7e;
  --primary:#0f7f8f;
  --primary-dark:#0b5d69;
  --accent:#17b8a6;
  --line:#e4ebf1;
  --shadow:0 18px 40px rgba(14, 38, 72, .08);
  --radius:22px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
.container{width:min(var(--max), calc(100% - 32px)); margin:0 auto}
.section{padding:72px 0}
.section-tight{padding:48px 0}
.section-title{
  margin:0 0 10px;
  font-size:clamp(1.6rem, 2vw, 2.2rem);
  line-height:1.15;
}
.section-subtitle{margin:0;color:var(--muted);max-width:70ch}
.kicker{
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--primary);
  font-weight:700;
  font-size:.82rem;
  margin-bottom:10px;
}
.card{
  background:var(--surface);
  border:1px solid rgba(228,235,241,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:14px 20px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.25s ease;
  cursor:pointer;
  font-weight:700;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--primary));
  color:#fff;
}
.btn-primary:hover{filter:saturate(1.05); box-shadow:0 12px 24px rgba(15,127,143,.24)}
.btn-ghost{
  background:#fff;
  color:var(--text);
  border-color:#cfd8e3;
}
.btn-ghost:hover{background:#f8fbfd}
.btn-inline{padding:0;border:none;background:none;color:var(--primary);font-weight:700}

.site-header{
  position:sticky; top:0; z-index:30;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(228,235,241,.9);
}
.header-inner{
  min-height:82px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  min-width:0;
}
.brand-logo{
  display:block;
  width:clamp(128px, 15vw, 172px);
  height:auto;
  object-fit:contain;
  flex:none;
}
.brand-footer .brand-logo{
  width:clamp(140px, 18vw, 190px);
}
.brand-name{line-height:1}
.brand-name strong{display:block; font-size:1.02rem; letter-spacing:.04em}
.brand-name span{display:block; color:var(--muted); font-size:.78rem; margin-top:2px}
.site-nav{display:flex; align-items:center; gap:22px; font-weight:600; color:#23344f}
.site-nav a{padding:10px 0; position:relative}
.site-nav a::after{
  content:""; position:absolute; left:0; bottom:4px;
  width:100%; height:2px; background:var(--primary);
  transform:scaleX(0); transform-origin:left; transition:.25s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after{transform:scaleX(1)}
.header-actions{display:flex; align-items:center; gap:10px}
.menu-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid #d8e1ea; background:#fff; cursor:pointer;
}
.menu-toggle svg{width:22px;height:22px}

.hero{
  padding:54px 0 32px;
  background:
    radial-gradient(circle at 72% 10%, rgba(23,184,166,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.hero h1{
  font-size:clamp(2.5rem, 5vw, 4.6rem);
  line-height:1.04;
  letter-spacing:-.03em;
  margin:0 0 18px;
}
.hero p.lead{font-size:1.05rem; color:var(--muted); margin:0 0 24px; max-width:55ch}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin-bottom:24px}
.feature-grid{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px; margin-top:26px;
}
.feature{
  background:#fff; border:1px solid var(--line);
  border-radius:18px; padding:16px; display:flex; gap:12px;
  box-shadow:0 8px 20px rgba(14,38,72,.05);
}
.feature-icon{
  width:42px; height:42px; border-radius:14px;
  background:linear-gradient(135deg, rgba(23,184,166,.14), rgba(15,127,143,.14));
  color:var(--primary); display:grid; place-items:center; flex:0 0 auto;
  font-weight:800;
}
.feature h3{margin:0 0 4px; font-size:1rem}
.feature p{margin:0; color:var(--muted); font-size:.93rem}
.hero-visual{
  position:relative;
  min-height:540px;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(15,127,143,.08), rgba(255,255,255,0));
  border:1px solid #e6eef5;
  box-shadow:var(--shadow);
}
.hero-visual img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.2) contrast(1.02) brightness(1.03);
}
.hero-visual .floating{
  position:absolute; left:22px; bottom:22px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(228,235,241,.95);
  border-radius:20px; padding:16px 18px; max-width:280px;
  box-shadow:0 18px 28px rgba(14,38,72,.12);
}
.floating strong{display:block; margin-bottom:4px}
.floating span{color:var(--muted); font-size:.95rem}

.grid-6{
  display:grid; grid-template-columns:repeat(6, minmax(0,1fr)); gap:16px;
}
.grid-4{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px;
}
.grid-3{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px;
}
.grid-2{
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:18px;
}
.tech-card, .news-card, .brand-card, .metric-card, .content-card, .product-card, .contact-card{
  background:var(--surface);
  border:1px solid rgba(228,235,241,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.tech-card{padding:18px; min-height:265px; display:flex; flex-direction:column}
.tech-card img,.news-card img,.product-card img,.about-photo img{
  border-radius:18px;
  width:100%; height:180px; object-fit:cover; background:#eef2f6;
}
.icon-badge{
  width:54px; height:54px; border-radius:18px;
  background:linear-gradient(135deg, rgba(23,184,166,.14), rgba(15,127,143,.14));
  display:grid; place-items:center; margin-top:-30px;
  border:6px solid #fff; position:relative; z-index:1;
  color:var(--primary); font-weight:800;
}
.tech-card h3, .news-card h3, .product-card h3, .content-card h3, .contact-card h3{margin:14px 0 8px; font-size:1.06rem}
.tech-card p, .news-card p, .product-card p, .content-card p, .contact-card p{color:var(--muted); margin:0}
.tech-card .spacer{flex:1}
.tech-card a{margin-top:12px; color:var(--primary); font-weight:700}

.brand-strip{
  display:flex; flex-wrap:wrap; gap:12px; margin:20px 0 24px;
}
.brand-pill{
  flex:1 1 150px;
  min-height:70px;
  display:grid; place-items:center;
  font-weight:800; letter-spacing:.03em;
  color:#264057;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 10px 20px rgba(14,38,72,.05);
  padding:12px;
}
.brand-pill span{color:var(--primary)}
.metrics-band{
  background:linear-gradient(135deg, #0d2f53, #0a1f39);
  color:#fff;
  border-radius:28px;
  padding:24px;
}
.metrics-band .grid-4{gap:14px}
.metric-card{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
  color:#fff;
  padding:20px;
  box-shadow:none;
}
.metric-card .value{
  font-size:2rem; font-weight:800; line-height:1;
  margin-bottom:10px;
  color:#72f0df;
}
.metric-card p{color:rgba(255,255,255,.82)}
.metric-card .label{font-weight:700; margin-bottom:6px}

.about-grid{
  display:grid; grid-template-columns:1fr 1.1fr; gap:22px; align-items:center;
}
.about-visual{
  display:grid; grid-template-columns:1.1fr .9fr; gap:14px; align-items:stretch;
}
.about-photo{
  overflow:hidden; border-radius:28px; position:relative;
}
.about-photo.tall img{height:100%; min-height:430px}
.about-photo.small img{height:208px}
.about-overlay{
  position:absolute; left:14px; bottom:14px;
  background:rgba(255,255,255,.94);
  border-radius:18px;
  border:1px solid rgba(228,235,241,.95);
  padding:14px 16px;
  max-width:260px;
}
.about-overlay strong{display:block;margin-bottom:4px}
.about-copy .content-card{padding:26px}
.about-list{display:grid; gap:12px; margin-top:18px}
.about-list div{display:flex; gap:12px; align-items:flex-start}
.about-list .dot{
  width:30px; height:30px; border-radius:999px;
  display:grid; place-items:center; flex:0 0 auto;
  background:rgba(23,184,166,.12); color:var(--primary); font-weight:800;
}

.news-grid{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px;
}
.news-card{overflow:hidden}
.news-card .body{padding:16px}
.news-card .meta{
  display:flex; justify-content:space-between; gap:8px; color:var(--muted);
  font-size:.84rem; margin-bottom:8px;
}
.badge{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:7px 11px; border-radius:999px;
  background:rgba(23,184,166,.10); color:var(--primary); font-weight:700;
  font-size:.82rem;
}
.consultation{
  padding:20px;
  background:linear-gradient(135deg, #0f7f8f, #17b8a6);
  color:#fff;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.consultation .inner{
  display:flex; justify-content:space-between; align-items:center; gap:18px;
}
.consultation h2{margin:0 0 4px; font-size:clamp(1.35rem, 2vw, 1.8rem)}
.consultation p{margin:0; color:rgba(255,255,255,.92)}
.consultation .actions{display:flex; flex-wrap:wrap; gap:12px}
.consultation .btn-ghost{border-color:rgba(255,255,255,.24); background:rgba(255,255,255,.08); color:#fff}
.consultation .btn-ghost:hover{background:rgba(255,255,255,.14)}
.site-footer{
  margin-top:18px;
  background:linear-gradient(180deg, #0b1f39 0%, #071527 100%);
  color:#d8e3ef;
  padding:54px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1fr;
  gap:24px;
}
.footer-grid h3{margin:0 0 14px; color:#fff; font-size:1.02rem}
.footer-grid ul{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.footer-grid a{color:#d8e3ef}
.footer-grid a:hover{color:#fff}
.socials{display:flex; gap:10px; margin-top:16px}
.socials a{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.06);
}
.footer-base{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:28px; padding-top:16px;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:rgba(216,227,239,.72); font-size:.92rem;
}

.page-hero{
  padding:58px 0 24px;
}
.page-title{margin:0 0 10px; font-size:clamp(2rem, 3vw, 3rem)}
.page-lead{margin:0; color:var(--muted); max-width:72ch}
.page-grid{display:grid; gap:18px}
.page-toolbar{
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
  margin:24px 0 18px;
}
.input, .select, .textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid #d7e0ea;
  background:#fff;
  outline:none;
}
.input:focus, .select:focus, .textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(15,127,143,.12);
}
.form-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.form-grid .full{grid-column:1 / -1}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact-card{padding:22px}
.contact-card .row{display:flex; gap:14px; align-items:flex-start; margin-top:14px}
.contact-icon{
  width:46px; height:46px; border-radius:16px;
  background:rgba(23,184,166,.12); color:var(--primary);
  display:grid; place-items:center; flex:0 0 auto;
}

/* ── Info cards (new contact left column) ── */
.info-cards-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-content:start;
}
.info-card{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.info-card--wide{
  grid-column:1 / -1;
  flex-direction:row;
  align-items:flex-start;
  gap:14px;
}
.info-card--wide .info-card-icon{flex:0 0 auto}
.info-card-icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center; flex:0 0 auto;
}
.info-card-title{
  display:block;
  font-size:.97rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}
.info-card-desc{
  margin:0;
  font-size:.88rem;
  color:var(--muted);
  line-height:1.5;
}
.info-card-link{
  font-size:.9rem;
  font-weight:600;
  color:var(--primary);
  text-decoration:none;
  margin-top:2px;
  display:inline-block;
}
.info-card-link:hover{text-decoration:underline}
.small-note{font-size:.92rem; color:var(--muted)}
.mobile-only{display:none}

/* ── Tablet (≤ 1080px) ───────────────────────────────────────── */
@media (max-width: 1080px){
  .hero-grid,.about-grid,.contact-grid,.footer-grid{grid-template-columns:1fr}
  .info-cards-grid{grid-template-columns:1fr 1fr}
  .news-grid,.grid-4,.grid-6{grid-template-columns:repeat(2, minmax(0,1fr))}
  .footer-grid{gap:32px}
  .section{padding:52px 0}
}

/* ── Mobile (≤ 760px) ────────────────────────────────────────── */
@media (max-width: 760px){
  /* Header / nav */
  .site-nav{
    position:absolute; left:16px; right:16px; top:84px;
    display:none; flex-direction:column; gap:6px;
    background:#fff; border:1px solid var(--line); border-radius:20px;
    padding:12px; box-shadow:var(--shadow); z-index:40;
  }
  .site-nav.open{display:flex}
  .site-nav a{width:100%; padding:12px 14px; border-radius:12px}
  .site-nav a:hover{background:var(--bg)}
  .header-actions .btn{display:none}
  .menu-toggle{display:inline-grid; place-items:center}
  .brand-logo{
    width:clamp(112px, 42vw, 150px);
  }

  /* Grids → single column */
  .feature-grid,.grid-2,.grid-3,.grid-4,.grid-6,.news-grid,.form-grid{
    grid-template-columns:1fr
  }
  .about-visual{grid-template-columns:1fr}
  .about-photo.tall img{min-height:260px}

  /* Hero */
  .hero{padding-top:28px; padding-bottom:16px}
  .hero h1{font-size:clamp(2rem, 8vw, 3rem)}
  .hero-visual{min-height:260px; border-radius:20px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%; justify-content:center}

  /* Metrics band */
  .metrics-band .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .metric-card .value{font-size:1.6rem}

  /* Section spacing */
  .section{padding:40px 0}
  .section-tight{padding:28px 0}
  .section-title{font-size:clamp(1.4rem, 5vw, 1.9rem)}

  /* Contact card layout */
  .contact-card{padding:18px}
  .contact-card .row{gap:10px}
  .contact-icon{width:38px; height:38px; border-radius:12px}
  .info-cards-grid{grid-template-columns:1fr}
  .info-card--wide{flex-direction:column; gap:10px}

  /* Consultation banner */
  .consultation{padding:18px}
  .consultation .inner{flex-direction:column; align-items:flex-start; gap:14px}
  .consultation .actions{width:100%; flex-direction:column}
  .consultation .actions .btn{width:100%; justify-content:center}

  /* Footer */
  .footer-grid{grid-template-columns:1fr; gap:24px}
  .footer-base{flex-direction:column; gap:6px; text-align:center}

  /* Page hero */
  .page-hero{padding:36px 0 16px}
  .page-title{font-size:clamp(1.6rem, 6vw, 2.4rem)}

  /* Buttons */
  .btn{padding:13px 18px}

  /* Brand strip */
  .brand-pill{flex:1 1 120px; min-height:58px}

  /* WhatsApp contact form */
  .whatsapp-form .form-grid{grid-template-columns:1fr}
  .whatsapp-form .btn-whatsapp{width:100%; justify-content:center}

  .mobile-only{display:block}
}

/* ── Small mobile (≤ 400px) ──────────────────────────────────── */
@media (max-width: 400px){
  .container{width:calc(100% - 24px)}
  .metrics-band .grid-4{grid-template-columns:1fr}
  .hero h1{font-size:1.9rem}
  .about-photo.tall img{min-height:200px}
  .brand-logo{
    width:clamp(102px, 46vw, 136px);
  }
}

/* ── WhatsApp contact form ───────────────────────────────────── */
.whatsapp-form{margin-top:16px; display:grid; gap:14px}
.field-group{display:grid; gap:4px}
.field-label{font-size:.88rem; font-weight:600; color:var(--text)}
.field-label .req{color:var(--accent)}
.input.invalid,.textarea.invalid{
  border-color:#e05454;
  box-shadow:0 0 0 3px rgba(224,84,84,.13);
}
.field-error{
  font-size:.82rem; color:#c0392b; margin-top:2px; display:none;
}
.btn-whatsapp{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:15px 22px; border-radius:999px; border:none; cursor:pointer;
  font-weight:700; font-size:1rem;
  background:linear-gradient(135deg,#25d366,#128c5e);
  color:#fff; transition:.25s ease; width:100%;
}
.btn-whatsapp:hover:not(:disabled){
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(18,140,94,.30);
}
.btn-whatsapp:disabled{opacity:.7; cursor:default}
.form-success{
  display:none; margin-top:4px;
  padding:13px 16px; border-radius:14px;
  background:rgba(37,211,102,.10); border:1px solid rgba(37,211,102,.25);
  color:#0b6e35; font-size:.95rem; font-weight:600;
}
.direct-contact-links{display:grid; gap:10px; margin-top:6px}
.direct-link{
  display:flex; align-items:center; gap:12px;
  padding:13px 16px; border-radius:16px;
  background:#fff; border:1px solid var(--line);
  color:var(--text); font-weight:600; font-size:.95rem;
  transition:.2s ease; text-decoration:none;
}
.direct-link:hover{background:var(--bg); border-color:var(--primary)}
.direct-link-icon{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center; flex:0 0 auto;
}
.direct-link-icon.green{background:rgba(37,211,102,.12); color:#128c5e}
.direct-link-icon.blue{background:rgba(15,127,143,.12); color:var(--primary)}
.direct-link-icon.orange{background:rgba(230,120,40,.12); color:#b85a10}

/* ── Noticias page ──────────────────────────────────────────── */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(14,38,72,.13);
}
.news-card .thumb {
  position: relative;
  overflow: hidden;
  background: #eef2f6;
  border-radius: 18px 18px 0 0;
}
.news-card .thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
  transition: transform .4s ease;
}
.news-card:hover .thumb img {
  transform: scale(1.04);
}
.news-card .body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.news-card .meta-date {
  color: var(--muted);
  font-size: .84rem;
}
.news-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.35;
}
.news-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.55;
  flex: 1;
}
.news-card .read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: gap .2s ease;
}
.news-card .read-more:hover {
  gap: .55rem;
}

/* Filter toolbar */
.news-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 22px 0 24px;
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d0dbe7;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: .2s ease;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.news-count {
  margin-left: auto;
  color: var(--muted);
  font-size: .88rem;
}

/* Empty state */
.news-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
}
.news-empty svg {
  margin-bottom: 12px;
  opacity: .35;
}

/* ── Modal ──────────────────────────────────────────────────── */
.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 44, .55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  animation: modalFadeIn .25s ease;
}
.news-modal-overlay[hidden] {
  display: none;
}
@keyframes modalFadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}
.news-modal-box {
  background: #fff;
  border-radius: 28px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(11,22,44,.28);
  animation: modalSlideUp .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalSlideUp {
  from { transform: translateY(28px); opacity: 0 }
  to   { transform: translateY(0);   opacity: 1 }
}
.news-modal-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 52px);
  float: right;
  margin: 14px 14px -14px 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: .2s ease;
  color: var(--muted);
}
.news-modal-close:hover {
  background: var(--bg);
  color: var(--text);
}
.news-modal-img-wrap {
  margin: 0 0 0 0;
}
.news-modal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
  display: block;
  background: #eef2f6;
}
.news-modal-content {
  padding: 24px 28px 30px;
}
.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-modal-date {
  color: var(--muted);
  font-size: .88rem;
}
.news-modal-title {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.25;
}
.news-modal-body {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
}
.news-modal-cta {
  display: inline-flex;
}

/* Responsive noticias */
@media (max-width: 1080px) {
  .news-page-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .news-page-grid { grid-template-columns: 1fr; }
  .news-filter-bar { gap: 8px; }
  .news-count { margin-left: 0; width: 100%; }
  .news-modal-box { border-radius: 20px; }
  .news-modal-img { height: 170px; border-radius: 20px 20px 0 0; }
  .news-modal-content { padding: 18px 18px 24px; }
}
