@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400..700&display=swap');

:root {
  --bg-dark: #0F172A;
  --bg-light: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --brand-blue: #0EA5E9;
  --brand-dark: #1E3A8A;
  --brand-highlight: #3B82F6;
  --brand-highlight-hover: #2563EB;
  --icon-green: #10B981;
}

/* 14. Global reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
}

/* 1. .landing-bricolage — Root wrapper */
.landing-bricolage {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: #fff;
  line-height: 1.6;
}

.landing-bricolage h1,
.landing-bricolage h2,
.landing-bricolage h3,
.landing-bricolage h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--brand-dark);
}

/* 2. .navbar — Fixed top nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all .3s ease;
}

.navbar.scrolled {
  background: #fff;
  padding: .8rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
}

.nav-logo img {
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-size: 1.15rem;
  color: white;
  line-height: 1.1;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.logo-text span {
  font-size: .65rem;
  color: rgba(255,255,255,0.7);
}

.navbar.scrolled .logo-text strong {
  color: var(--brand-dark);
}

.navbar.scrolled .logo-text span {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links button, 
.nav-links a {
  background: none;
  border: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: color .2s;
  text-decoration: none;
}

.navbar.scrolled .nav-links button, 
.navbar.scrolled .nav-links a {
  color: var(--text-main);
}

.nav-dropdown-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-weight: 500;
  transition: color .3s;
  color: rgba(255,255,255,0.9);
  background: none;
  border: none;
  font-family: inherit;
  font-size: .95rem;
  cursor: pointer;
}

.navbar.scrolled .nav-dropdown-trigger {
  color: var(--text-main);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  flex-direction: column;
  padding: .5rem 0;
  z-index: 1000;
  display: flex;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu, 
.nav-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: .75rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  color: var(--text-main);
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.nav-dropdown-menu a:hover {
  background: #f8fafc;
  color: var(--brand-highlight);
}

.nav-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--brand-highlight);
  color: #fff;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  transition: background .3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brand-highlight-hover);
}

.btn-primary.full-width {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.05rem;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.navbar.scrolled .menu-btn {
  color: var(--brand-dark);
}

/* 3. .hero-section — Full viewport hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: 0;
}

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

.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(15,23,42,0) 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  color: #fff;
  margin-top: 4rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
}

.btn-outline:hover {
  border-color: var(--brand-highlight);
  background: rgba(59,130,246,0.1);
  color: var(--brand-highlight);
}

/* 4. .about-section — About section */
.about-section {
  padding: 8rem 2rem;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.img-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 65%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.img-front img, 
.img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 65%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  border: 8px solid white;
}

.about-text .section-label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

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

/* 5. .value-section — Value proposition split */
.value-section {
  display: flex;
  min-height: 600px;
  align-items: stretch;
}

.value-blue-bg {
  flex: 1;
  background: var(--brand-dark);
  padding: 6rem 4%;
  display: flex;
  justify-content: flex-end;
}

.value-left {
  max-width: 500px;
  width: 100%;
}

.value-left h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.15;
}

.value-subtitle {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.value-item {
  margin-bottom: 2rem;
}

.tooth-icon {
  margin-bottom: .5rem;
}

.value-item h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: .5rem;
}

.value-item p {
  color: rgba(255,255,255,0.85);
  font-size: .95rem;
  line-height: 1.5;
}

.value-right {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
  background: var(--bg-light);
}

.value-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  min-height: 500px;
}

/* 6. .services-section — Services grid */
.services-section {
  padding: 8rem 2rem;
  background: var(--bg-light);
}

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

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.services-grid-interactive {
.services-grid-interactive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .services-grid-interactive {
    grid-template-columns: 1fr;
  }
}

.service-card-interactive {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.service-card-interactive:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--brand-highlight);
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.service-card-interactive:hover .service-card-img img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: .5rem;
  text-align: left;
}

.service-card-body p {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-align: left;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-main);
  padding: .4rem 0;
  border-bottom: 1px solid #F1F5F9;
  font-weight: 500;
}

.check-service-icon {
  flex-shrink: 0;
  display: flex;
}

