/* ============================================================
   ESTUDIO JURÍDICO — style.css
   Paleta: Negro | Dorado #C9A84C | Blanco | Gris oscuro
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --gold:    #C9A84C;
  --gold-lt: #E2C47A;
  --dark:    #0a0a0a;
  --dark2:   #111111;
  --dark3:   #181818;
  --grey:    #2A2A2A;
  --grey-lt: #999;
  --white:   #FAFAFA;
  --ff-head: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --trans:   all .4s cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { 
  background: var(--dark); 
  color: var(--white); 
  font-family: var(--ff-body); 
  line-height: 1.8; 
  overflow-x: hidden; 
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; padding: 0; margin: 0; }

/* ---------- Typography & Utility ---------- */
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); font-weight: 700; line-height: 1.2; }
.font-head { font-family: var(--ff-head); }
.text-gold { color: var(--gold) !important; }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, #906b29 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 500;
}
.section-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 2.5rem;
}
.section-divider.mx-auto {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--trans);
  border-bottom: 1px solid transparent;
}
#navbar .container {
  max-width: min(1320px, calc(100% - 2rem));
}
#navbar.scrolled, #navbar.inner-page-nav {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(15px);
  padding: .8rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.nav-brand {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  letter-spacing: .03em;
  line-height: 1.15;
  max-width: min(520px, calc(100vw - 6rem));
  white-space: normal;
}
.nav-brand span { color: var(--gold); font-style: italic; }
.navbar-nav .nav-link {
  color: rgba(250,250,250,.8) !important;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .65rem !important;
  position: relative;
  transition: var(--trans);
  white-space: nowrap;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: .65rem;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--trans);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active-link { 
  color: var(--gold) !important; 
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active-link::after { 
  width: calc(100% - 1.3rem); 
}
.navbar-nav .nav-auth {
  flex-shrink: 0;
}
.navbar-nav .nav-auth .btn-outline-gold {
  width: auto;
  padding: .55rem .8rem !important;
  font-size: .7rem !important;
  letter-spacing: .08em;
}
.navbar-toggler { border: none; border-radius: 0; padding: .5rem; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #906b29);
  color: #000 !important;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  opacity: 0;
  transition: var(--trans);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,.3); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: var(--trans);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,.2);
}

/* ---------- Hero / Page Headers ---------- */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  background: url('assets/img/news.png') center/cover no-repeat;
  overflow: hidden;
}
.page-header {
  min-height: 50vh;
  padding-top: 100px;
  position: relative;
  display: flex; align-items: center;
  background: url('assets/img/news.png') center/cover no-repeat;
  background-attachment: fixed;
}
#hero::before, .page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.95) 20%, rgba(10,10,10,.7) 100%);
}
#hero::after, .page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--dark));
}
.hero-content, .page-header-content { position: relative; z-index: 2; width: 100%; }
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: rgba(250,250,250,.8);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-line {
  width: 100px; height: 1px;
  background: rgba(201,168,76,.5);
  margin-bottom: 3rem;
}

/* ---------- Sections Base ---------- */
section { padding: 7rem 0; position: relative; }
.inner-section { padding-top: 10rem; }
.bg-dark2  { background: var(--dark2); }
.bg-dark3  { background: var(--dark3); }

/* ---------- Quiénes Somos ---------- */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 4px;
  object-fit: cover;
  height: 600px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 1px solid rgba(201,168,76,.4);
  z-index: 0;
  border-radius: 4px;
}
.about-img-wrap img { position: relative; z-index: 1; }

.value-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  transition: var(--trans);
}
.value-item:hover {
  background: rgba(201,168,76,.05);
  border-color: rgba(201,168,76,.2);
  transform: translateY(-5px);
}
.value-icon {
  min-width: 45px; height: 45px;
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}

/* ---------- Servicios ---------- */
.service-card {
  background: rgba(20,20,20,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(201,168,76,.1), transparent 50%);
  opacity: 0; transition: var(--trans);
}
.service-card:hover { 
  background: rgba(30,30,30,.8); 
  border-color: rgba(201,168,76,.3); 
  transform: translateY(-10px); 
  box-shadow: 0 20px 40px rgba(0,0,0,.6); 
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 2rem;
  margin-bottom: 2rem;
  transition: var(--trans);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.service-card p { font-size: .95rem; color: var(--grey-lt); line-height: 1.7; position: relative; z-index: 2;}
.service-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-top: 1.5rem; transition: var(--trans); position: relative; z-index: 2;}
.service-card:hover .service-link { gap: 1rem; }

