/* ====== NAV MODERNA BLANCO/NEGRO ====== */
:root{
  --bg: #0b0b0f;
  --card: rgba(255,255,255,.06);
  --text: #ffffff;
  --line: #ffffff1f;
  --white: #ffffff;
  --black: #0b0b0f;
  --radius: 14px;
}


/* Header sticky con “glass” negro */
.site-header{
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
  z-index: 999;
  background: #000000;
  backdrop-filter: blur(10px);
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.logo {
    width:75px;
    height: auto;
}

.nav-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  font-weight: 800;
  letter-spacing: .5px;
}

.brand-name{
  font-weight: 800;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-family: 'Courier New', Courier, monospace;
  color: #ffffff
}

/* Nav desktop */
.nav{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
}


.nav-link{
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .18s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover{
  color: #ffffff;
  background: #ffffff14;
}

/* Estado activo: agrega class="active" al link de la página actual */
.nav-link.active{
  color: var(--black);
  background: var(--white);
}

/* Acciones */
.nav-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botones */
.btn-1{
  text-decoration: none;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .18s ease;
}

.btn-outline-1{
  color: #e5e5e5;
  border: 1px solid #ffffff1f;
}

.btn-outline-1:hover{
  background: #ffffff14;
  color: #ffffff;
}

.btn-solid{
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}

.btn-solid:hover{
  transform: translateY(-1px);
}

/* Burger */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  display: none; /* solo móvil */
  cursor: pointer;
}

.burger span{
  display: block;
  height: 2px;
  width: 18px;
  background: var(--white);
  margin: 4px auto;
  border-radius: 2px;
  transition: .18s ease;
}

/* Menú móvil */
.mobile-menu{
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 16px 16px;
}

.mobile-menu.open{
  display: grid;
  gap: 10px;
}

.m-link{
  color: #ffffff;
  text-decoration: none;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.m-link:hover{
  background: rgba(255,255,255,.10);
}

.m-cta{
  width: 100%;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px){
  .nav{ display: none; }
  .burger{ display: inline-flex; align-items:center; justify-content:center; }
}
/* =========================================================
   CSS corporativo (negro/blanco) para el HTML MAIN → FOOTER
   Limpio, moderno, responsive, buena jerarquía visual
   ========================================================= */

:root{
  --bg:#0b0b0f;
  --bg-2:#11111a;
  --text:#0b0b0f;
  --muted:#5b5e6a;
  --line:rgba(0,0,0,.10);
  --line2:rgba(255,255,255,.10);
  --card:#ffffff;
  --soft:#f6f7fb;

  --radius:18px;
  --radius2:14px;

  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow2: 0 10px 26px rgba(0,0,0,.08);

  --container:1180px;
}

/* Base */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  margin-top: 50px;
  background:#fff;
  line-height:1.55;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
p{ margin:0; }
h1,h2,h3{ margin:0; letter-spacing:-.4px; }
ul,ol{ margin:0; padding:0; }
li{ list-style:none; }

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* Botones */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 650;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); opacity:.92; }

.btn-solid{
  background: var(--bg);
  color: #fff;
  border:1px solid rgba(255,255,255,.06);
}
.btn-solid:hover{ background:#000; }

.btn-outline{
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(0,0,0,.18);
}
.btn-outline:hover{ background: rgba(0,0,0,.04); }

/* Secciones */
.section{ padding:72px 0; }

.section-head{ margin-bottom: 22px; }
.section-head h2{
  font-size: 34px;
  line-height:1.15;
  color: var(--bg);
}
.section-head p{
  margin-top: 10px;
  color: var(--muted);
  max-width: 72ch;
}

/* Layout helpers */
.grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}

/* =========================
   HERO
   ========================= */
.hero{
  padding: 86px 0 38px;
  background:
    radial-gradient(900px 420px at 12% 12%, rgba(0,0,0,.08), transparent 60%),
    radial-gradient(800px 360px at 92% 18%, rgba(0,0,0,.06), transparent 55%),
    #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items:center;
}

.pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  color: var(--bg);
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 12px;
}

.hero h1{
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--bg);
}

.lead{
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 70ch;
}

.hero-benefits{
  display:grid;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-benefits li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color:#2a2c36;
  font-weight: 560;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 16px;
}

.seo-micro{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  color: rgba(0,0,0,.62);
  font-size: 13px;
}
.seo-micro span{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
}

/* Hero media */
.hero-card{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
}
.hero-card img{
  width:100%;
  height: 380px;
  object-fit: cover;
}
.hero-caption{
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(0,0,0,.68);
  background: rgba(0,0,0,.02);
  border-top: 1px solid rgba(0,0,0,.08);
}

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.badge{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.badge:hover{
    background: #fafafa
}
.badge strong{
  display:block;
  font-size: 14px;
  color: var(--bg);
}
.badge span{
  display:block;
  font-size: 13px;
  color: rgba(0,0,0,.65);
  margin-top: 2px;
}

.hero-badges-1{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
  padding: 20px 50px;
}

.badge-1{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.badge-1 strong{
  display:block;
  font-size: 14px;
  color: var(--bg);
}
.badge-1 span{
  display:block;
  font-size: 13px;
  color: rgba(0,0,0,.65);
  margin-top: 2px;
}
@media (max-width: 768px){

  .yv-about-corporate {
    width: 100%;
    padding: 10px 0px;
    
  }
  .yv-about-corporate-container {
    width: 100%;
    margin: auto;
    padding: 0px !important;
  }
  .text-1 {
    text-align:start;
  }
  
  .hero-badges-1{
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 20px;
    gap: 10px;
    margin-top: 12px;
  }
  .badge-1{
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.02);
  }
  .badge-1 strong{
    display:block;
    font-size: 14px;
    color: var(--bg);
  }
  .badge-1 span{
    display:block;
    font-size: 13px;
    color: rgba(0,0,0,.65);
    margin-top: 2px;
  }
}
/* =========================
   STRIP (banda negra)
   ========================= */
.strip{
  background: var(--bg);
  color: #fff;
  padding: 18px 0;
}

.strip-inner{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.strip-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}

.strip-item .ico{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 18px;
}
.strip-item strong{
  display:block;
  font-size: 15px;
}
.strip-item p{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

/* =========================
   MEDIA + CONTENT
   ========================= */
.media-card{
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 5px 15px #4a4a4a;
}

.media-card img,
.media-card iframe{
  width:100%;
  height: 430px;
  object-fit: cover;
  border:0;
  display:block;
}

.content h2{
  font-size: 34px;
  line-height:1.15;
  color: var(--bg);
  margin-bottom: 12px;
}
.content p{
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 72ch;
}

/* Checklist */
.checklist{
  display:grid;
  gap: 10px;
  margin: 16px 0 18px;
}
.checklist li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color:#2a2c36;
  font-weight: 560;
}
.checklist li span{
  width: 22px;
  height: 22px;
  display:grid;
  place-items:center;
  border-radius: 8px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}

/* Mini cards */
.mini-cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.mini{
  padding: 8px 8px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.mini strong{
  display:block;
  font-size: 14px;
  color: var(--bg);
}
.mini p{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

/* =========================
   SERVICIOS
   ========================= */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.card img{
  width:100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 12px;
}

.card h3{
  font-size: 18px;
  color: var(--bg);
  margin-bottom: 6px;
}
.card p{
  font-size: 14px;
  color: var(--muted);
}

/* =========================
   PROCESO
   ========================= */
.steps{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.steps li{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.steps li:hover{
    box-shadow: 20px 20px 25px rgba(0,0,0,0.10);
  background: rgba(0,0,0,.04);
}
.steps li strong{
  display:block;
  color: var(--bg);
  font-size: 15px;
  margin-bottom: 2px;
}
.steps li span{
  color: rgba(0,0,0,.70);
  font-size: 13px;
}

.note{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.78);
  font-size: 13px;
}

/* =========================
   GALERÍA
   ========================= */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery figure{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.gallery img{
  width:100%;
  height: 220px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery figure:hover img{
  transform: scale(1.03);
}

/* =========================
   FAQ
   ========================= */
.faq{
  display:grid;
  gap: 10px;
}
.faq details{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  background: rgba(0,0,0,.02);
  padding: 12px 12px;
}
.faq summary{
  cursor:pointer;
  font-weight: 700;
  color: var(--bg);
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq details p{
  margin-top: 10px;
  color: rgba(0,0,0,.70);
  font-size: 14px;
}

/* =========================
   CONTACTO
   ========================= */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.contact-card{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.contact-card strong{
  display:block;
  color: var(--bg);
  font-size: 14px;
}
.contact-card p{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0,0,0,.70);
}
.cta-row{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

/* Schema (oculto) */
.schema{ display:none; }

/* =========================
   FOOTER
   ========================= */
.site-footer{
  background: var(--bg);
  color:#fff;
  padding: 60px 0 20px;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 26px;
  align-items:start;
}
.footer-brand{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.footer-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.footer-text{
  color: rgba(255,255,255,.78);
  font-size: 14px;
  max-width: 60ch;
}

.footer-col h3{
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.footer-links li{
  margin-bottom: 8px;
  color: rgba(255,255,255,.80);
  font-size: 14px;
}
.footer-links a{
  color: rgba(255,255,255,.80);
}
.footer-links a:hover{
  color:#fff;
}

.footer-cta{
  margin-top: 10px;
  width: 100%;
  justify-content:center;
}

.footer-bottom{
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}
.madeby strong{ color:#fff;}
@media (max-width: 768px){
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 38px; }
  .hero-card img{ height: 320px; }
  .hero-badges{ grid-template-columns: 1fr; }
  .strip-inner{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .media-card img, .media-card iframe{ height: 400px; }

  .mini-cards{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .hero{ padding: 70px 0 30px; }
  .hero h1{ font-size: 34px; }
  .btn{ width: 100%; }
  .hero-actions{ gap: 10px; }
}
.yv-about-main{
    width: 100%;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

.yv-center{
    text-align: center;
}

/* HERO */
.yv-about-hero{
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff, #f6f6f6);
}

.yv-about-hero-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.yv-about-badge{
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.yv-about-title{
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #000000;
}

.yv-about-text{
    font-size: 17px;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 18px;
}

.yv-about-hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.yv-about-btn-dark,
.yv-about-btn-light{
    display: inline-block;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.yv-about-btn-dark{
    background: #000000;
    color: #ffffff;
}

.yv-about-btn-dark:hover{
    background: #222222;
}

.yv-about-btn-light{
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.yv-about-btn-light:hover{
    background: #000000;
    color: #ffffff;
}

.yv-about-hero-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* SECCIONES */
.yv-about-intro,
.yv-about-purpose,
.yv-about-values,
.yv-about-location,
.yv-about-final-cta{
    padding: 85px 0;
}

.yv-about-intro-container,
.yv-about-purpose-container,
.yv-about-values-container,
.yv-about-location-container,
.yv-about-final-cta-container,
.yv-about-footer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.yv-about-intro-container,
.yv-about-purpose-container,
.yv-about-location-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.yv-about-section-title{
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #000000;
}

.yv-about-section-text{
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    max-width: 90%;
}

/* CARD INFO */
.yv-about-info-card{
    background: #f8f8f8;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
}

.yv-about-info-title{
    font-size: 24px;
    margin-bottom: 18px;
    color: #000000;
}

.yv-about-info-list li{
    margin-bottom: 12px;
    font-size: 16px;
    color: #444444;
    line-height: 1.7;
}

/* PURPOSE */
.yv-about-purpose-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.yv-about-check-list{
    margin-top: 22px;
    padding-left: 18px;
}

.yv-about-check-list li{
    margin-bottom: 12px;
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

/* CORPORATE */
.yv-about-corporate{
    background: #fafafa;
}

/* VALUES */
.yv-about-values-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.yv-about-value-card{
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.yv-about-value-card h3{
    font-size: 22px;
    margin-bottom: 14px;
    color: #000000;
}

.yv-about-value-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

/* LOCATION */
.yv-about-location-map-placeholder{
    width: 100%;
    min-height: 360px;
    background: #f3f3f3;
    border: 1px dashed #cfcfcf;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777777;
    text-align: center;
}

/* CTA */
.yv-about-final-cta{
    background: #000000;
    text-align: center;
}

.yv-about-final-cta-title{
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.yv-about-final-cta-text{
    max-width: 820px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #dddddd;
    margin-bottom: 30px;
}

/* FOOTER */
.yv-about-footer{
    background: #111111;
    color: #ffffff;
    padding-top: 55px;
}

.yv-about-footer-container{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.yv-about-footer-brand{
    display: flex;
    gap: 15px;
    align-items: center;
}

.yv-about-footer-logo{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.yv-about-footer-title{
    font-size: 22px;
    margin-bottom: 6px;
}

.yv-about-footer-subtitle{
    color: #cccccc;
    font-size: 15px;
}

.yv-about-footer-links-box h4,
.yv-about-footer-contact h4{
    font-size: 18px;
    margin-bottom: 15px;
}

.yv-about-footer-links li{
    margin-bottom: 10px;
}

.yv-about-footer-links a{
    color: #d9d9d9;
    text-decoration: none;
}

.yv-about-footer-links a:hover{
    color: #ffffff;
}

.yv-about-footer-contact p{
    color: #d5d5d5;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .yv-about-hero-container,
    .yv-about-intro-container,
    .yv-about-purpose-container,
    .yv-about-location-container{
        grid-template-columns: 1fr;
    }

    .yv-about-values-grid,
    .yv-about-footer-container{
        grid-template-columns: 1fr 1fr;
    }

    .yv-about-title{
        font-size: 36px;
    }

    .yv-about-section-title{
        font-size: 30px;
    }
}

@media(max-width: 768px){
    .yv-about-values-grid,
    .yv-about-footer-container{
        grid-template-columns: 1fr;
    }

    .yv-about-hero{
        padding: 70px 0;
    }

    .yv-about-intro,
    .yv-about-purpose,
    .yv-about-values,
    .yv-about-final-cta{
        padding: 65px 0;
    }

    .yv-about-title{
        font-size: 30px;
    }

    .yv-about-section-title{
        font-size: 27px;
    }

    .yv-about-text,
    .yv-about-section-text{
        font-size: 16px;
    }

    .yv-about-final-cta-title{
        font-size: 30px;
    }
}
.yv-services-main{
    width: 100%;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

.yv-services-center{
    text-align: center;
}

/* HERO */
.yv-services-hero{
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff, #f6f6f6);
}

.yv-services-hero-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.yv-services-badge{
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.yv-services-hero-title{
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #000000;
}

.yv-services-hero-text{
    font-size: 17px;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 18px;
}

.yv-services-hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.yv-services-btn-dark,
.yv-services-btn-light{
    display: inline-block;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.yv-services-btn-dark{
    background: #000000;
    color: #ffffff;
}

.yv-services-btn-dark:hover{
    background: #222222;
}

.yv-services-btn-light{
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.yv-services-btn-light:hover{
    background: #000000;
    color: #ffffff;
}

.yv-services-hero-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* SECCIONES */
.yv-services-intro,
.yv-services-grid-section,
.yv-services-corporate,
.yv-services-process,
.yv-services-benefits,
.yv-services-final-cta{
    padding: 85px 0;
}

.yv-services-intro-container,
.yv-services-grid-container,
.yv-services-corporate-container,
.yv-services-process-container,
.yv-services-benefits-container,
.yv-services-final-cta-container,
.yv-services-footer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.yv-services-section-title{
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #000000;
}

.yv-services-section-text{
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID SERVICIOS */
.yv-services-grid-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.yv-services-card{
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}
.yv-services-card:hover{
    transform: translateY(-2px);
    box-shadow: 20px 20px 25px rgba(0,0,0,0.10);
    background: #fafafa
}

.yv-services-card-image{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}

.yv-services-card-title{
    font-size: 24px;
    margin-bottom: 14px;
    color: #000000;
}

.yv-services-card-text{
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

/* CORPORATE */
.yv-services-corporate{
    background: #fafafa;
}

/* PROCESS */
.yv-services-process-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.yv-services-process-list{
    margin-top: 20px;
    padding-left: 18px;
}

.yv-services-process-list li{
    margin-bottom: 12px;
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
}

.yv-services-process-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* BENEFITS */
.yv-services-benefits-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.yv-services-benefit-card{
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.yv-services-benefit-card:hover{
    box-shadow: 20px 20px 25px rgba(0,0,0,0.10);
    background: #fafafa
}

.yv-services-benefit-card h3{
    font-size: 22px;
    margin-bottom: 14px;
    color: #000000;
}

.yv-services-benefit-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

/* CTA */
.yv-services-final-cta{
    background: #000000;
    text-align: center;
}

.yv-services-final-cta-title{
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.yv-services-final-cta-text{
    max-width: 820px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #dddddd;
    margin-bottom: 30px;
}

/* FOOTER */
.yv-services-footer{
    background: #111111;
    color: #ffffff;
    padding-top: 55px;
}

.yv-services-footer-container{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.yv-services-footer-brand{
    display: flex;
    gap: 15px;
    align-items: center;
}

.yv-services-footer-logo{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.yv-services-footer-title{
    font-size: 22px;
    margin-bottom: 6px;
}

.yv-services-footer-subtitle{
    color: #cccccc;
    font-size: 15px;
}

.yv-services-footer-links-box h4,
.yv-services-footer-contact h4{
    font-size: 18px;
    margin-bottom: 15px;
}

.yv-services-footer-links li{
    margin-bottom: 10px;
}

.yv-services-footer-links a{
    color: #d9d9d9;
    text-decoration: none;
}

.yv-services-footer-links a:hover{
    color: #ffffff;
}

.yv-services-footer-contact p{
    color: #d5d5d5;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .yv-services-hero-container,
    .yv-services-process-container{
        grid-template-columns: 1fr;
    }

    .yv-services-grid-container{
        grid-template-columns: 1fr 1fr;
    }

    .yv-services-benefits-grid,
    .yv-services-footer-container{
        grid-template-columns: 1fr 1fr;
    }

    .yv-services-hero-title{
        font-size: 36px;
    }

    .yv-services-section-title{
        font-size: 30px;
    }
}

@media(max-width: 768px){
    .yv-services-grid-container,
    .yv-services-benefits-grid,
    .yv-services-footer-container{
        grid-template-columns: 1fr;
    }

    .yv-services-hero{
        padding: 70px 0;
    }

    .yv-services-intro,
    .yv-services-grid-section,
    .yv-services-corporate,
    .yv-services-process,
    .yv-services-benefits,
    .yv-services-final-cta{
        padding: 65px 0;
    }

    .yv-services-hero-title{
        font-size: 30px;
    }

    .yv-services-section-title{
        font-size: 27px;
    }

    .yv-services-hero-text,
    .yv-services-section-text,
    .yv-services-card-text,
    .yv-services-benefit-card p{
        font-size: 16px;
    }

    .yv-services-final-cta-title{
        font-size: 30px;
    }
}
.yv-contact-main{
    width: 100%;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

.yv-contact-center{
    text-align: center;
}

/* HERO */
.yv-contact-hero{
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff, #f6f6f6);
}

.yv-contact-hero-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.yv-contact-badge{
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.yv-contact-hero-title{
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #000000;
}

.yv-contact-hero-text{
    font-size: 17px;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 18px;
}

.yv-contact-hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.yv-contact-btn-dark,
.yv-contact-btn-light{
    display: inline-block;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.yv-contact-btn-dark{
    background: #000000;
    color: #ffffff;
}

.yv-contact-btn-dark:hover{
    background: #222222;
}

.yv-contact-btn-light{
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.yv-contact-btn-light:hover{
    background: #000000;
    color: #ffffff;
}

.yv-contact-hero-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* SECCIONES */
.yv-contact-info-section,
.yv-contact-form-section,
.yv-contact-map-section,
.yv-contact-seo-section,
.yv-contact-final-cta{
    padding: 85px 0;
}

.yv-contact-info-container,
.yv-contact-form-container,
.yv-contact-map-container,
.yv-contact-seo-container,
.yv-contact-final-cta-container,
.yv-contact-footer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.yv-contact-section-title{
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #000000;
}

.yv-contact-section-text{
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    max-width: 950px;
}

/* INFO */
.yv-contact-info-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.yv-contact-info-card{
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.yv-contact-info-card h3{
    font-size: 22px;
    margin-bottom: 14px;
    color: #000000;
}

.yv-contact-info-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 8px;
}

/* FORM */
.yv-contact-form-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.yv-contact-check-list{
    margin-top: 22px;
    padding-left: 18px;
}

.yv-contact-check-list li{
    margin-bottom: 12px;
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
}

.yv-contact-form-box{
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    padding: 30px;
}

.yv-contact-form-title{
    font-size: 24px;
    margin-bottom: 20px;
    color: #000000;
}

.yv-contact-form-box input,
.yv-contact-form-box textarea{
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
}

.yv-contact-form-box textarea{
    resize: vertical;
}

/* MAP */
.yv-contact-map-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.yv-contact-map-placeholder{
    width: 100%;
    min-height: 360px;
    background: #f3f3f3;
    border: 1px dashed #cfcfcf;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777777;
    text-align: center;
    padding: 20px;
}

/* SEO */
.yv-contact-seo-section{
    background: #fafafa;
}

/* CTA */
.yv-contact-final-cta{
    background: #000000;
    text-align: center;
}

.yv-contact-final-cta-title{
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.yv-contact-final-cta-text{
    max-width: 820px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #dddddd;
    margin-bottom: 30px;
}

/* FOOTER */
.yv-contact-footer{
    background: #111111;
    color: #ffffff;
    padding-top: 55px;
}

.yv-contact-footer-container{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.yv-contact-footer-brand{
    display: flex;
    gap: 15px;
    align-items: center;
}

.yv-contact-footer-logo{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.yv-contact-footer-title{
    font-size: 22px;
    margin-bottom: 6px;
}

.yv-contact-footer-subtitle{
    color: #cccccc;
    font-size: 15px;
}

.yv-contact-footer-links-box h4,
.yv-contact-footer-contact h4{
    font-size: 18px;
    margin-bottom: 15px;
}

.yv-contact-footer-links li{
    margin-bottom: 10px;
}

.yv-contact-footer-links a{
    color: #d9d9d9;
    text-decoration: none;
}

.yv-contact-footer-links a:hover{
    color: #ffffff;
}

.yv-contact-footer-contact p{
    color: #d5d5d5;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}


/* RESPONSIVE */
@media(max-width: 992px){
    .yv-contact-hero-container,
    .yv-contact-form-container,
    .yv-contact-map-container{
        grid-template-columns: 1fr;
    }

    .yv-contact-info-grid,
    .yv-contact-footer-container{
        grid-template-columns: 1fr 1fr;
    }

    .yv-contact-hero-title{
        font-size: 36px;
    }

    .yv-contact-section-title{
        font-size: 30px;
    }
}

@media(max-width: 768px){
    .yv-contact-info-grid,
    .yv-contact-footer-container{
        grid-template-columns: 1fr;
    }

    .yv-contact-hero{
        padding: 70px 0;
    }

    .yv-contact-info-section,
    .yv-contact-form-section,
    .yv-contact-map-section,
    .yv-contact-seo-section,
    .yv-contact-final-cta{
        padding: 65px 0;
    }

    .yv-contact-hero-title{
        font-size: 30px;
    }

    .yv-contact-section-title{
        font-size: 27px;
    }

    .yv-contact-hero-text,
    .yv-contact-section-text,
    .yv-contact-info-card p{
        font-size: 16px;
    }

    .yv-contact-final-cta-title{
        font-size: 30px;
    }
}
.yv-gallery-main{
    width: 100%;
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

.yv-gallery-center{
    text-align: center;
}

/* HERO */
.yv-gallery-hero{
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff, #f6f6f6);
}

.yv-gallery-hero-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.yv-gallery-badge{
    display: inline-block;
    background: #111111;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.yv-gallery-hero-title{
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #000000;
}

.yv-gallery-hero-text{
    font-size: 17px;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 18px;
}

.yv-gallery-hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.yv-gallery-btn-dark,
.yv-gallery-btn-light{
    display: inline-block;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.yv-gallery-btn-dark{
    background: #000000;
    color: #ffffff;
}

.yv-gallery-btn-dark:hover{
    background: #222222;
}

.yv-gallery-btn-light{
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.yv-gallery-btn-light:hover{
    background: #000000;
    color: #ffffff;
}

.yv-gallery-hero-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* SECCIONES */
.yv-gallery-intro,
.yv-gallery-grid-section,
.yv-gallery-seo-section,
.yv-gallery-highlight,
.yv-gallery-final-cta{
    padding: 85px 0;
}

.yv-gallery-intro-container,
.yv-gallery-grid-container,
.yv-gallery-seo-container,
.yv-gallery-highlight-container,
.yv-gallery-final-cta-container,
.yv-gallery-footer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.yv-gallery-section-title{
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #000000;
}

.yv-gallery-section-text{
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID DE IMÁGENES */
.yv-gallery-grid-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yv-gallery-item{
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.yv-gallery-image{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.yv-gallery-item:hover .yv-gallery-image{
    transform: scale(1.05);
}

/* SEO SECTION */
.yv-gallery-seo-section{
    background: #fafafa;
}

/* HIGHLIGHT */
.yv-gallery-highlight-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.yv-gallery-highlight-image{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* CTA */
.yv-gallery-final-cta{
    background: #000000;
    text-align: center;
}

.yv-gallery-final-cta-title{
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.yv-gallery-final-cta-text{
    max-width: 820px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #dddddd;
    margin-bottom: 30px;
}

/* FOOTER */
.yv-gallery-footer{
    background: #111111;
    color: #ffffff;
    padding-top: 55px;
}

.yv-gallery-footer-container{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.yv-gallery-footer-brand{
    display: flex;
    gap: 15px;
    align-items: center;
}

.yv-gallery-footer-logo{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.yv-gallery-footer-title{
    font-size: 22px;
    margin-bottom: 6px;
}

.yv-gallery-footer-subtitle{
    color: #cccccc;
    font-size: 15px;
}

.yv-gallery-footer-links-box h4,
.yv-gallery-footer-contact h4{
    font-size: 18px;
    margin-bottom: 15px;
}

.yv-gallery-footer-links li{
    margin-bottom: 10px;
}

.yv-gallery-footer-links a{
    color: #d9d9d9;
    text-decoration: none;
}

.yv-gallery-footer-links a:hover{
    color: #ffffff;
}

.yv-gallery-footer-contact p{
    color: #d5d5d5;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}


/* RESPONSIVE */
@media(max-width: 992px){
    .yv-gallery-hero-container,
    .yv-gallery-highlight-container{
        grid-template-columns: 1fr;
    }

    .yv-gallery-grid-container,
    .yv-gallery-footer-container{
        grid-template-columns: 1fr 1fr;
    }

    .yv-gallery-hero-title{
        font-size: 36px;
    }

    .yv-gallery-section-title{
        font-size: 30px;
    }
}

@media(max-width: 768px){
    .yv-gallery-grid-container,
    .yv-gallery-footer-container{
        grid-template-columns: 1fr;
    }

    .yv-gallery-hero{
        padding: 70px 0;
    }

    .yv-gallery-intro,
    .yv-gallery-grid-section,
    .yv-gallery-seo-section,
    .yv-gallery-highlight,
    .yv-gallery-final-cta{
        padding: 65px 0;
    }

    .yv-gallery-hero-title{
        font-size: 30px;
    }

    .yv-gallery-section-title{
        font-size: 27px;
    }

    .yv-gallery-hero-text,
    .yv-gallery-section-text{
        font-size: 16px;
    }

    .yv-gallery-final-cta-title{
        font-size: 30px;
    }
}
.yv-about-corporate-container {
    width: 85%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;

}
.text-1 {
    margin-bottom: 15px;
}
.yv-about-location-map-placeholder iframe{
    border-radius: 18px;
    border: 1px dashed #cfcfcf;
    width: 100%;

}
.nuestra-ubicacion {
    width: 100%;
    background: #ffffff;
    color: #111111;
    padding: 20px 50px;
}
.ubicacion-titulo {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #000000;
    text-align: center;
}
.contenido-ubi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}
.ubicacion-texto {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    max-width: 90%;
}
.ubicacion-texto a {
    margin-top: 25px;
}
.ubicacion-mapa iframe {
    border-radius: 25px;
    border: 1px dashed #cfcfcf;
}
@media (max-width: 768px) {
    .nuestra-ubicacion {
        width: 100%;
        padding: 10px 0px;
        justify-content: center;
    }
    .ubicacion-titulo {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 22px;
        color: #000000;
        text-align: center;
    }
    .ubicacion-mapa {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
    .contenido-ubi {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        
    }
    .ubicacion-texto {
        font-size: 16px;
        line-height: 1.8;
        color: #555555;
        margin-bottom: 8px;
    }
    .ubicacion-mapa iframe {
        border-radius: 25px;
        border: 1px dashed #cfcfcf;
        width: 95%;
    }

}
.mapa-contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    padding: 30px 65px;
}
.mapa-contacto-texto-1 {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    max-width: 90%;
    padding: 20px;
}
.mapa-contacto-texto-1 h2 {
    font-size: 34px;
    line-height: 1.15;
    color: var(--bg);
    margin-bottom: 12px;
    text-align: center;
}
.mapa-contacto-mapa {
    width: 100%;
    height: 350px;
    margin-top: 20px;
    text-align: center;
    border-radius: 25px;
    box-shadow: #4a4a4a 0px 5px 15px;
}
.mapa-contacto-mapa iframe {
    width: 100%;
    height: 350px;
    border-radius: 25px;
    border: 1px solid #cfcfcf;
}
.texto-contacto-seo {
    width: 100%;
    height: auto;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    padding: 30px 70px;
}
.texto-contacto-seo h2 {
    font-size: 34px;
    line-height: 1.15;
    color: var(--bg);
    margin-bottom: 12px;
    text-align: center;
}
.texto-contacto-seo p {
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
}
@media (max-width: 768px) {
    .mapa-contacto {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px 5px;
        width: 100%;
        height: auto;
    }
    .mapa-contacto-texto-1 {
        padding: 10px;
    }
    .mapa-contacto-mapa {
        width: 95%;
        height: 300px;
        text-align: center;
        border-radius: 25px;
        box-shadow: #4a4a4a 0px 5px 15px;
        margin-top: 20px;
    }
    .mapa-contacto-mapa iframe {
        width: 100%;
        height: 300px;
        border-radius: 25px;
        border: 1px solid #cfcfcf;
        text-align: center;
        
    }
    .texto-contacto-seo {
        padding: 30px;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}