/* ============================================
   BURGOS & ASOCIADOS - COMPLETE STYLESHEET
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --deep-navy: #1b3a5c;
  --steel-blue: #2D5F8A;
  --light-blue: #7BAFD4;
  --sky-tint: #C8DFF0;
  --near-black: #1A1A2E;
  --charcoal: #3D3D54;
  --medium-gray: #6B7280;
  --light-gray: #F5F7FA;
  --off-white: #FAFBFD;
  --white: #FFFFFF;
  --whatsapp: #25D366;
}

/* ---- Font Imports ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   SHARED LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
  background: #1B3A5C;
  height: 40px;
  display: flex;
  align-items: center;
  color: #C8DFF0;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-bar-right a:hover {
  opacity: 0.8;
}

.icon-pin,
.icon-phone {
  flex-shrink: 0;
}

.separator {
  opacity: 0.5;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  background: #FFFFFF;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(27, 58, 92, 0.08);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-burgos {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1B3A5C;
}

.logo-asociados {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #2D5F8A;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  gap: 36px;
}

.nav-desktop a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3D3D54;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #7BAFD4;
  transition: width 0.3s;
}

.nav-desktop a:hover {
  color: #1B3A5C;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.active {
  color: #7BAFD4;
}

.nav-desktop a.active::after {
  width: 100%;
}

/* ---- Navigation Dropdown (Desktop) ---- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(27, 58, 92, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 1010;
  border: 1px solid rgba(27, 58, 92, 0.08);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #3D3D54;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  border-bottom: none;
  text-align: left;
}

.dropdown-menu a::after {
  content: none !important;
}

.dropdown-menu a:hover {
  background-color: #F5F7FA;
  color: #1B3A5C;
  padding-left: 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #1B3A5C;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #1B3A5C;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile a {
  color: #C8DFF0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 223, 240, 0.2);
}

.nav-mobile a.active {
  color: #7BAFD4;
}

/* ---- Mobile Dropdown Submenu ---- */
.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  margin-top: -8px;
  margin-bottom: 8px;
}

.mobile-submenu a {
  color: #C8DFF0;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: none;
  opacity: 0.85;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
  color: #7BAFD4;
  opacity: 1;
}

/* ---- Mobile Menu Open State ---- */

.nav-mobile.open {
  display: flex;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #1B3A5C;
  color: #FFFFFF;
  border: 2px solid #1B3A5C;
}

.btn-primary:hover {
  background: #2D5F8A;
  border-color: #2D5F8A;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1B3A5C;
  border: 2px solid #1B3A5C;
}

.btn-secondary:hover {
  background: #1B3A5C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 2px solid #25D366;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
}

/* ============================================
   PAGE HERO (compact dark header for inner pages)
   ============================================ */

.page-hero {
  background: #1B3A5C;
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: 350px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #FFFFFF;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C8DFF0;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #C8DFF0;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

.breadcrumb-current {
  color: #FFFFFF;
}

.breadcrumb-separator,
.breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ============================================
   HERO (Homepage)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.75);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: #FAFBFD;
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 58, 92, 0.08);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.15);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 32px;
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 12px;
}

.service-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2D5F8A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  color: #1B3A5C;
}

.service-card-link::after {
  content: '\2192';
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  background: #FFFFFF;
  padding: 96px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid #C8DFF0;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: #7BAFD4;
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.1);
}

.pricing-card-header {
  margin-bottom: 20px;
}

.pricing-icon {
  margin-bottom: 12px;
}

.pricing-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #1B3A5C;
}

.pricing-card-price {
  margin-bottom: 24px;
}

.pricing-prefix {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  text-transform: lowercase;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #6B7280;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #7BAFD4;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
}

.pricing-card-features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  padding: 8px 0;
  border-bottom: 1px solid #F5F7FA;
}

/* ============================================
   DIVORCIO SECTION
   ============================================ */

.divorcio {
  background: #F5F7FA;
  padding: 96px 0;
}

.divorcio-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.divorcio-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
}

.divorcio-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.divorcio-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.divorcio-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.divorcio-item span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3D3D54;
  line-height: 1.7;
}

.divorcio-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.12);
}

.divorcio-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog {
  background: #FFFFFF;
  padding: 96px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 58, 92, 0.08);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.15);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-category {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3A5C;
  margin: 12px 0;
}

.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2D5F8A;
  text-decoration: none;
}

.blog-card-link:hover {
  color: #1B3A5C;
}

.blog-card-link::after {
  content: ' \2192';
}

/* ============================================
   VENTAJAS SECTION
   ============================================ */

.ventajas {
  background: #FAFBFD;
  padding: 96px 0;
}

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

.ventaja-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(27, 58, 92, 0.06);
  transition: all 0.3s;
}

.ventaja-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.1);
}

.ventaja-icon {
  width: 80px;
  height: 80px;
  background: #C8DFF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.ventaja-card:hover .ventaja-icon {
  background: #7BAFD4;
}