.alliance-card {
  padding: 0;
}
.alliance-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(201,168,76,.16);
  overflow: hidden;
}
.alliance-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.alliance-card:hover .alliance-image-wrap img {
  transform: scale(1.04);
}
.alliance-card-body {
  padding: 2rem;
}
.service-image-modal {
  width: min(100%, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,.32);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  display: block;
}
.gaceta-preview {
  position: relative;
  height: 260px;
  border: 1px solid rgba(201,168,76,.24);
  border-radius: 4px;
  overflow: hidden;
  background: #101010;
}
.gaceta-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.gaceta-preview span {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .3rem .55rem;
  background: rgba(10,10,10,.82);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 3px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- Estadísticas ---------- */
#stats {
  background: url('assets/img/news.png') center/cover fixed;
  position: relative;
  padding: 6rem 0;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,10,10,.9);
}
.stat-item { text-align: center; position: relative; z-index: 2;}
.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(3rem,6vw,5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 10px 20px rgba(0,0,0,.5);
}
.stat-plus { color: var(--white); opacity: .5; }
.stat-label { font-size: .85rem; letter-spacing: .25em; text-transform: uppercase; color: var(--white); opacity: .8;}
.stat-divider { width: 1px; height: 100px; background: rgba(201,168,76,.3); margin: auto; position: relative; z-index: 2;}

/* ---------- Equipo ---------- */
.team-card {
  background: transparent;
  border: none;
  overflow: hidden;
  cursor: pointer;
}
.team-img-wrap { 
  position: relative; 
  overflow: hidden; 
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.team-img-wrap img { 
  width: 100%; height: 400px; 
  object-fit: cover; object-position: top; 
  transition: transform .7s ease; 
  filter: grayscale(20%);
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); filter: grayscale(0%); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.2) 50%, transparent);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 2rem;
  opacity: 0; transition: var(--trans);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-info { text-align: center; }
.team-info h4 { font-size: 1.25rem; color: var(--white); margin-bottom: .4rem; }
.team-info span { font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ---------- Noticias ---------- */
.news-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.news-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}
.news-img { position: relative; overflow: hidden; height: 220px; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans); }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-date {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: #000;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  padding: .3rem .8rem; border-radius: 2px;
}
.news-content { padding: 2rem 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.news-category { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; display: block; }
.news-content h4 { font-size: 1.15rem; margin-bottom: 1rem; }
.news-content h4 a { transition: var(--trans); }
.news-content h4 a:hover { color: var(--gold); }
.news-content p { color: var(--grey-lt); font-size: .9rem; margin-bottom: 1.5rem; flex-grow: 1; }
.btn-read-more { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); font-weight: 500; display: inline-flex; align-items: center; gap: .5rem; transition: var(--trans); }
.btn-read-more:hover { color: var(--gold); gap: .8rem; }
.article-body {
  white-space: pre-line;
  line-height: 1.85;
  font-size: 1rem;
}

/* ---------- Ventanas Auxiliares (Modals & Offcanvas) ---------- */
.btn-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--gold), #906b29);
  color: #000;
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(201,168,76,.4);
  z-index: 1050;
  transition: var(--trans);
  animation: pulse-gold 2s infinite;
}
.btn-floating:hover { transform: scale(1.1) translateY(-5px); color: #000; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  animation: pulse-whatsapp 2s infinite;
}
.btn-whatsapp:hover { color: #fff; }
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,.6); }
  70% { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.custom-offcanvas {
  background: rgba(15,15,15,.98) !important;
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(201,168,76,.2);
  width: 400px !important;
  z-index: 1085;
}
.offcanvas-backdrop { z-index: 1080; }
.custom-offcanvas .offcanvas-title { color: var(--gold) !important; font-size: 1.5rem; }
.custom-modal {
  background: rgba(18,18,18,.98) !important;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,1);
}
.custom-modal .btn-close { opacity: .7; transition: var(--trans); filter: invert(1); }
.custom-modal .btn-close:hover { opacity: 1; transform: rotate(90deg); }
.service-icon-modal {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 3rem;
  box-shadow: inset 0 0 20px rgba(201,168,76,.1);
}

/* ---------- Contacto & Formularios ---------- */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.contact-icon {
  min-width: 55px; height: 55px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}
