/* =============================================================
   Construcciones Pardo — Estilos principales
   Autor: Construcciones Pardo
   URL: https://construccionespardo.com.ar
   ============================================================= */

/* ===== VARIABLES ===== */
:root {
  --naranja: #FF6B35;
  --naranja-dark: #e55520;
  --negro: #0a0a0a;
  --gris-oscuro: #161616;
  --gris-medio: #2a2a2a;
  --gris-claro: #f4f4f4;
  --blanco: #ffffff;
  --texto: #2d2d2d;
  --texto-suave: #666;
  --navbar-logo-gap-top: 0.45rem;
  --navbar-logo-overlap-y: 40%;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--texto);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; }

/* ===== NAVBAR ===== */
.navbar {
  background-color: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  transition: box-shadow 0.3s;
  overflow: visible;
}
.navbar-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blanco) !important;
  letter-spacing: 0.5px;
}
.navbar-brand span { color: var(--naranja); }
.navbar-brand-logo {
  margin-right: auto;
}
.logo-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 2px;
  background: var(--blanco);
  border: 2px solid var(--naranja);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  line-height: 0;
}
.logo-ring--footer {
  padding: 3px;
  border-width: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}
.navbar-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}
.navbar-toggler-end {
  z-index: 2;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.875rem !important;
  transition: color 0.25s;
}
.navbar-nav .nav-link:hover { color: var(--naranja) !important; }
.navbar-toggler {
  border: 1px solid rgba(255,107,53,0.5);
  padding: 0.3rem 0.6rem;
}
.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%28255,107,53,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-nav-cta {
  background-color: var(--naranja);
  border: none;
  color: white !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: background-color 0.25s, transform 0.25s;
}
.btn-nav-cta:hover {
  background-color: var(--naranja-dark) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--negro);
  padding-top: 7rem;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.45) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.35);
  color: var(--naranja);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
#hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--blanco);
  line-height: 1.05;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
#hero h1 em {
  font-style: normal;
  color: var(--naranja);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.btn-primary-cta {
  background-color: var(--naranja);
  border: 2px solid var(--naranja);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 0.8rem 1.75rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.btn-primary-cta:hover {
  background-color: var(--naranja-dark);
  border-color: var(--naranja-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.38);
}
.btn-outline-cta {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.8rem 1.75rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}
.btn-outline-cta:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: white;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--naranja);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===== SECCIONES GENERALES ===== */
section { padding: 80px 0; }
.sec-badge {
  display: inline-block;
  background-color: rgba(255,107,53,0.1);
  color: var(--naranja);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 0.875rem;
  border: 1px solid rgba(255,107,53,0.2);
}
.sec-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--negro);
  margin-bottom: 0.875rem;
}
.sec-title em { font-style: normal; color: var(--naranja); }
.sec-bar {
  width: 46px;
  height: 4px;
  background-color: var(--naranja);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.sec-sub {
  font-size: 1rem;
  color: var(--texto-suave);
  font-weight: 300;
  line-height: 1.75;
}

/* ===== SOBRE NOSOTROS ===== */
#sobre-nosotros { background-color: var(--blanco); }
.sobre-img-wrap { position: relative; }
.sobre-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.sobre-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--naranja), var(--naranja-dark));
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}
.sobre-badge-float .num { font-size: 2.75rem; font-weight: 900; line-height: 1; }
.sobre-badge-float .lbl { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; line-height: 1.3; margin-top: 0.2rem; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.1rem;
}
.feat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: rgba(255,107,53,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--naranja);
  font-size: 1.2rem;
}
.feat-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.15rem;
}
.feat-text p { font-size: 0.85rem; color: var(--texto-suave); margin: 0; }

/* ===== SERVICIOS ===== */
#servicios { background-color: var(--gris-claro); }
.srv-card {
  background-color: white;
  border-radius: 8px;
  padding: 1.875rem;
  height: 100%;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.srv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--naranja), var(--naranja-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.srv-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }
.srv-card:hover::after { transform: scaleY(1); }
.srv-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255,107,53,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--naranja);
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.srv-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--negro); margin-bottom: 0.6rem; }
.srv-card p { font-size: 0.88rem; color: var(--texto-suave); line-height: 1.65; margin: 0; }

/* ===== GALERÍA ===== */
#galeria { background-color: var(--negro); padding-bottom: 60px; }
#galeria .sec-title { color: var(--blanco); }
#galeria .sec-sub { color: rgba(255,255,255,0.55); }
#galeria .sec-badge { background-color: rgba(255,107,53,0.12); }
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background-color: #111;
}
.gal-item img,
.gal-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gal-item:hover img,
.gal-item:hover video { transform: scale(1.06); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay-txt {
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background-color: rgba(255,107,53,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  pointer-events: none;
}
.gal-item.large img,
.gal-item.large video { height: 320px; }

/* ===== POR QUÉ ELEGIRNOS ===== */
#por-que { background-color: var(--blanco); }
.why-item {
  text-align: center;
  padding: 1.875rem 1.25rem;
  border-radius: 10px;
  transition: background-color 0.3s;
}
.why-item:hover { background-color: var(--gris-claro); }
.why-icon-wrap {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--naranja) 0%, var(--naranja-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}
.why-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--negro); margin-bottom: 0.4rem; }
.why-item p { font-size: 0.85rem; color: var(--texto-suave); margin: 0; line-height: 1.55; }