.ventaja-icon svg {
  stroke: #1B3A5C;
}

.ventaja-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 12px;
}

.ventaja-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION (homepage variant)
   ============================================ */

.cta {
  background: #F5F7FA;
  padding: 96px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.15);
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.footer {
  background: #1B3A5C;
  padding: 80px 0 0;
  color: #C8DFF0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #C8DFF0;
  opacity: 0.8;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C8DFF0;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #FFFFFF;
  opacity: 1;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C8DFF0;
}

.footer-contact a {
  color: #C8DFF0;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 223, 240, 0.2);
  margin-top: 60px;
  padding: 24px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #C8DFF0;
  opacity: 0.6;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s;
  color: #FFFFFF;
  animation: pulse 3s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================
   NOSOTROS PAGE
   ============================================ */

/* ---- Mision ---- */

.mision {
  background: #FFFFFF;
  padding: 96px 0;
}

.mision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mision-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.mision-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
}

.mision-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #3D3D54;
  line-height: 1.8;
}

.mision-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.12);
}

.mision-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Vision ---- */

.vision {
  background: #F5F7FA;
  padding: 96px 0;
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vision-content {
  order: 2;
}

.vision-image {
  order: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.12);
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
}

.vision-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
}

.vision-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #3D3D54;
  line-height: 1.8;
}

/* ---- Valores ---- */

.valores {
  background: #FFFFFF;
  padding: 96px 0;
}

.valores-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  text-align: center;
  margin-bottom: 64px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.valor-card {
  background: #FFFFFF;
  border: 1px solid #C8DFF0;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s;
}

.valor-card:hover {
  border-color: #7BAFD4;
  box-shadow: 0 8px 30px rgba(27, 58, 92, 0.1);
  transform: translateY(-4px);
}

.valor-icon-circle {
  width: 64px;
  height: 64px;
  background: #C8DFF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.valor-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #1B3A5C;
}

/* ---- CTA Nosotros ---- */

.cta-nosotros {
  background: #F5F7FA;
  padding: 96px 0;
}

.cta-nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-nosotros-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-nosotros-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
}

.cta-nosotros-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-nosotros-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-nosotros-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.15);
}

.cta-nosotros-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SERVICIOS INDEX PAGE
   ============================================ */

.servicios-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.servicios-hero-image {
  height: 100%;
}

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

.servicios-hero-content {
  background: #1B3A5C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.servicios-hero-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C8DFF0;
  margin-bottom: 24px;
}

.servicios-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.servicios-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.servicios-hero-line {
  width: 60px;
  height: 3px;
  background: #7BAFD4;
}

/* ---- Services Index ---- */

.services-index {
  background: #FFFFFF;
  padding: 96px 0;
}

.services-index-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-index-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 16px;
}

.services-index-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Service Row ---- */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 58, 92, 0.08);
  margin-bottom: 48px;
}

.service-row:nth-child(even) .service-row-content {
  order: 1;
}

.service-row:nth-child(even) .service-row-image {
  order: 2;
}

.service-row-image {
  min-height: 350px;
}

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

.service-row-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row:nth-child(odd) .service-row-content {
  background: #FFFFFF;
}

.service-row:nth-child(even) .service-row-content {
  background: #F5F7FA;
}

.service-row-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.service-row-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
}

.service-row-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-row-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3D3D54;
  padding: 6px 0;
}

.service-row-item::before {
  content: none;
}

.service-row-btn {
  align-self: flex-start;
}

/* ---- CTA Servicios ---- */

.cta-servicios {
  background: #F5F7FA;
  padding: 96px 0;
}

.cta-servicios-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-servicios-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-servicios-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 20px;
}

.cta-servicios-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-servicios-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-servicios-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.15);
}

.cta-servicios-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

.servicio-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.servicio-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.servicio-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 58, 92, 0.92) 0%, rgba(27, 58, 92, 0.75) 50%, rgba(27, 58, 92, 0.4) 100%);
  z-index: 2;
}

.servicio-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.servicio-hero-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #C8DFF0;
  margin-bottom: 20px;
}

.servicio-hero-breadcrumb a {
  color: #C8DFF0;
  text-decoration: none;
}

.servicio-hero-breadcrumb a:hover {
  color: #FFFFFF;
}

.servicio-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7BAFD4;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.servicio-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
}

.servicio-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
}

.servicio-hero-line {
  width: 80px;
  height: 3px;
  background: #7BAFD4;
  margin-top: 24px;
}

/* ---- Servicio Content ---- */

.servicio-content {
  background: #FFFFFF;
  padding: 96px 0;
}

.servicio-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.servicio-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 16px;
}

.servicio-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.servicio-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.servicio-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3D3D54;
  line-height: 1.7;
}

.servicio-list-item::before {
  content: '\2713';
  color: #7BAFD4;
  font-weight: 700;
  flex-shrink: 0;
}

.servicio-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ---- Sidebar ---- */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #F5F7FA;
  border-radius: 12px;
  padding: 32px;
}

