@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Literata:opsz,wght@7..72,400;7..72,500;7..72,600;7..72,700&display=swap');

:root{
  --verde:#0f6f58;
  --verde-oscuro:#064736;
  --verde-profundo:#05392d;
  --verde-suave:#e7f1ee;
  --gris:#222326;
  --gris-medio:#68706d;
  --gris-claro:#f4f6f4;
  --blanco:#fff;
  --acento:#d8aa3f;
  --acento-claro:#efc75d;
  --sombra:0 18px 45px rgba(0,0,0,.09);
  --sombra-suave:0 10px 28px rgba(0,0,0,.08);
  --radio:24px;
}

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

body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--gris-claro);
  color:var(--gris);
  line-height:1.55;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1180px,92%);
  margin:0 auto;
}

/* ================= HEADER ================= */

.site-header{
  background:var(--blanco);
  border-bottom:1px solid rgba(0,0,0,.06);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 18px rgba(0,0,0,.035);
}

.header-inner{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.brand img{
  height:58px;
  width:auto;
  display:block;
}

.main-nav{
  display:flex;
  gap:28px;
  align-items:center;
  font-weight:800;
  font-size:15px;
}

.main-nav a{
  color:#111;
  padding:30px 0 26px;
  border-bottom:4px solid transparent;
}

.main-nav a:hover,
.main-nav a.is-active{
  color:var(--verde);
  border-bottom-color:var(--verde);
}

.menu-toggle{
  display:none;
  border:0;
  background:var(--verde);
  color:#fff;
  border-radius:12px;
  padding:10px 13px;
  font-size:21px;
}

/* ================= BOTONES ================= */

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  font-weight:900;
  transition:.2s ease;
}

.btn-primary{
  background:var(--acento-claro);
  color:#151515;
  box-shadow:0 10px 25px rgba(0,0,0,.13);
}

.btn-primary:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.72);
  color:#fff;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(5px);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.16);
}

.btn-green{
  background:var(--verde);
  color:#fff;
  margin-top:24px;
}

.btn-green:hover{
  background:var(--verde-oscuro);
}

.btn-icon{
  font-size:17px;
  line-height:1;
}

/* ================= HOME HERO ================= */

.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
}

.hero-home{
  min-height:560px;
  background-image:url('../img/villa-mitre-plaza.jpg');
  background-size:cover;
  background-position:center 55%;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(3,65,50,.94) 0%,rgba(7,83,65,.82) 30%,rgba(5,57,45,.38) 62%,rgba(0,0,0,.12) 100%);
}

.hero-overlay:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.16),rgba(0,0,0,.08));
  backdrop-filter:saturate(.9);
}

.hero-inner{
  position:relative;
  z-index:2;
}

.hero-content{
  max-width:570px;
  padding:70px 0 92px;
}

.eyebrow{
  display:inline-block;
  color:var(--acento-claro);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1.1px;
  font-weight:900;
  margin-bottom:16px;
}

.hero h1{
  font-size:clamp(50px,7vw,86px);
  line-height:.93;
  letter-spacing:-3px;
  margin-bottom:22px;
  text-shadow:0 6px 24px rgba(0,0,0,.28);
}

.hero p{
  font-size:19px;
  color:rgba(255,255,255,.94);
  max-width:610px;
  font-weight:600;
}

.hero p strong{
  color:var(--acento-claro);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.hero-curve{
  position:absolute;
  left:-6%;
  right:-6%;
  bottom:-74px;
  height:150px;
  background:var(--gris-claro);
  border-radius:50% 50% 0 0/70% 70% 0 0;
  z-index:3;
}

/* ================= QUICK LINKS ================= */

.quick-links{
  position:relative;
  z-index:4;
  background:var(--gris-claro);
  padding:22px 0 34px;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.quick-item{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  align-items:center;
  padding:18px 12px;
  border-right:1px solid rgba(15,111,88,.16);
}

.quick-item:last-child{
  border-right:0;
}

.quick-icon{
  width:58px;
  height:58px;
  border-radius:999px;
  background:var(--verde-suave);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--verde);
  font-size:25px;
}

.quick-item strong{
  display:block;
  color:var(--verde);
  font-size:15px;
  margin-bottom:4px;
}

.quick-item small{
  display:block;
  color:#35524a;
  font-size:13px;
  line-height:1.45;
}

.quick-item:hover strong{
  text-decoration:underline;
}

/* ================= HOME CONTENIDOS ================= */

.section{
  padding:66px 0;
}

.content-section{
  background:linear-gradient(180deg,#f7faf8 0%,#fff 100%);
}

.content-layout{
  display:grid;
  grid-template-columns:.9fr 1.75fr;
  gap:52px;
  align-items:center;
}

.section-title h2{
  font-size:clamp(31px,4vw,46px);
  line-height:1.06;
  margin-top:6px;
  color:#0e5343;
}

.section-title p{
  margin-top:14px;
  color:#44514d;
  font-size:17px;
}

.section-title-side h2:after{
  content:"";
  display:block;
  width:48px;
  height:4px;
  background:var(--verde);
  margin-top:22px;
  border-radius:999px;
}

/* Cards home: compactas, 3 columnas */
.content-section .news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.home-news-card{
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  transition:.25s ease;
  border:1px solid rgba(0,0,0,.04);
}

.home-news-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 45px rgba(0,0,0,.09);
}

.home-news-card img{
  width:100%;
  height:205px;
  object-fit:cover;
  display:block;
}

.home-news-card .news-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:16px 20px 8px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.home-news-card .news-meta span{
  color:var(--verde);
  font-weight:900;
}

.home-news-card .news-meta time{
  color:#7a8a84;
  font-weight:700;
}

.home-news-card h3{
  font-size:16px !important;
  line-height:1.35 !important;
  letter-spacing:-.15px !important;
  padding:0 20px 24px !important;
  margin:0 !important;
  font-weight:600 !important;
}

.home-news-card h3 a{
  color:#0d2d26;
  text-decoration:none;
}

.home-news-card h3 a:hover{
  color:var(--verde);
}

/* ================= BANNER COMUNIDAD ================= */

.community-banner{
  position:relative;
  background:linear-gradient(90deg,rgba(4,73,56,.96),rgba(11,120,94,.9)),url('../img/hero-plaza.jpg');
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:34px 0;
}

.community-inner{
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:24px;
  align-items:center;
}

.community-mark{
  width:64px;
  height:64px;
  border:2px solid rgba(255,255,255,.82);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.community-inner h2{
  font-size:29px;
  line-height:1.05;
}

.community-inner p{
  color:rgba(255,255,255,.85);
  font-size:17px;
}

/* ================= COMERCIAL HOME ================= */

.commercial{
  padding:70px 0;
}

.commercial-photo{
  position:relative;
  overflow:hidden;
  background:url('../img/hero-plaza.jpg') center/cover;
  color:#fff;
}

.commercial-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,57,45,.95),rgba(15,111,88,.85));
}

