.elementor-widget-section .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-section .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-9479 .elementor-element.elementor-element-3e540ce4{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;overflow:visible;}.elementor-9479 .elementor-element.elementor-element-46d82c4f > .elementor-element-populated{padding:0px 0px 0px 0px;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-3ee541d */:root {
  --primary: #03beb5;
  --primary-dark: #0aa6a3;
  --cream: #fcf9d8;
  --surface: #ffffff;
  --surface-muted: #e7e7e7;
  --text: #182323;
  --text-light: #4a5555;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--surface);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Header */
.header {
  padding: 16px 0;
  border-bottom: 1px solid var(--surface-muted);
  background-color: var(--surface);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-placeholder {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-badge {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.status-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

@media (min-width: 768px) {
  .status-badge {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--surface);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--surface-muted);
  color: var(--text);
}

.btn-secondary:hover {
  background-color: #d1d1d1;
}

.header .btn {
  padding: 10px 20px;
}

/* Hero */
.hero {
  padding: 48px 0;
  background-color: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.status-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.microcopy {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .microcopy {
    text-align: left;
  }
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Sections General */
section {
  padding: 64px 0;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Emergency Signs */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background-color: var(--surface);
  border: 1px solid var(--surface-muted);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.card p {
  color: var(--text-light);
}

.emergency-cta-box {
  margin-top: 32px;
  text-align: center;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 16px;
}

.emergency-cta-box p {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.aviso-clinico {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.trust-item h3 {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--text-light);
}

/* How it works */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--text);
}

.step-content p {
  color: var(--text-light);
}

.steps-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 16px;
  background-color: var(--surface-muted);
  border-radius: 8px;
}

/* FAQ */
details {
  border-bottom: 1px solid var(--surface-muted);
  padding: 16px 0;
}

summary {
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-dark);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin-top: 12px;
  color: var(--text-light);
}

/* Location */
.location-section {
  background-color: var(--cream);
}

.facade-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.facade-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.address-box {
  background-color: var(--surface);
  padding: 24px;
  border-radius: 16px;
}

.address-box p {
  margin-bottom: 4px;
  color: var(--text-light);
}

.address-box strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
}

.final-cta .btn {
  margin-top: 24px;
}

.final-cta .microcopy {
  text-align: center;
  margin-bottom: 16px;
}

/* Sticky CTA Mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--surface);
  padding: 16px 24px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.sticky-cta .btn {
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--text);
  color: var(--surface);
  padding: 48px 0 120px 0; /* extra padding for sticky CTA */
}

footer a {
  color: var(--surface-muted);
  text-decoration: underline;
}

.footer-info {
  margin-bottom: 32px;
}

.footer-info p {
  margin-bottom: 8px;
  color: var(--surface-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-disclaimer {
  font-size: 0.875rem;
  color: #888;
}

/* Desktop adaptations */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero-image img {
    aspect-ratio: 4/3;
  }
  .hero-actions {
    flex-direction: row;
  }
  .emergency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .location-actions {
    flex-direction: row;
  }
  .sticky-cta {
    display: none;
  }
  footer {
    padding-bottom: 48px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}/* End custom CSS */
/* Start custom CSS */<style>
  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
</style>/* End custom CSS */