/* ===== TESTIMONIOS ===== */
#testimonios { background-color: var(--gris-claro); }
.test-card {
  background-color: white;
  border-radius: 10px;
  padding: 1.875rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.055);
  border: 1px solid #ebebeb;
}
.stars { color: #F5A623; font-size: 0.9rem; margin-bottom: 0.875rem; letter-spacing: 2px; }
.test-quote {
  font-size: 0.95rem;
  color: var(--texto);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--naranja), var(--naranja-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.test-name { font-weight: 700; font-size: 0.9rem; color: var(--negro); }
.test-loc { font-size: 0.78rem; color: #aaa; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--naranja);
  border-radius: 50%;
  background-size: 55%;
  width: 40px;
  height: 40px;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--naranja);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
}

/* ===== CTA BAND ===== */
#cta {
  background: linear-gradient(125deg, var(--negro) 0%, var(--gris-oscuro) 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}
#cta .sec-title { color: white; }
#cta p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }
.btn-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  border: none;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.25s, transform 0.25s;
}
.btn-whatsapp-inline:hover {
  background-color: #1ebe5c;
  color: white;
  transform: translateY(-2px);
}

/* ===== CONTACTO ===== */
#contacto { background-color: var(--blanco); }
.form-control, .form-select {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--naranja);
  box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.14);
}
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--negro); margin-bottom: 0.3rem; }
.btn-enviar {
  background-color: var(--naranja);
  border: none;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  width: 100%;
  letter-spacing: 0.4px;
  transition: background-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.btn-enviar:hover {
  background-color: var(--naranja-dark);
  transform: translateY(-1px);
}
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.375rem;
}
.cinfo-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background-color: rgba(255,107,53,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--naranja);
  font-size: 1.2rem;
}
.cinfo-text h5 { font-size: 0.9rem; font-weight: 700; color: var(--negro); margin-bottom: 0.2rem; }
.cinfo-text p { font-size: 0.875rem; color: var(--texto-suave); margin: 0; line-height: 1.5; }
.btn-wa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  border: none;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  width: 100%;
  text-decoration: none;
  transition: background-color 0.25s, transform 0.25s;
  margin-top: 0.5rem;
}
.btn-wa-contact:hover {
  background-color: #1ebe5c;
  color: white;
  transform: translateY(-1px);
}
.map-wrap {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--negro);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 28px;
}
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; color: white; }
.footer-brand span { color: var(--naranja); }
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-top: 0.4rem; }
.footer-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.1rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.45rem; }
.footer-list a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.footer-list a i { font-size: 0.7rem; color: var(--naranja); }
.footer-list a:hover { color: var(--naranja); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
}
.social-links a:hover { background-color: var(--naranja); color: white; }
.footer-hr { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.5rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ===== MODAL GALERÍA ===== */
.modal-content { background-color: #0d0d0d; border: none; border-radius: 10px; overflow: hidden; }
.modal-header { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.25rem; }
.modal-title { color: white; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; }
.modal-close-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.95rem;
}
.modal-close-btn:hover { background-color: var(--naranja); color: white; }
.modal-body { padding: 0; }
.modal-media { width: 100%; max-height: 78vh; object-fit: contain; display: block; }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); color: white; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ===== VOLVER ARRIBA ===== */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 26px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background-color: rgba(255,107,53,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background-color: var(--naranja); color: white; }

/* ===== ANIMACIÓN REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .sobre-img-wrap img { height: 340px; }
  .sobre-badge-float { right: 0; bottom: -14px; }
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
  .gal-item img, .gal-item video { height: 185px; }
  .gal-item.large img, .gal-item.large video { height: 225px; }
}
@media (max-width: 991.98px) {
  .navbar {
    padding-top: calc(0.5rem + var(--navbar-logo-gap-top));
    padding-bottom: 0.5rem;
  }
  .navbar-wrap {
    min-height: 42px;
    align-items: center;
  }
  .navbar-brand-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, var(--navbar-logo-overlap-y));
    margin-right: 0;
    z-index: 1031;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand-logo .logo-ring {
    padding: 3px;
    border-width: 2px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  }
  .navbar-brand-logo .navbar-logo {
    width: 92px;
    height: 92px;
  }
  .navbar-toggler-end {
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .navbar {
    padding-top: calc(0.55rem + var(--navbar-logo-gap-top));
    padding-bottom: 0.55rem;
  }
  .navbar-wrap {
    min-height: 46px;
    align-items: center;
  }
  .navbar-brand-logo {
    position: absolute;
    left: 0;
    transform: translate(0, var(--navbar-logo-overlap-y));
    margin-right: 0;
    z-index: 1031;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand-logo .logo-ring {
    padding: 3px;
    border-width: 2px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  }
  .navbar-brand-logo .navbar-logo {
    width: 84px;
    height: 84px;
  }
  .navbar.navbar-expand-lg .navbar-collapse {
    padding-left: calc(94px + 1rem);
  }
}