.commercial-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}

.commercial-inner h2{
  font-size:clamp(30px,4vw,44px);
  line-height:1.07;
}

.commercial-inner p{
  margin-top:16px;
  color:rgba(255,255,255,.86);
  font-size:17px;
}

.category-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.category-item{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.28);
  border-radius:18px;
  padding:18px 20px;
  color:var(--verde);
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,.09);
}

/* ================= PÁGINAS GENERALES ================= */

.page-hero{
  padding:90px 0 60px;
  background:
    linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),
    url('../img/hero-plaza.jpg') center/cover;
  border-bottom:1px solid rgba(0,0,0,.05);
}

.page-hero .eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:800;
  color:#d5a63a;
}

.page-hero h1{
  max-width:900px;
  font-size:clamp(42px,6vw,72px);
  line-height:.95;
  letter-spacing:-2px;
  margin-bottom:22px;
  color:var(--verde);
}

.page-hero p{
  max-width:720px;
  font-size:20px;
  line-height:1.6;
  color:#4d5b56;
}

.page-content{
  padding:70px 0 100px;
}

.notice{
  background:#fff;
  border-left:5px solid var(--acento);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--sombra);
}

/* ================= LISTADO PÚBLICO DE NOTAS ================= */

.page-content .news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:34px;
}

.page-content .news-card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05),0 30px 70px rgba(0,0,0,.06);
  transition:all .28s ease;
  position:relative;
}

.page-content .news-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.08),0 40px 90px rgba(0,0,0,.10);
}

.page-content .news-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.page-content .news-card:not(:has(img))::before{
  content:"Ciudad Villa Mitre";
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:16/9;
  font-size:26px;
  font-weight:900;
  color:rgba(15,111,88,.95);
  background:
    radial-gradient(circle at top left,rgba(213,166,58,.28),transparent 40%),
    linear-gradient(135deg,rgba(15,111,88,.10),rgba(15,111,88,.22));
}

.page-content .news-card .news-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 28px 0;
}

.page-content .news-card .news-meta span{
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--verde);
}

.page-content .news-card .news-meta time{
  font-size:12px;
  color:#81908b;
  font-weight:700;
}

.page-content .news-card h3{
  padding:18px 28px 0;
  margin:0;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.8px;
}

.page-content .news-card h3 a{
  color:#101616;
  text-decoration:none;
  transition:.2s ease;
}

.page-content .news-card h3 a:hover{
  color:var(--verde);
}

.nota-card-bajada{
  padding:18px 28px 34px;
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:#4f5d59;
}

/* ================= NOTA INDIVIDUAL ================= */

.nota-cover img{
  width:100%;
  max-height:620px;
  object-fit:cover;
  display:block;
}

.nota-single .container{
  max-width:920px;
}

.nota-header{
  padding:70px 0 40px;
}

.nota-categoria{
  display:inline-flex;
  margin-bottom:20px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--verde);
}

.nota-header h1{
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  letter-spacing:-2px;
  margin-bottom:28px;
  color:#121616;
}

.nota-bajada{
  font-size:24px;
  line-height:1.55;
  color:#4b5955;
  margin-bottom:26px;
}

.nota-fecha{
  color:#7d8b87;
  font-size:14px;
  font-weight:700;
}

/* =========================================================
.nota-content h3{
  font-family:'Inter',sans-serif !important;
  font-weight:800 !important;
  letter-spacing:-1px;
  line-height:1.12 !important;
  margin-top:52px;
  margin-bottom:20px;
  color:var(--verde);
}

.nota-content strong{
  font-weight:700;
}

.nota-content blockquote{
  margin:42px 0;
  padding:18px 0 18px 28px;
  border-left:4px solid var(--acento);
  color:#365048;
  font-style:italic;
  font-size:1.08em;
}

.nota-content ul,
.nota-content ol{
  margin:26px 0 32px 26px;
}

.nota-content li{
  margin-bottom:12px;
}

.nota-content a{
  color:var(--verde) !important;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.nota-content img{
  width:100%;
  height:auto;
  border-radius:26px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  margin:38px 0;
}

/* ===== MOBILE ===== */