.service-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-service-primary {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--brand-highlight);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-service-primary:hover {
  background: var(--brand-highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-service-secondary {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-service-secondary:hover {
  background: var(--bg-light);
  border-color: var(--brand-dark);
}

/* 7. .benefits-section — Benefits dark section */
.benefits-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
  color: #fff;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits-header {
  margin-bottom: 4rem;
}

.benefits-header h2 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.benefits-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  border-radius: 20px;
  transition: all .3s;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
  border-color: var(--brand-highlight);
}

.b-icon {
  color: var(--brand-highlight);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.benefit-card h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: rgba(255,255,255,0.7);
  font-size: .95rem;
}

/* 8. .contact-form-section — Contact section */
.contact-form-section {
  padding: 6rem 2rem;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-left > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.c-info-item svg {
  width: 48px;
  height: 48px;
  color: var(--brand-blue);
  background: var(--bg-light);
  padding: .75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.c-info-item strong {
  display: block;
  font-size: 1rem;
}

.c-info-item span {
  color: var(--text-muted);
  font-size: .95rem;
}

.contact-form {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  box-sizing: border-box;
}

.contact-form textarea {
  margin-bottom: 1rem;
  resize: vertical;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
}

/* 9. .footer-section — Footer */
.footer-section {
  background: var(--brand-dark);
  padding: 5rem 2rem;
  color: #fff;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-info h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.c-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color .2s;
}

.c-link:hover {
  color: var(--brand-highlight);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
}

.grayscale-logo {
  height: 32px;
  filter: grayscale(1) brightness(2);
  margin-bottom: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: .85rem;
}

/* 10. .float-whatsapp — WhatsApp FAB */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

/* 11. Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 12. Responsive — @media (max-width: 1024px) */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .value-section {
    flex-direction: column;
  }
  
  .value-left {
    max-width: 100%;
  }
  
  .value-blue-bg {
    padding: 4rem 2rem;
    justify-content: center;
  }
  
  .value-right {
    padding: 2rem;
  }
  
  .value-right img {
    min-height: 400px;
  }
  
  .services-grid-interactive {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid, 
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* 13. Responsive — @media (max-width: 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 5rem 2rem;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    transition: left .3s;
    align-items: flex-start;
    z-index: 200;
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .nav-links button, 
  .nav-links a {
    color: var(--brand-dark);
    font-size: 1.1rem;
    padding: .5rem 0;
  }
  
  .menu-btn {
    display: block;
  }
  
  .nav-cta-wrapper .btn-primary {
    display: none;
  }
  
  .hero-bg {
    width: 100%;
    opacity: .3;
  }
  
  .hero-gradient {
    display: none;
  }
  
  .hero-content {
    margin-top: 5rem;
    padding-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .services-grid-interactive, 
  .input-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* 14. Subpages & Propuesta de Valor styles */
.propuesta-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 5% 4rem;
  overflow: hidden;
  background: var(--bg-dark);
}

.propuesta-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

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

.propuesta-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.5) 100%);
  z-index: 1;
}

.propuesta-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.propuesta-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #FFFFFF !important;
}

.propuesta-hero-content p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  opacity: 0.9;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.propuesta-split-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh;
  background: #fff;
}

.propuesta-split-section.reverse {
  flex-direction: row-reverse;
  background: var(--bg-light);
}

.split-image-container {
  flex: 1 1 50%;
  min-width: 300px;
  position: relative;
}

.split-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.img-contain {
  object-fit: contain !important;
  padding: 2rem;
  box-sizing: border-box;
}

.split-text-container {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 6% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text-container .badge {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-highlight);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.split-text-container h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: var(--brand-dark);
}

.split-text-container p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.propuesta-grid-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.propuesta-grid-list li {
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.propuesta-banner {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
  padding: 5rem 5%;
}

.propuesta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #fff !important;
}

.propuesta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .propuesta-grid-list {
    grid-template-columns: 1fr;
  }
  .propuesta-hero {
    align-items: center;
    text-align: center;
    min-height: 45vh;
  }
  .split-text-container {
    padding: 3rem 1.5rem;
  }
}

