
:root {
    --navy: #0a1a2f;
  --gold: #FFE87C;
  --gold-light: #FDBD01;
  --gray-bg: #f8f7f4;



}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', georgia;
  background: #fefcf8;
  overflow-x: hidden;
  color: #1e2f3e;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: #e0e0e0;
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(200, 168, 78, 0.3);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.contact-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.contact-line span:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.contact-line i {
  color: var(--gold);
  width: 20px;
  font-size: 0.9rem;
}

.contact-line a {
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.2s;
}

.contact-line a:hover {
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.main-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-placeholder {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.brand-text .title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brand-text .tagline {
  font-size: clamp(0.6rem, 1.2vw, 0.7rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 600;
  color: #1e2f3e !important;
  margin: 0 4px;
  transition: 0.2s;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link.active-page {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.btn-consult {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 40px;
  padding: clamp(6px, 1vw, 8px) clamp(14px, 2vw, 24px);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-consult:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 168, 78, 0.4);
}

/* ===== PAGE HERO BANNER - NO MARGIN/PADDING BETWEEN ===== */
.page-hero {
  min-height: 52vh;
  background: linear-gradient(135deg, rgba(5, 11, 26, 0.91), rgba(10, 26, 47, 0.95)),
    url('https://images.pexels.com/photos/5669619/pexels-photo-5669619.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
 border-bottom: 1px solid var(--navy); 
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fefcf8);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.75;
}

/* ===== BREADCRUMB - NO MARGIN ===== */
.breadcrumb-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid #ede8df;
  padding: 12px 0;
  margin: 0;
}

.breadcrumb {
  margin: 0;
  font-size: 0.82rem;
}

.breadcrumb-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--gold);
}

.breadcrumb-item.active {
  color: var(--gold);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
}

/* ===== SHARED SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}

.section-title.underline::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--gold-light);
  bottom: -12px;
  left: 0;
}

.text-gold {
  color: var(--gold-light);
}

.body-text {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.8;
  color: #000000;
}

/* ===== WHO WE ARE SECTION - NO MARGIN ===== */
.who-section {
  padding: 0;
  margin: 0;
  background: white;
}

.who-img-wrap {
  position: relative;
}

.who-img-wrap .main-img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  display: block;
  transition: transform 0.5s ease;
}

.who-img-wrap:hover .main-img {
  transform: scale(1.02);
}

.who-img-wrap .corner-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: white;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  text-align: center;
  min-width: 130px;
}

.who-img-wrap .corner-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.who-img-wrap .corner-badge span {
  font-size: 0.75rem;
  color: #aabbc8;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .who-img-col {
    display: none;
  }
}

.about-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.divider-gold {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 22px 0;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.88rem, 1.5vw, 0.97rem);
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.6;
}

.check-list li i {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: clamp(10px, 1.5vw, 13px) clamp(24px, 3vw, 36px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  gap: 16px;
  box-shadow: 0 8px 22px rgba(200, 168, 78, 0.4);
}

.btn-gold i {
  transition: transform 0.3s;
}

.btn-gold:hover i {
  transform: translateX(5px);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold-light);
  color: var(--navy);
  padding: clamp(10px, 1.5vw, 13px) clamp(20px, 3vw, 32px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  padding-right: clamp(28px, 4vw, 44px);
  box-shadow: 0 10px 25px rgba(200, 168, 78, 0.3);
}

.btn-outline-gold i {
  transition: transform 0.3s;
}

.btn-outline-gold:hover i {
  transform: translateX(6px);
}

/* ===== STATS BAND - NO MARGIN ===== */
.stats-band {
  background: var(--navy);
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 80px,
      rgba(200, 168, 78, 0.04) 80px,
      rgba(200, 168, 78, 0.04) 81px);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item p {
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  color: rgba(255, 255, 255, 0.55);
  margin: 8px 0 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: rgba(200, 168, 78, 0.2);
  align-self: stretch;
  height: 70px;
}

/* ===== MISSION / VISION / VALUES */
.mvv-section {
  padding: 0;
  margin: 0;
  background: var(--gray-bg);
}

.mvv-card {
  background: white;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 36px);
  height: 100%;
  border: 1px solid #ede8df;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.mvv-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-light);
  box-shadow: 0 22px 45px rgba(200, 168, 78, 0.15);
}

.mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #0d2742);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.08) rotate(-4deg);
}

.mvv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: clamp(0.86rem, 1.4vw, 0.96rem);
  color: #000000;
  line-height: 1.8;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f0ebe2;
  font-size: clamp(0.85rem, 1.4vw, 0.94rem);
  color: #3a4a58;
  font-weight: 500;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list li i {
  color: var(--gold-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== TEAM SECTION - NO MARGIN ===== 
.team-section {
  padding: 0;
  margin: 0;
  background: white;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ede8df;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(200, 168, 78, 0.16);
  border-color: var(--gold);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 47, 0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  gap: 14px;
}

.team-card:hover .team-img-overlay {
  opacity: 1;
}

.team-img-overlay a {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.team-card:hover .team-img-overlay a {
  transform: translateY(0);
}

.team-img-overlay a:hover {
  background: white;
}

.team-body {
  padding: 22px 22px 24px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: clamp(0.75rem, 1.2vw, 0.82rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: clamp(0.82rem, 1.3vw, 0.9rem);
  color: #5a6a78;
  line-height: 1.7;
}
*/


/* ===== WHY CHOOSE US - NO MARGIN ===== */
.why-section {
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2742 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '⚖';
  position: absolute;
  font-size: 30rem;
  color: rgba(200, 168, 78, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.why-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(200, 168, 78, 0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(200, 168, 78, 0.2);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.why-item:hover .why-num {
  color: var(--gold);
}

.why-item h5 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.why-item p {
  font-size: clamp(0.83rem, 1.4vw, 0.92rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* ===== LATIN BANNER - NO MARGIN ===== */
.latin-banner {
  padding: 0;
  margin: 0;
  background: var(--gray-bg);
  text-align: center;
}

.latin-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.latin-banner h2 span {
  color: var(--gold-light);
  font-style: italic;
}

.latin-banner p {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: #5a6a78;
  margin-bottom: 36px;
border-bottom: 0.5px solid var(--navy); 
}

/* ===== CONTACT STRIP - NO MARGIN ===== */
.contact-strip {
  padding: 0;
  margin: 0;
  background: white;
}

.contact-card {
  background: var(--gray-bg);
  padding: 1.6rem 1.2rem;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}

.contact-icon {
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 auto 1rem;
}

.contact-card h4 {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  color: #4a5a68;
  line-height: 1.6;
}

.contact-card a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--gold);
}

.map-col .map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(200, 168, 78, 0.2);
  height: 100%;
  min-height: 220px;
}

.map-col .map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1100;
  transition: 0.2s;
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.08);
  background: #128C7E;
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: #ccc;
  padding: clamp(40px, 6vw, 60px) 0 30px;
  margin: 0;
}

.text-gold {
  color: var(--gold);
}

footer a {
  transition: 0.2s;
}

footer a:hover {
  color: var(--gold) !important;
}

footer .small {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}