@media(max-width:760px){

  .nota-content{
    font-size:20px !important;
    line-height:1.68 !important;
  }

}
/* ================= LISTING COMERCIAL ================= */

.listing-hero{
  background:linear-gradient(90deg,rgba(5,57,45,.95),rgba(15,111,88,.84)),url('../img/hero-plaza.jpg') center/cover;
  color:#fff;
  padding:64px 0 48px;
}

.listing-hero h1{
  color:#fff;
  font-size:clamp(38px,5vw,64px);
  line-height:.98;
  margin:8px 0 14px;
}

.listing-hero p{
  max-width:720px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  font-weight:600;
}

.listing-panel{
  margin-top:-28px;
  position:relative;
  z-index:3;
  padding-bottom:90px;
}

.listing-search{
  background:#fff;
  border-radius:24px;
  padding:20px;
  box-shadow:var(--sombra);
  border:1px solid rgba(0,0,0,.04);
}

.listing-search-grid{
  display:grid;
  grid-template-columns:1.2fr .75fr auto;
  gap:12px;
  align-items:end;
}

.listing-search label{
  display:block;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.7px;
  color:var(--verde);
  margin-bottom:7px;
}

.form-control{
  width:100%;
  height:48px;
  border:1px solid rgba(0,0,0,.13);
  background:#fff;
  border-radius:15px;
  padding:0 14px;
  font-size:15px;
  color:var(--gris);
  outline:none;
}

.form-control:focus{
  border-color:var(--verde);
  box-shadow:0 0 0 4px rgba(15,111,88,.10);
}

.btn-search{
  height:48px;
  border:0;
  border-radius:15px;
  background:var(--verde);
  color:#fff;
  font-weight:900;
  font-size:15px;
  padding:0 24px;
  cursor:pointer;
}

.btn-search:hover{
  background:var(--verde-oscuro);
}

/* Categorías */

.icon-categories{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:26px 0;
}

.category-circle{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  border:none;
  background:none;
  cursor:pointer;
  min-width:80px;
}

.category-circle .cat-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#fff;
  color:var(--verde);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  transition:.2s ease;
}

.category-circle small{
  font-size:11px;
  font-weight:800;
  color:var(--gris-medio);
  text-align:center;
}

.category-circle:hover .cat-icon,
.category-circle.active .cat-icon{
  background:var(--verde);
  color:#fff;
}

.category-circle.active small{
  color:var(--verde);
}

/* Cards */

.commerce-grid-listing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.commerce-card-pro{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--sombra-suave);
  border:1px solid rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  min-height:420px;
  transition:.2s ease;
}

.commerce-card-pro:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 52px rgba(0,0,0,.12);
}

.commerce-image{
  position:relative;
  aspect-ratio:1.45/1;
  background:linear-gradient(135deg,rgba(15,111,88,.12),rgba(216,170,63,.16));
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin:0;
  border-radius:0;
}

.commerce-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.commerce-placeholder{
  width:84px;
  height:84px;
  border-radius:50%;
  background:var(--verde);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:900;
}

.commerce-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.commerce-body h3{
  font-size:22px;
  line-height:1.12;
  margin:0;
  color:#14211d;
}

.commerce-badge{
  display:inline-flex;
  width:max-content;
  background:rgba(15,111,88,.12);
  color:var(--verde);
  border-radius:999px;
  padding:5px 11px;
  font-size:12px;
  font-weight:900;
}

/* Ubicación con ícono SVG */

.commerce-location{
  color:var(--gris-medio);
  font-size:14px;
  font-weight:700;
  display:flex;
  gap:7px;
  align-items:flex-start;
  margin:0;
}

.location-icon{
  width:17px;
  height:17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#d84b3f;
  flex-shrink:0;
  margin-top:2px;
}

.location-icon svg{
  width:17px;
  height:17px;
  fill:currentColor;
}

.commerce-desc{
  color:#4e5a56;
  font-size:14px;
  margin:0;
}

.commerce-highlight{
  background:rgba(216,170,63,.16);
  color:#6b4d08;
  border-left:4px solid var(--acento);
  border-radius:12px;
  padding:9px 11px;
  font-size:13px;
  font-weight:800;
  margin:2px 0 4px;
}

.commerce-actions{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:auto;
  padding-top:12px;
  justify-content:flex-start;
}

/* Íconos sociales SVG */

.icon-action{
  width:40px;
  height:40px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef4f2;
  color:var(--verde);
  border:1px solid rgba(15,111,88,.12);
  transition:.16s ease;
}

.icon-action svg{
  width:18px;
  height:18px;
}

.icon-action.instagram svg{
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}
.icon-action.instagram:hover svg{
  fill:none;
  stroke:#fff;
}

.icon-action.facebook svg,
.icon-action.whatsapp svg{
  fill:currentColor;
}

.icon-action:hover{
  background:var(--verde);
  color:#fff;
  transform:translateY(-1px);
}

.icon-action.whatsapp{
  background:#eef4f2;
  color:var(--verde);
}

.icon-action.whatsapp:hover{
  background:var(--verde);
  color:#fff;
}