.sidebar-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 24px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.sidebar-item-icon {
  width: 48px;
  height: 48px;
  background: #C8DFF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 4px;
}

.sidebar-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
}

/* ---- Price Card ---- */

.price-card {
  background: #1B3A5C;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.price-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #C8DFF0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #7BAFD4;
  margin: 8px 0;
}

.price-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(200, 223, 240, 0.7);
}

/* ---- Otros Servicios ---- */

.otros-servicios {
  background: #FFFFFF;
  border: 1px solid #C8DFF0;
  border-radius: 12px;
  padding: 24px;
}

.otros-servicios-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.otros-servicios-list {
  list-style: none;
  padding: 0;
}

.otros-servicios-list li {
  margin-bottom: 10px;
}

.otros-servicios-list a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #3D3D54;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.otros-servicios-list a::before {
  content: '\2022';
  color: #7BAFD4;
}

.otros-servicios-list a:hover {
  color: #7BAFD4;
}

/* ============================================
   CONTACTO PAGE
   ============================================ */

.contact-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.7);
  z-index: 2;
}

.contact-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: #FFFFFF;
}

.contact-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}

/* ---- Contact Section ---- */

.contact-section {
  background: #FFFFFF;
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Info Card ---- */

.info-card {
  background: #F5F7FA;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: #C8DFF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 8px;
}

.info-card-content p,
.info-card-content a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3D3D54;
  line-height: 1.6;
  text-decoration: none;
}

.info-card-content a:hover {
  color: #7BAFD4;
}

/* ---- Contact Quote ---- */

.contact-quote {
  border-left: 3px solid #7BAFD4;
  padding-left: 20px;
  margin-top: 8px;
}

.contact-quote p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #6B7280;
  line-height: 1.7;
}

/* ---- Form ---- */

.form-container {
  background: #FFFFFF;
  border: 1px solid #C8DFF0;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(27, 58, 92, 0.06);
}

.form-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1B3A5C;
  margin-bottom: 8px;
}

.form-container-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3D3D54;
  margin-bottom: 6px;
}

.form-label .required {
  color: #e74c3c;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #C8DFF0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1A1A2E;
  background: #FFFFFF;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #7BAFD4;
  box-shadow: 0 0 0 3px rgba(123, 175, 212, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---- Contact Map ---- */

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============================================
   BLOG POST PAGE
   ============================================ */

.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.post-hero-image {
  height: 100%;
}

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

.post-hero-content {
  background: #FAFBFD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}

.post-hero-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.post-hero-breadcrumb a {
  color: #6B7280;
  text-decoration: none;
}

.post-hero-breadcrumb a:hover {
  color: #1B3A5C;
}

.post-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  color: #1B3A5C;
  line-height: 1.2;
  margin-bottom: 16px;
}

.post-hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ---- Post Article ---- */

.post-article {
  background: #FFFFFF;
  padding: 80px 0;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: #3D3D54;
  line-height: 1.7;
  border-left: 3px solid #7BAFD4;
  padding-left: 24px;
  margin-bottom: 40px;
}

.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1B3A5C;
  margin: 40px 0 16px;
}

.post-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3A5C;
  margin: 32px 0 12px;
}

.post-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #3D3D54;
  line-height: 1.8;
  margin-bottom: 20px;
}

.post-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.post-content ul li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #3D3D54;
  line-height: 1.8;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.post-content ul li::before {
  content: '\2713';
  color: #7BAFD4;
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ---- Related Posts ---- */

.related-posts {
  background: #F5F7FA;
  padding: 80px 0;
}

.related-posts-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1B3A5C;
  text-align: center;
  margin-bottom: 48px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.related-post-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 58, 92, 0.08);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.related-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 58, 92, 0.15);
}

.related-post-image {
  height: 200px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-body {
  padding: 24px;
}

.related-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3A5C;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-row-content,
  .service-row:nth-child(even) .service-row-image {
    order: unset;
  }

  .service-row-image {
    min-height: 250px;
  }

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

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

  .post-hero {
    grid-template-columns: 1fr;
  }

  .post-hero-image {
    min-height: 250px;
  }

  .servicios-hero {
    grid-template-columns: 1fr;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .servicio-hero {
    min-height: 400px;
  }

  .page-hero {
    min-height: 280px;
  }

  .top-bar {
    font-size: 12px;
    height: auto;
    padding: 8px 0;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  section,
  .mision,
  .vision,
  .valores,
  .cta,
  .cta-nosotros,
  .cta-servicios,
  .servicio-content,
  .contact-section,
  .services-index,
  .blog,
  .ventajas,
  .pricing,
  .divorcio,
  .services,
  .related-posts {
    padding: 64px 0;
  }

  .servicio-hero-content {
    padding: 40px 24px;
  }

  .form-container {
    padding: 32px 24px;
  }

  .service-row-content {
    padding: 32px 24px;
  }

  .post-hero-content {
    padding: 40px 24px;
  }

  .servicios-hero-content {
    padding: 40px 24px;
  }
}