.contact-info-item h6 { color: var(--white); margin-bottom: .5rem; font-size: .95rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-info-item p { color: var(--grey-lt); font-size: .95rem; margin: 0; }
.contact-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 4px;
  color: var(--gold);
  background: rgba(201,168,76,.06);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--trans);
}
.contact-social:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.form-control, .form-select {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: var(--white) !important;
  border-radius: 2px !important;
  padding: 1rem 1.2rem !important;
  font-size: .95rem !important;
  transition: var(--trans) !important;
}
.form-control::placeholder { color: rgba(255,255,255,.3) !important; }
.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(201,168,76,.1) !important;
  background: rgba(255,255,255,.05) !important;
}
.form-control:disabled,
.form-control[readonly] {
  background: rgba(201,168,76,.08) !important;
  border-color: rgba(201,168,76,.24) !important;
  color: var(--gold-lt) !important;
  opacity: 1 !important;
}
.form-select option {
  background: #f7f3e8;
  color: #14110a;
}
.form-select option:checked {
  background: var(--gold);
  color: #000;
}
.form-label { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--grey-lt); margin-bottom: .8rem; }
.map-wrap { border: 1px solid rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; height: 100%; min-height: 400px; }
.map-wrap iframe { display: block; width: 100%; height: 100%; }

/* ---------- Footer ---------- */
#footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,.2);
  padding-top: 6rem;
  padding-bottom: 2rem;
}
.footer-brand { font-family: var(--ff-head); font-size: 1.8rem; margin-bottom: 1.5rem; }
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-desc { font-size: .95rem; color: var(--grey-lt); max-width: 300px; line-height: 1.8; }
.footer-title { font-size: .85rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { font-size: .95rem; color: var(--grey-lt); transition: var(--trans); display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a::before { content: ''; width: 10px; height: 1px; background: var(--gold); transition: var(--trans); }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { width: 20px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 45px; height: 45px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white);
  margin-right: .8rem;
  font-size: 1rem;
  transition: var(--trans);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: #000; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 2rem;
  margin-top: 5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .85rem; color: var(--grey-lt); margin: 0; }
.footer-bottom a { color: var(--gold); }

/* ---------- Animaciones Reveal ---------- */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ---------- Responsive Ajustes ---------- */
@media (max-width: 1359.98px) {
  .navbar-expand-lg .navbar-toggler { display: block; }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
    flex-basis: 100%;
  }
  .navbar-expand-lg .navbar-collapse.show { display: block !important; }
  .navbar-expand-lg .navbar-nav {
    align-items: center !important;
    flex-direction: column;
    padding: 1rem 0 .25rem;
  }
  .navbar-nav .nav-link { text-align: center; padding: .75rem 0 !important; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-auth {
    display: flex;
    justify-content: center;
    margin: .5rem 0 0 !important;
    width: 100%;
  }
  .navbar-nav .nav-auth .btn-outline-gold {
    min-width: 160px;
  }
}
@media (max-width: 575px) {
  .nav-brand { font-size: .92rem; max-width: calc(100vw - 5.5rem); }
  .contact-socials { grid-template-columns: 1fr; }
}
@media (max-width: 991px) {
  .stat-divider { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .about-img-wrap img { height: 350px; }
  .team-img-wrap img { height: 300px; }
  section { padding: 4.5rem 0; }
  .custom-modal { width: 95%; margin: auto; }
}
@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .inner-section { padding-top: 7rem; }
  .page-header { min-height: 35vh; padding-top: 90px; }
  .about-img-wrap::before { display: none; }
  .about-img-wrap img { height: 250px; }
  .team-img-wrap img { height: 250px; }
  .news-img { height: 200px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.8rem; word-wrap: break-word; line-height: 1.3;}
  .btn-gold, .btn-outline-gold { padding: .8rem 1.5rem; font-size: .75rem; width: 100%; display: block; text-align: center;}
  .service-card { padding: 1.8rem 1.2rem; }
  .custom-offcanvas { width: 100% !important; }
  .stat-item { margin-bottom: 1.5rem; }
  .btn-floating { bottom: 1rem; right: 1rem; width: 55px; height: 55px; font-size: 1.4rem; }
  .stat-number { font-size: 2.5rem; }
  .navbar-nav .nav-link { text-align: center; padding: .8rem 0 !important; }
  .navbar-nav .nav-link::after { display: none; }
}