.empty-state,
.no-results{
  background:#fff;
  border-radius:22px;
  padding:28px;
  box-shadow:var(--sombra-suave);
  color:var(--gris-medio);
  font-weight:700;
}
.icon-action.facebook svg,
.icon-action.whatsapp svg{
  fill:currentColor;
}

/* ================= FOOTER ================= */

.footer-main{
  background:#1c1c1c;
  color:#fff;
  padding:50px 0 20px;
  margin-top:20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.footer-col h4{
  margin-bottom:10px;
  font-size:16px;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col li{
  margin-bottom:6px;
  font-size:14px;
}

.footer-logo{
  font-size:22px;
  font-weight:800;
  color:#1F7A63;
  margin-bottom:10px;
}

.footer-bottom{
  margin-top:30px;
  text-align:center;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:15px;
}

.footer-bottom a{
  color:#D4A94F;
}

/* ================= BACK TO TOP ================= */

#backToTop{
  position:fixed;
  bottom:25px;
  right:25px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#1F7A63;
  color:white;
  border:none;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .3s ease;
  z-index:999;
}

#backToTop.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:980px){
  .quick-grid,
  .content-section .news-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .content-layout{
    grid-template-columns:1fr;
  }

  .hero-home{
    min-height:520px;
  }

  .hero-overlay{
    background:linear-gradient(90deg,rgba(3,65,50,.96) 0%,rgba(7,83,65,.86) 54%,rgba(5,57,45,.42) 100%);
  }

  .listing-search-grid{
    grid-template-columns:1fr;
  }

  .commerce-grid-listing{
    grid-template-columns:repeat(2,1fr);
  }

  .commercial-inner{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .header-inner{
    height:auto;
    padding:16px 0;
    align-items:center;
  }

  .brand img{
    height:48px;
  }

  .menu-toggle{
    display:block;
  }

  .main-nav{
    display:none;
    position:absolute;
    left:4%;
    right:4%;
    top:78px;
    background:#fff;
    border-radius:18px;
    padding:18px;
    box-shadow:var(--sombra);
    flex-direction:column;
    align-items:flex-start;
  }

  .main-nav.is-open{
    display:flex;
  }

  .main-nav a{
    padding:7px 0;
    border-bottom:0;
  }

  .hero-home{
    min-height:auto;
    background-position:center top;
  }

  .hero-content{
    padding:58px 0 94px;
  }

  .hero h1{
    font-size:clamp(46px,16vw,68px);
  }

  .hero p{
    font-size:17px;
  }

  .quick-grid,
  .content-section .news-grid,
  .page-content .news-grid,
  .commerce-grid-listing,
  .category-list{
    grid-template-columns:1fr;
  }

  .quick-item{
    border-right:0;
    border-bottom:1px solid rgba(15,111,88,.14);
  }

  .quick-item:last-child{
    border-bottom:0;
  }

  .community-inner{
    grid-template-columns:1fr;
    text-align:left;
  }

  .community-inner .btn{
    width:max-content;
  }

  .page-hero{
    padding:70px 0 40px;
  }

  .page-hero h1{
    font-size:46px;
    line-height:1;
  }

  .page-hero p{
    font-size:18px;
  }

  .page-content .news-card h3{
    font-size:26px;
  }

  .home-news-card img{
    height:240px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}
/* =========================================================
   NOTA INDIVIDUAL - HERO SOBRE IMAGEN + COMPARTIR
========================================================= */

.nota-hero-single{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(135deg,var(--verde-profundo),var(--verde));
}

.nota-hero-single img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.nota-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.16) 0%,rgba(0,0,0,.36) 42%,rgba(0,0,0,.78) 100%),
    linear-gradient(90deg,rgba(5,57,45,.78),rgba(5,57,45,.18));
  z-index:1;
}

.nota-hero-content{
  position:relative;
  z-index:2;
  padding:120px 0 70px;
  max-width:980px;
}

.nota-hero-content .nota-categoria{
  display:inline-flex;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  border-radius:999px;
  padding:8px 13px;
  margin-bottom:22px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1.1px;
  backdrop-filter:blur(6px);
}

.nota-hero-content h1{
  max-width:930px;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-2.5px;
  margin:0 0 24px;
  text-shadow:0 12px 34px rgba(0,0,0,.38);
}

.nota-hero-content .nota-bajada{
  max-width:820px;
  font-size:clamp(20px,2.4vw,28px);
  line-height:1.45;
  color:rgba(255,255,255,.9);
  margin:0 0 24px;
  font-weight:600;
}

.nota-hero-content .nota-fecha{
  color:rgba(255,255,255,.78);
  font-size:14px;
  font-weight:800;
}

.nota-body-wrap{
  background:#fff;
  padding:42px 0 90px;
}

.nota-body-container{
  max-width:920px;
}

.share-box{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:38px;
  padding:16px;
  border-radius:999px;
  background:#f4f6f4;
  border:1px solid rgba(15,111,88,.10);
}

.share-box span{
  color:var(--verde);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-right:4px;
}

