/* =========================
   OLMS DENTAL — ESTILO BASE
   (CSS)
========================= */

/* Ajusta estos colores si ya los tienes definidos */
:root{
    --od-bg: #f6f6f6;
    --od-card: #ffffff;
    --od-text: #1b1b1b;
    --od-muted: #555;
    --od-gold: #c9a24d;
    --od-border: rgba(0,0,0,0.08);
    --od-shadow: 0 10px 24px rgba(0,0,0,0.06);
  }
  
  .od-section{
    background: var(--od-bg);
    padding: 70px 18px;
  }
  
  .od-container{
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .od-header{
    text-align: center;
    margin-bottom: 38px;
  }
  
  .od-header h2{
    font-size: 32px;
    line-height: 1.1;
    color: var(--od-text);
    margin: 0 0 10px;
  }
  
  .od-subtitle{
    max-width: 780px;
    margin: 0 auto;
    color: var(--od-muted);
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* Grid principal */
  .od-grid{
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
  }
  
  /* Tarjetas */
  .od-card{
    background: var(--od-card);
    border: 1px solid var(--od-border);
    border-radius: 16px;
    box-shadow: var(--od-shadow);
  }
  
  /* Card contenido */
  .od-card--content{
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
  }
  
  /* Detalle dorado lateral (muy Olmos) */
  .od-card--content::before{
    content:"";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(201,162,77,0.95), rgba(201,162,77,0.25));
  }
  
  /* Título interno */
  .od-card--content h3{
    margin: 0 0 14px;
    padding-left: 10px;
    color: var(--od-text);
    font-size: 20px;
    letter-spacing: 0.2px;
  }
  
  /* Lista */
  .od-list{
    margin: 0;
    padding: 0 0 0 24px;
    color: var(--od-muted);
    line-height: 1.65;
  }
  
  .od-list li{
    margin: 10px 0;
  }
  
  .od-list strong{
    color: var(--od-text);
  }
  
  /* Nota */
  .od-note{
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(201,162,77,0.08);
    border: 1px solid rgba(201,162,77,0.25);
  }
  
  .od-note p{
    margin: 0;
    color: var(--od-muted);
    line-height: 1.6;
  }
  
  .od-note strong{
    color: var(--od-text);
  }
  
  /* Botones */
  .od-actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
  }
  
  .od-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
  }
  
  .od-btn--primary{
    background: var(--od-gold);
    color: #111;
    border-color: rgba(0,0,0,0.12);
  }
  
  .od-btn--primary:hover{
    transform: translateY(-1px);
  }
  
  .od-btn--ghost{
    background: transparent;
    border-color: rgba(0,0,0,0.14);
    color: var(--od-text);
  }
  
  .od-btn--ghost:hover{
    border-color: rgba(201,162,77,0.7);
    transform: translateY(-1px);
  }
  
  /* Card media */
  .od-card--media{
    padding: 18px;
    position: relative;
  }
  
  .od-badge{
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    border: 1px solid rgba(201,162,77,0.35);
  }
  
  .od-image{
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--od-border);
    display: block;
    background: #eee;
  }
  
  .od-mini{
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid var(--od-border);
    background: rgba(0,0,0,0.02);
  }
  
  .od-mini h4{
    margin: 0 0 6px;
    color: var(--od-text);
    font-size: 16px;
  }
  
  .od-mini p{
    margin: 0;
    color: var(--od-muted);
    line-height: 1.55;
    font-size: 14.5px;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .od-grid{
      grid-template-columns: 1fr;
    }
    .od-image{
      height: 240px;
    }
  }
  
  @media (max-width: 520px){
    .od-header h2{
      font-size: 26px;
    }
    .od-card--content{
      padding: 22px 18px 18px;
    }
    .od-actions{
      gap: 10px;
    }
  }
  