.elementor-4824 .elementor-element.elementor-element-64c1bf3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ============================================================
     CER HOSPITAL — THE COMPLETE TIJUANA GUIDE
     ============================================================ */

  /* ── VARIABLES LOCALES ── */
  :root {
    --tg-navy:       #1e3c78;
    --tg-blue:       #2c52a0;
    --tg-blue-light: #4a9fd4;
    --tg-bg-soft:    #f8f9fc;
    --tg-border:     #eaeef3;
    --tg-white:      #ffffff;
    --tg-text:       #444444;
    --tg-text-muted: #666666;
    --tg-font:       'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  /* ── CONTENEDOR PRINCIPAL ── */
  .cer-guide-container {
    font-family: var(--tg-font) !important;
    max-width: 1000px !important; /* Un poco más ancho para lucir las fotos */
    margin: 60px auto 100px !important;
    padding: 0 20px !important;
    color: var(--tg-text) !important;
    line-height: 1.8 !important;
  }

  /* ── HEADER & INTRO ── */
  .cer-guide-hero {
    text-align: center !important;
    margin-bottom: 50px !important;
  }

  .cer-guide-tag {
    display: inline-block !important;
    background: #eef2f6 !important;
    color: var(--tg-blue) !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.85rem !important;
    margin-bottom: 20px !important;
  }

  .cer-guide-h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: var(--tg-navy) !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
  }

  .cer-guide-intro-text {
    font-size: 1.2rem !important;
    color: #333 !important;
    margin-bottom: 20px !important;
  }

  /* ── ENCABEZADOS DE SECCIÓN (H2) ── */
  .cer-guide-h2 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--tg-blue) !important;
    margin: 60px 0 30px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid var(--tg-border) !important;
  }

  .cer-section-desc {
    font-size: 1.1rem !important;
    color: var(--tg-text-muted) !important;
    margin-bottom: 40px !important;
  }

  /* ── GRID DE ATRACCIONES ── */
  .cer-attraction-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 Columnas */
    gap: 30px !important;
  }

  /* ── TARJETA DE ATRACCIÓN ── */
  .cer-attraction-card {
    background: var(--tg-white) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border: 1px solid var(--tg-border) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .cer-attraction-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(44,82,160,0.12) !important;
  }

  .cer-ac-img-wrapper {
    width: 100% !important;
    height: 250px !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .cer-ac-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
  }

  .cer-attraction-card:hover .cer-ac-img-wrapper img {
    transform: scale(1.08) !important; /* Zoom elegante en la foto */
  }

  .cer-ac-content {
    padding: 30px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .cer-ac-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--tg-navy) !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
  }

  .cer-ac-desc {
    font-size: 1rem !important;
    color: var(--tg-text-muted) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
  }

  /* ── GRAN CTA FINAL (HOSPITAL CER) ── */
  .cer-guide-cta {
    background: linear-gradient(135deg, var(--tg-navy) 0%, var(--tg-blue) 100%) !important;
    border-radius: 30px !important;
    padding: 60px 40px !important;
    text-align: center !important;
    color: var(--tg-white) !important;
    margin-top: 80px !important;
    box-shadow: 0 20px 50px rgba(44,82,160,0.2) !important;
  }

  .cer-cta-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--tg-white) !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    border: none !important;
  }

  .cer-cta-desc {
    font-size: 1.15rem !important;
    color: rgba(255,255,255,0.9) !important;
    max-width: 800px !important;
    margin: 0 auto 30px !important;
  }

  .cer-btn-gold {
    display: inline-block !important;
    background: #ffffff !important;
    color: var(--tg-navy) !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
  }

  .cer-btn-gold:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25) !important;
  }
  
  .cer-ac-map-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: auto !important; /* Empuja el botón hacia el fondo de la tarjeta */
    padding-top: 15px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--tg-blue-light) !important; /* Azul claro CER */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
  }

  .cer-ac-map-link:hover {
    color: var(--tg-blue) !important; /* Cambia al azul más oscuro en hover */
    transform: translateX(5px) !important; /* Se mueve ligeramente a la derecha */
  }

  .cer-ac-map-link svg {
    transition: transform 0.3s ease !important;
  }

  .cer-ac-map-link:hover svg {
    transform: translateY(-2px) !important; /* El pin "salta" un poco */
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .cer-guide-h1 { font-size: 2.5rem !important; }
    .cer-attraction-grid { grid-template-columns: 1fr !important; } /* Pasa a 1 columna en móviles */
    .cer-guide-cta { padding: 40px 20px !important; }
    .cer-cta-title { font-size: 2rem !important; }
  }/* End custom CSS */