.share-box a,
.share-box button{
  border:0;
  border-radius:999px;
  background:#fff;
  color:#123f34;
  padding:10px 14px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.share-box a:hover,
.share-box button:hover{
  background:var(--verde);
  color:#fff;
}
/* =========================================================
   BOTONES DE COMPARTIR - NOTA INDIVIDUAL
========================================================= */

.share-box{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:38px;
  padding:14px 0;
  background:transparent;
  border:0;
}

.share-label{
  font-size:15px;
  font-weight:700;
  color:#31413c;
  letter-spacing:0;
  text-transform:none;
  margin-right:6px;
}

.share-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--verde);
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1;
  box-shadow:0 8px 20px rgba(15,111,88,.16);
  transition:.18s ease;
  cursor:pointer;
}

.share-btn:hover{
  transform:translateY(-2px);
  background:var(--verde-oscuro);
  color:#fff;
}

.share-wa{
  background:#0f6f58;
}

.share-fb{
  background:#123f34;
  font-family:Arial,Helvetica,sans-serif;
  font-size:19px;
  font-weight:900;
}

.share-x{
  background:#2f3936;
}

.share-copy{
  background:#d8aa3f;
  color:#1d1d1d;
  font-size:16px;
}

.share-copy:hover{
  background:#b98d28;
  color:#fff;
}

@media(max-width:760px){
  .share-box{
    gap:9px;
  }

  .share-label{
    width:100%;
    margin-bottom:2px;
  }
}
/* =========================================================
   NOTA INDIVIDUAL - LAYOUT CON SIDEBAR Y SHARE
========================================================= */

.nota-layout{
  width:min(1440px,94vw);
  max-width:none;
  margin-left:auto;
  margin-right:auto;
  display:grid;
  grid-template-columns:minmax(0, 980px) 320px;
  gap:70px;
  align-items:start;
}

.nota-main{
  min-width:0;
}

.nota-sidebar{
  position:sticky;
  top:110px;
}

.sidebar-box{
  background:#f5f7f5;
  border:1px solid rgba(15,111,88,.10);
  border-radius:24px;
  padding:24px;
  margin-bottom:22px;
  color:#31413c;
}

.sidebar-box h3{
  color:var(--verde);
  font-size:20px;
  line-height:1.15;
  margin-bottom:10px;
}

.sidebar-box p{
  font-size:14px;
  line-height:1.55;
  color:#596762;
}

.sidebar-ad{
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    radial-gradient(circle at top left, rgba(216,170,63,.22), transparent 44%),
    linear-gradient(135deg, rgba(15,111,88,.08), rgba(15,111,88,.16));
}

.sidebar-ad span{
  font-size:12px;
  font-weight:800;
  color:#6a776f;
  margin-bottom:8px;
}

.sidebar-ad strong{
  color:var(--verde);
  font-size:28px;
  line-height:1.05;
  margin-bottom:12px;
}

/* Compartir */

.share-box{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:36px;
  padding:0;
  background:transparent;
  border:0;
}

.share-label{
  font-size:15px;
  font-weight:700;
  color:#31413c;
  letter-spacing:0;
  text-transform:none;
  margin-right:6px;
}

.share-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1;
  transition:.18s ease;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.share-wa{background:#0f6f58;}
.share-fb{background:#123f34;font-family:Arial,Helvetica,sans-serif;font-size:19px;font-weight:900;}
.share-x{background:#2f3936;}
.share-copy{background:#d8aa3f;color:#1d1d1d;font-size:16px;}

.share-btn:hover{
  background:#f3f5f3;
  color:var(--verde);
  transform:translateY(-2px);
}

/* Cuerpo: separación prolija de párrafos */

.nota-content p{
  margin-top:0 !important;
  margin-bottom:28px !important;
}

.nota-content br + br{
  display:block;
  content:"";
  margin-top:18px;
}

.nota-content div{
  margin-bottom:24px;
}

/* Evita párrafos vacíos pegados desde Word */
.nota-content p:empty{
  display:none;
}

@media(max-width:980px){
  .nota-layout{
    grid-template-columns:1fr;
    gap:34px;
  }

  .nota-sidebar{
    position:relative;
    top:auto;
  }
}

@media(max-width:760px){
  .share-label{
    width:100%;
  }

  .share-box{
    gap:9px;
  }
}
/* =========================================================
   LISTING COMERCIOS - CARDS MÁS COMPACTAS
========================================================= */

.commerce-grid-listing{
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.commerce-card-pro{
  min-height:auto;
  border-radius:22px;
}

.commerce-image{
  aspect-ratio:16 / 9;
  padding:28px;
}

.commerce-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.commerce-placeholder{
  width:68px;
  height:68px;
  font-size:25px;
}

.commerce-body{
  padding:16px 17px 18px;
  gap:7px;
}

.commerce-body h3{
  font-size:18px;
  line-height:1.15;
}

.commerce-badge{
  font-size:11px;
  padding:4px 9px;
}

.commerce-location,
.commerce-desc{
  font-size:13px;
  line-height:1.35;
}

.commerce-highlight{
  font-size:12px;
  padding:7px 9px;
}

.commerce-actions{
  gap:7px;
  padding-top:8px;
}

.icon-action{
  width:35px;
  height:35px;
  font-size:11px;
}

.icon-action svg{
  width:16px;
  height:16px;
}

@media(max-width:1100px){
  .commerce-grid-listing{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:760px){
  .commerce-grid-listing{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .commerce-image{
    padding:22px;
  }

  .commerce-body h3{
    font-size:16px;
  }
}

@media(max-width:520px){
  .commerce-grid-listing{
    grid-template-columns:1fr;
  }
}
/* =========================================================
   HEADER PREMIUM - CIUDAD VILLA MITRE
========================================================= */

body{
  font-family:'Inter',Arial,Helvetica,sans-serif;
}

.site-header{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(0,0,0,.045);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 8px 28px rgba(0,0,0,.045);
  backdrop-filter:blur(12px);
}

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

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  height:64px;
  width:auto;
  display:block;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:15px;
  font-weight:600;
  letter-spacing:.1px;
}

.main-nav a{
  color:#1f2523;
  padding:36px 0 31px;
  border-bottom:3px solid transparent;
  transition:.18s ease;
}

.main-nav a:hover,
.main-nav a.is-active{
  color:var(--verde);
  border-bottom-color:var(--verde);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:14px;
  background:var(--verde);
  color:#fff;
  font-size:22px;
  align-items:center;
  justify-content:center;
}

@media(max-width:760px){

  .header-inner{
    height:76px;
  }

  .brand img{
    height:48px;
  }

  .menu-toggle{
    display:flex;
  }

  .main-nav{
    display:none;
    position:absolute;
    left:4%;
    right:4%;
    top:82px;
    background:#fff;
    border-radius:22px;
    padding:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .main-nav.is-open{
    display:flex;
  }

  .main-nav a{
    width:100%;
    padding:12px 6px;
    border-bottom:0;
  }
}
/* =========================================================
   HOME - CTA DIRECTORIO Y ESPACIADO FINAL
========================================================= */

.btn-directory{
  margin-top:26px;
  background:#fff;
  color:var(--verde);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.btn-directory:hover{
  background:var(--acento-claro);
  color:#171717;
  transform:translateY(-2px);
}

.commercial-photo{
  margin-bottom:70px;
}

.footer-main{
  margin-top:0;
}
/* =========================================================
   CTA DIRECTORIO HOME
========================================================= */

.directory-feature-card{
  background:rgba(255,255,255,.96);
  border-radius:34px;
  padding:42px;
  max-width:470px;
  margin-left:auto;
  box-shadow:0 28px 60px rgba(0,0,0,.16);
  backdrop-filter:blur(10px);
}

.directory-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#eef5f2;
  color:var(--verde);
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.directory-feature-card h3{
  font-size:36px;
  line-height:1.08;
  margin:0 0 18px;
  color:#0f1720;
  font-weight:800;
  letter-spacing:-1.4px;
}

.directory-feature-card p{
  font-size:17px;
  line-height:1.7;
  color:#51606b;
  margin-bottom:28px;
}

.btn-directory-large{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 28px;
  border-radius:999px;
  background:var(--verde);
  color:#fff;
  font-size:15px;
  font-weight:700;
  transition:.22s ease;
  box-shadow:0 14px 35px rgba(0,0,0,.18);
}

.btn-directory-large:hover{
  transform:translateY(-3px);
  background:#0f6d59;
  color:#fff;
}

@media(max-width:980px){

  .directory-feature-card{
    margin:34px auto 0;
    max-width:100%;
    padding:34px;
  }

  .directory-feature-card h3{
    font-size:30px;
  }

}
/* =========================
   CTA DIRECTORIO REFINADO
========================= */

.compact-card{
  max-width: 420px;
  padding: 42px;
  border-radius: 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.compact-card h3{
  font-size: 2rem;
  line-height: 1.08;
  margin: 18px 0 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #101828;
}

.compact-card p{
  font-size: 1rem;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 28px;
}

.directory-label{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eef2f1;
  color: #0a7a67;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.directory-inline-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #0a7a67;
  text-decoration: none;
  transition: all .25s ease;
}

.directory-inline-link:hover{
  transform: translateX(4px);
  color: #075e51;
}

@media (max-width: 900px){

  .compact-card{
    max-width: 100%;
    padding: 34px 28px;
  }

  .compact-card h3{
    font-size: 1.7rem;
  }

}
/* =========================================================
   LANDING ANUNCIAR
========================================================= */

.advertise-hero{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  background:url('/assets/img/hero-plaza.jpg') center/cover;
}

.advertise-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,57,45,.94),rgba(15,111,88,.78)),
    radial-gradient(circle at 80% 20%,rgba(239,199,93,.28),transparent 34%);
}

.advertise-hero-inner{
  position:relative;
  z-index:2;
  max-width:880px;
  padding:90px 0;
}

.advertise-hero h1{
  font-size:clamp(46px,6vw,78px);
  line-height:.96;
  letter-spacing:-2.5px;
  margin:0 0 24px;
}

.advertise-hero p{
  max-width:720px;
  font-size:21px;
  line-height:1.6;
  color:rgba(255,255,255,.9);
}

.advertise-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:32px;
}

.advertise-section{
  padding:70px 0;
  background:#f7faf8;
}

.advertise-grid{
  display:grid;
  grid-template-columns:1.35fr .85fr .85fr;
  gap:24px;
}

.advertise-card{
  background:#fff;
  border-radius:30px;
  padding:32px;
  box-shadow:0 18px 45px rgba(0,0,0,.07);
  border:1px solid rgba(0,0,0,.04);
}

.advertise-card span{
  display:inline-flex;
  color:var(--verde);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  margin-bottom:16px;
}

.advertise-card h2{
  font-size:34px;
  line-height:1.08;
  letter-spacing:-1.2px;
  margin-bottom:18px;
  color:#111b18;
}

.advertise-card h3{
  font-size:24px;
  line-height:1.15;
  margin-bottom:14px;
  color:var(--verde);
}

.advertise-card p{
  color:#52605c;
  font-size:16px;
  line-height:1.7;
}

.advertise-link{
  display:inline-flex;
  margin-top:24px;
  color:var(--verde);
  font-weight:900;
}

.commercial-contact-section{
  padding:0 0 90px;
  background:#f7faf8;
}

.commercial-contact-box{
  background:linear-gradient(135deg,var(--verde-profundo),var(--verde));
  color:#fff;
  border-radius:36px;
  padding:42px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.commercial-contact-box h2{
  font-size:38px;
  line-height:1.06;
  margin-bottom:12px;
}

.commercial-contact-box p{
  color:rgba(255,255,255,.86);
  font-size:17px;
  max-width:620px;
}

.commercial-contact-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.commercial-contact-buttons a{
  min-width:190px;
  background:#fff;
  color:#0f6f58;
  border-radius:24px;
  padding:18px 20px;
  display:flex;
  flex-direction:column;
  gap:4px;
  box-shadow:0 12px 30px rgba(0,0,0,.14);
  transition:.2s ease;
}

.commercial-contact-buttons a:hover{
  transform:translateY(-3px);
  background:var(--acento-claro);
  color:#171717;
}

.commercial-contact-buttons strong{
  font-size:18px;
}

.commercial-contact-buttons span{
  font-size:15px;
  font-weight:700;
}

@media(max-width:900px){
  .advertise-grid,
  .commercial-contact-box{
    grid-template-columns:1fr;
  }

  .commercial-contact-buttons{
    width:100%;
  }

  .commercial-contact-buttons a{
    flex:1;
  }
}

@media(max-width:600px){
  .advertise-hero{
    min-height:auto;
  }

  .advertise-hero-inner{
    padding:70px 0;
  }

  .advertise-actions,
  .commercial-contact-buttons{
    flex-direction:column;
  }

  .commercial-contact-buttons a{
    width:100%;
  }
}
/* =========================
   AVATARES ÁREA COMERCIAL
========================= */

.commercial-contact-buttons a{
  display:flex;
  align-items:center;
  gap:16px;
}

.commercial-avatar{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 8px 20px rgba(0,0,0,.12);
}

.male-avatar{
  background:linear-gradient(135deg,#f3f4f6,#dfe4ea);
}

.female-avatar{
  background:linear-gradient(135deg,#ffe0ea,#ffd0df);
}

.commercial-contact-info{
  display:flex;
  flex-direction:column;
}

.commercial-contact-info strong{
  font-size:18px;
  color:#0f1720;
}

.commercial-contact-info span{
  font-size:14px;
  color:#4f5f5a;
  font-weight:700;
}
/* ================= SIDEBAR BANNER ================= */

.sidebar-banner{
  padding:0;
  overflow:hidden;
  background:transparent;
  border:0;
  box-shadow:none;
}

.sidebar-banner a{
  display:block;
}

.sidebar-banner img{
  width:100%;
  height:auto;
  border-radius:22px;
  box-shadow:0 14px 34px rgba(0,0,0,.10);
}
/* =========================================================
   COMUNIDAD
========================================================= */

.community-hero-page{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  background:url('../img/hero-plaza.jpg') center/cover;
}

.community-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,57,45,.94),rgba(15,111,88,.82)),
    radial-gradient(circle at 85% 20%,rgba(216,170,63,.24),transparent 34%);
}

.community-hero-inner{
  position:relative;
  z-index:2;
  max-width:840px;
  padding:90px 0;
}

.community-hero-page h1{
  font-size:clamp(46px,6vw,82px);
  line-height:.94;
  letter-spacing:-2.5px;
  margin:0 0 24px;
}

.community-hero-page p{
  max-width:720px;
  font-size:21px;
  line-height:1.6;
  color:rgba(255,255,255,.9);
}

/* Redes */

.community-social-section{
  padding:70px 0;
  background:#f7faf8;
}

.community-social-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.community-social-card{
  position:relative;
  overflow:hidden;
  background:#fff;
  border-radius:32px;
  padding:34px;
  display:flex;
  gap:22px;
  align-items:flex-start;
  box-shadow:0 18px 45px rgba(0,0,0,.06);
  transition:.22s ease;
}

.community-social-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 60px rgba(0,0,0,.10);
}

.community-social-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  flex-shrink:0;
  color:#fff;
}

.instagram-card .community-social-icon{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.facebook-card .community-social-icon{
  background:#1877f2;
}

.whatsapp-card .community-social-icon{
  background:#25D366;
}

.community-social-card span{
  display:inline-flex;
  margin-bottom:8px;
  color:var(--verde);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.community-social-card h3{
  font-size:28px;
  line-height:1.08;
  margin-bottom:14px;
  color:#10201c;
}

.community-social-card p{
  font-size:16px;
  line-height:1.65;
  color:#586763;
}

/* Mensaje final */

.community-message-section{
  padding:0 0 90px;
  background:#f7faf8;
}

.community-message-box{
  background:linear-gradient(135deg,var(--verde-profundo),var(--verde));
  color:#fff;
  border-radius:38px;
  padding:44px;
  display:grid;
  grid-template-columns:84px 1fr;
  gap:26px;
  align-items:center;
  box-shadow:0 26px 70px rgba(0,0,0,.12);
}

.community-message-mark{
  width:74px;
  height:74px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}

.community-message-box h2{
  font-size:40px;
  line-height:1.02;
  margin-bottom:12px;
}

.community-message-box p{
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
  max-width:760px;
}

@media(max-width:980px){

  .community-social-grid{
    grid-template-columns:1fr;
  }

  .community-message-box{
    grid-template-columns:1fr;
    text-align:center;
  }

  .community-message-mark{
    margin:0 auto;
  }

}

@media(max-width:640px){

  .community-hero-page{
    min-height:auto;
  }

  .community-hero-inner{
    padding:70px 0;
  }

  .community-hero-page h1{
    font-size:52px;
  }

  .community-hero-page p{
    font-size:18px;
  }

  .community-social-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .community-social-card h3{
    font-size:24px;
  }

  .community-message-box h2{
    font-size:32px;
  }

}
.community-social-icon svg{
  width:28px;
  height:28px;
}
.logout-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;
    background:#c62828;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition:.2s ease;
}

.logout-btn:hover{
    background:#a81f1f;
}
/* ================= POPUP CVM ================= */

.cvm-popup{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
}

.cvm-popup.is-visible{
  display:flex;
}

.cvm-popup-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(4px);
}

.cvm-popup-box{
  position:relative;
  z-index:2;
  width:min(520px,94vw);
  animation:cvmPopupIn .22s ease;
}

.cvm-popup-box img{
  width:100%;
  height:auto;
  display:block;
  border-radius:26px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.cvm-popup-close{
  position:absolute;
  top:-16px;
  right:-16px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:#123f34;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

@keyframes cvmPopupIn{
  from{
    opacity:0;
    transform:translateY(12px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media(max-width:760px){
  .cvm-popup-box{
    width:min(420px,92vw);
  }

  .cvm-popup-close{
    top:-12px;
    right:-10px;
  }
}

/* =========================================================
   AJUSTES EDITORIALES - NOTAS CIUDAD VILLA MITRE
   Ancho más generoso en PC + tipografía editorial
========================================================= */

@media (min-width: 981px){
  .nota-layout{
    max-width:1280px;
    grid-template-columns:minmax(0, 860px) 320px;
    gap:64px;
  }

  .nota-main{
    width:100%;
  }
}

.nota-content{
  font-family:'Literata', Georgia, 'Times New Roman', serif;
  font-size:20px;
  line-height:1.78;
  color:#222826;
  letter-spacing:-.01em;
}

.nota-content p{
  margin-top:0 !important;
  margin-bottom:30px !important;
}

.nota-content h2,
.nota-content h3,
.nota-content h4{
  font-family:'Inter', Arial, Helvetica, sans-serif;
  color:var(--verde);
  letter-spacing:-.03em;
  line-height:1.15;
  margin:48px 0 18px;
}

.nota-content h2{font-size:34px;}
.nota-content h3{font-size:28px;}
.nota-content h4{font-size:23px;}

.nota-content strong{
  font-weight:700;
}

.nota-content blockquote{
  margin:40px 0;
  padding:20px 0 20px 28px;
  border-left:5px solid var(--acento);
  color:#365048;
  font-style:italic;
  font-size:1.08em;
  background:linear-gradient(90deg, rgba(216,170,63,.10), transparent 70%);
}

.nota-content ul,
.nota-content ol{
  margin:24px 0 32px 30px;
  padding-left:8px;
}

.nota-content li{
  margin-bottom:12px;
}

.nota-content a{
  color:var(--verde) !important;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:4px;
}

.nota-content img{
  width:100%;
  height:auto;
  border-radius:26px !important;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  margin:38px 0;
}

.nota-content iframe{
  max-width:100%;
  border-radius:22px;
}

@media(max-width:980px){
  .nota-layout{
    max-width:92%;
  }
}

@media(max-width:760px){
  .nota-content{
    font-family:'Inter', Arial, Helvetica, sans-serif;
    font-size:18px;
    line-height:1.72;
    letter-spacing:0;
  }

  .nota-content h2{font-size:28px;}
  .nota-content h3{font-size:24px;}
  .nota-content h4{font-size:21px;}
}
/* =========================================================
   SHARE BUTTONS - NOTAS
========================================================= */

.share-buttons{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 38px;
}

.share-label{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--verde);
  margin-right:6px;
}

.share-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:var(--verde);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.18s ease;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.share-btn svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.share-btn:hover{
  background:#eef4f2;
  color:var(--verde);
  transform:translateY(-2px);
}

.share-btn.copied{
  background:var(--acento);
  color:#1d1d1d;
}
/* =========================================================
   AJUSTE EQUILIBRADO NOTA INDIVIDUAL PC
========================================================= */

@media (min-width: 981px){

  .nota-body-wrap > .container,
  .nota-body-container{
    width: min(1240px, 92vw) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nota-layout{
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 840px) 300px !important;
    gap: 56px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nota-main,
  .nota-content{
    width: 100% !important;
    max-width: none !important;
  }

  .nota-hero-content{
    width: min(1240px, 92vw) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nota-hero-content h1,
  .nota-hero-content .nota-bajada{
    max-width: 840px !important;
  }
}
/* =========================================================
   CUERPO DE NOTA MOBILE IGUAL A PC
========================================================= */

@media (max-width: 760px){

  .nota-content,
  .nota-content p,
  .nota-content li,
  .nota-content blockquote{
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 21px !important;
    line-height: 1.72 !important;
    letter-spacing: -.1px;
  }

}