
	/* VARIABLES > COLORES BASE
	======================================================================================================================
	Definición de la paleta de colores base para el proyecto                                                            */

:root {  
  --font-base-size: 15px;
  --dark-pink: #f570a9;
  --medium-pink: #efafbd;
  --light-pink: #fbe3f9;
  --dark-orange: #ea5721;
  --light-orange: #f18930;
  --light-beige: #f4eede;
  --red-pink: #C53A63;
  --purple: #926886;
  --color-primary: #F6B589;
  --color-primary-light: #F6B589;
  --color-secondary: #AEAF9E;
  --color-dark-gray: #444444;
  --color-black: #000000;
  --color-white: #FFFFFF;  
  --container-width: 90rem;
  --bg: #f0e6d8;
  --bg-left: #F7E5D5;
  --bg-right: #F7E5D5;
  --text: #3d3530;
  --asterisk: #ffffff;
  --vs-bg: #4a4542;
  --vs-text: #ffffff;
  --divider: #d4c4b5;  
}


/*
========================================================================================================================
BASE
========================================================================================================================
Definimos los elementos HTML comunes y los elementos estructurales de la página                                       */         

html, body {
  font-size: var(--font-base-size);
  font-family: Lato;
}

h1 {
  font-size: 6rem;
  line-height: 1.1;
  font-family: Lato;
  font-weight: 900;
}
h2 {
  font-size: 3.6rem;
  line-height: 1.1;
}
h3 {
  font-size: 2rem;
  line-height: 1.1;  
}
p {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #515151;
}

.black {
  font-weight: 700;
}


/* RESPONSIVE TIPOGRAFÍAS!!! */
@media (min-width: 800px) and (max-width: 1200px){
  h1 { font-size: 5.0rem; }
  h2 { font-size: 3.2rem; }


  .container-seccion-maps > div:nth-child(1) h2 {
    font-size: var(--24px) !important;
  }
  .container-seccion-maps > div:nth-child(3) h2 {
    font-size: var(--22px) !important;
}

.container-seccion-maps > div:nth-child(3) span {
  font-size: var(--32px) !important;
}

}

@media screen and (max-width: 1025px){
  h1 { font-size: 3.6rem; }
  h2 { font-size: 3.0rem; }
  h3 { font-size: 1.8rem; }
}

@media screen and (max-width: 769px){
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  p  { font-size: var(--15px); line-height: 1.3;   padding-left:20px; padding-right: 20px;}
}

.c-white        { color: #ffffff; }
.c-dark-pink    { color: #f570a9; }
.c-medium-pink  { color: #e4a8cc; }
.c-light-pink   { color: #fbe3f9; }
.c-dark-orange  { color: #ea5721; }
.c-light-orange { color: #f18930; }
.c-light-beige  { color: #f4eede; }

.bg-dark-pink    { background: #f570a9; }
.bg-medium-pink  { background: #e4a8cc; }
.bg-light-pink   { background: #fbe3f9; }
.bg-dark-orange  { background: #ea5721; }
.bg-light-orange { background: #f18930; }
.bg-light-beige  { background: #f4eede; }

.d-none {
  display: none;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-fit {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hr-cta {
  max-width:70px;
  border:1.8px solid #916886;
}

.container {
  max-width: var(--container-width) !important;
}

@media (min-width: 1921px) {
  .container {
    max-width: 110rem !important;
  }
}

a.button {
  text-decoration: none;
}

#landing {
  background-color: #ffffff;
}

.title-ppal {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--space) * 2);
  margin-bottom: var(--space) ;
  color: var(--grey-600);
  font-size: var(--26px);
}
  .title-ppal::after {
    content: "";
    display: block;
    width: var(--45px); 
    height: var(--2px);
    background-color: #cacaca;
    margin-top: var(--25px);
  }
  
  .xtra{
    font-size: var(--35px) !important;
  }  

@media (max-width: 768px) {
  h3.title-ppal,
  h2.title-ppal {
    font-size: var(--17px);
  }
  
  .title-ppal {
    font-size: var(--20px);
    margin-bottom: calc(var(--space) * 2);
  }
    .title-ppal::after {
      height: var(--1px);
      width: var(--30px);
      margin-top: var(--10px);
    }

    .d-none {
      display: block;
    }

  .xtra{
    font-size: var(--20px) !important;
  }      


}

.subtitle {
  color: #505050;
  font-size: var(--30px);
  margin-top: var(--40px);
  margin-bottom: var(--35px);
  padding-bottom: var(--10px);
  border-bottom: var(--2px) solid #cacaca;
}

@media (max-width: 768px) { 
  .subtitle {
    font-size: var(--16px);
    margin-top: var(--30px);
    margin-bottom: var(--25px);
    border-bottom: var(--1px) solid #cacaca;
  }
}

/*
========================================================================================================================
SECCIONES
========================================================================================================================
Definimos las clases que se van a servir en todo el contenido principal de la landing (DESKTOP FIRST)                  */


/* ------------------------------------------ CTA - DESPUÉS DE HERO ------------------------------------------*/
.container-cta {
  background-color: #e8eae0;
  border: var(--2px) solid #cfd2c2;
  max-width: 30rem;
  padding: var(--30px);
  border-radius: var(--20px);
  margin-top: var(--30px);
}
  .container-cta p {
    font-size: var(--22px);
    margin-bottom: 0;
  }

.container-sub-cta {
  max-width: 50rem;
}
  .container-sub-cta p {
    font-size: var(--22px);
  }

@media (max-width:768px) {

  .container-cta {
    margin-top: var(--10px);
  }
  .container-sub-cta {
    max-width: 20rem;
  }
    .container-sub-cta p,
    .container-cta p {
      font-size: var(--18px);
    }
}


/* ------------------------------------------ 3 TARJETAS ------------------------------------------*/
#tres-tarjetas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--70px);
  margin-top: var(--20px);
  margin-bottom: var(--20px);
}

#tres-tarjetas > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #edeee7;
  border-radius: 16px;
  overflow: hidden;
  padding-top: var(--40px);
}

#tres-tarjetas > div img {
  width: auto;
  height: 15rem;
  object-fit: contain;
  margin-bottom: -1rem;
  z-index: 1;
}

#tres-tarjetas > div p {
  background-color: #cfd2c3;
  color: #fff; 
  text-align: center;
  font-weight: bold;
  width: 100%;
  padding: var(--40px);
  margin: 0;
}

@media (max-width:768px) {
  #tres-tarjetas {
    grid-template-columns: 1fr;
    gap: var(--30px);
  }

    #tres-tarjetas > div p {
      font-size: var(--20px);
    }
}

/* ------------------------------------------ FORMULARIO ------------------------------------------*/
#landing-form-container {
  padding: var(--space) calc(var(--space) * 2);
  overflow: hidden;
  margin-bottom: var(--40px);
  background-image: url(
    'https://www.clinicaplanas.com/ka/apps/clinicaplanas_assets/landings/mindfulsex/form_mindful_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.container-form {
  background: transparent;
}

.container-form h2 {
  font-weight: 400;
  color:#936886;
}

.reservar-plaza {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: .5rem;
  font-size: 3em;
  padding: 0 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color:#515151 !important;
}

.reservar-plaza::after {
    content: "";
    display: block;
    width: var(--45px);
    height: var(--2px);
    background-color: #515151;
    margin-top: var(--25px);
}

.reservar {
  color:white;
  font-weight:400;
  padding-top:25px;
  padding-bottom:25px;
}

.form-group input, .form-group select {
  border-radius: 10px; 
  width: 450px;
}

#landing-form-container {
  margin-bottom: 40px; 

}


#landing input[type="checkbox"] {
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  margin-right: 5px !important;
  width: 16px; 
  height: 16px;
  border: 1px solid #515151; 
  border-radius: 3px; 
  background-color: transparent; 
  cursor: pointer;
  position: relative;
}

#landing input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #515151; 
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#landing-form form {
  margin-top: 0;
}

#landing .small-legal {
  width: 400px;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #515151;
}

#landing-form input[type="text"], 
#landing-form input[type="email"] {
  width: 400px !important;
  padding: 25px !important;
  padding-left: 15px !important;
  margin-bottom: 5px;
  border: 2px solid #fff !important;
  border-radius: 10px;
  font-family: Lato;
  font-size: 16px;  
  letter-spacing: .1rem;
  color: #515151;
}

#landing-form input[type="text"]:focus, 
#landing-form input[type="email"]:focus,
#landing-form select:focus {
    outline: none; 
}

::placeholder {
  font-family: Lato;
  letter-spacing: .1rem;
  color: #515151;
}

#landing-form span.error {
  color: red;
  display: block;
  margin-top: -10px;
  margin-bottom: 15px;
}

#boton-formulario {
  background-color: #515151;
  color: white;
  font-size: var(--25px);
  font-weight: 400;
  border-radius: var(--10px);
  letter-spacing: 2px;
  padding: var(--10px) var(--16px);
  margin-top: var(--10px);
}

#privacy-policy {
  position:relative;
  top:30px;
  left:0;
}

#privacy-policy p {
  margin-top: 0px;
  font-weight: 400;
  color: #515151;
}

#privacy-policy p a{
  font-weight: 700;
  color: #515151;
}

.recaptcha-wrapper {
  transform: scale(1); 
  transform-origin: 0 0;  
}


@media (max-width: 768px) {
  #landing-form-container {
    background-image: url(
    'https://www.clinicaplanas.com/ka/apps/clinicaplanas_assets/landings/mindfulsex/form_mindful_bg_xs.jpg');
    padding: var(--30px);
  }

  .container-form h2 {
    margin-top: 50px;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .reservar-plaza {
    margin-top: 0;
    font-size: var(--20px);
  }
  
  .small-legal {
    font-size: 2.5vw !important;
    width: 100% !important;
    max-width: 100%;
    word-wrap: break-word;
    padding-left: 10px;
  }

  #privacy-policy p {
    font-size: .8rem !important;
  }

  #boton-formulario {
    margin-bottom: .5rem;
  }

#landing-form {
  padding: 10px;
}

#landing-form input[type="text"], #landing-form input[type="email"] {
  height: 50px !important;
  margin-bottom: 5px;
  font-size: 14px;
}

#landing-form select {
  height: 50px !important;
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px;
  padding: 10px !important;
}

#landing .small-legal {
  font-size: 14px;
  line-height: 1.4;
}

#landing-form > div {
  padding: 0 !important;
}

#boton-formulario {
  font-size: var(--18px);
}

.recaptcha-wrapper {
  transform: scale(0.95); 
}

}


#privacy-policy p {
  margin-top: 10px;
  font-weight: 400;
  color: #515151;
}

#privacy-policy p a{
  font-weight: 700;
  color: #515151;
}  

/* De izquierda (verde grisáceo) a derecha (melocotón) */
.bg-degradado {
  background: linear-gradient(
    90deg,
    #adaf9e 0%,
    #dfb390 50%,
    #f8b58a 100%
  );
  min-height:230px;
}

.bg-degradado2 {
  background: linear-gradient(
    90deg,
    #adaf9e 0%,
    #dfb390 50%,
    #f8b58a 100%
  );
  min-height:250px;
}

.header-logo {
  max-width:75px;
  position:relative;
  top:-50px;
  left:-400px;
}

.header-title {
  width:30vw;
  max-height:100vh;
  object-fit:contain;
  padding-top:30px;
  margin:0 auto; 
} 

.text-transformate {
  padding-top:50px;
  padding-bottom:20px;
  line-height:30px;
}

.white-btn {
  width:180px;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing: 2px;
  cursor:pointer;
  background-color:white;
  color:black;
  padding:12px;
  border-radius: 10px;
} 

.black-btn {
  width:180px;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing: 0px;
  cursor:pointer;
  background-color:black;
  color:white;
  padding:12px;
  border-radius: 10px;
}

.black-btn2 {
  display:block;
  margin:0 auto;
  max-width:250px !important;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing: 2px;
  text-align:center;
  cursor:pointer;
  background-color:black;
  color:white;
  padding:12px;
  border-radius: 10px;
}

.orange-btn {
  width:190px;
  text-transform:uppercase;
  text-decoration:none;
  letter-spacing: 1px;
  cursor:pointer;
  background-color:#F2C9A9;
  color:#515151;
  padding:12px;
  border-radius: 10px;
  font-size:1.1em ;
}

.red-btn {
  background-color: #515151;
  color: white;
}

.why-attend-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto 50px;
}

.why-attend-block {
    padding: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.why-attend-block2 {
    padding: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.block-left {
    background-color: #C9CCBB;
    color: #515151;
    padding: 80px 50px;
}

.block-title {
    font-size: 2.5rem;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.block-left .block-title {
  color: #515151;
}

.block-subtitle {
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight:bolder;
}

.block-right {
    background-color: #F7E5D5;
    text-align: left;
    padding:80px 50px;
}

.block-right p {
    font-size: 1.2rem;
    letter-spacing:1.5px;
    color: #515151;
}  

.small-disclaimer {
    font-size: 1.2rem;
    line-height:30px;
    margin-top: 20px;
    color: var(--color-dark-gray);
}

@media (min-width: 768px) {
    .why-attend-content {
        flex-direction: row;
        gap: 30px;
    }
    .why-attend-block {
        flex: 1;
    }

    .why-attend-block2 {
        flex: 1;
    }    
}

/* --- 6. CONTENT BLOCKS SECTION --- */
.content-blocks-section {
    padding: 40px 20px;
}

.content-blocks-section .section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.content-grid {
    display: grid;
    gap: 20px;
    max-width: 1290px;
    margin: 0 auto;
    grid-template-columns: 1fr; /* Single column on mobile */
}

.content-block {
    padding: 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.key-block {
    background-color: #C9CCBB;
    color: var(--color-black);
    text-align:center;
    padding:40px 40px;
}

.key-block .block-title {
    font-size: 3rem;
    line-height:3.2rem !important;
    text-transform: none;
    letter-spacing:1.8px;
    color: var(--color-dark-gray);
}

.detail-block {
    background-color: #F7E5D5;
}

.detail-block {
    font-size: 18px;
    line-height:24px;
}

.cta-small-block {
    background-color: var(--color-secondary);
    align-items: center;
    text-align:center;
    min-height: 100px;
}

.cta-small-block p{
    font-size: 2rem;
    line-height:3.2rem !important;
    text-transform: none;
    letter-spacing:1.8px;
    color: var(--color-dark-gray);
}

.image-block {
    padding: 0;
}

.event-photo-placeholder {
    width: 100%;
    min-height: 200px;
    /* In a real scenario, this would be an <img> tag */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-style: italic;
    font-size: 14px;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    /* Layout específico del boceto */
    .key-block { grid-area: key; }
    .detail-block { grid-area: detail; }
    .cta-small-block { grid-area: cta; }
    .image-block { grid-area: image; }

    .content-grid {
        grid-template-areas: 
            "key detail"
            "image cta";
    }
}


/* --- 7. FOOTER --- */
.footer {
    background-color: var(--color-white);
    text-align: center;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    width: 40px; /* Adjust size for social icons */
    height: 40px;
}

.bar-end {
  display:block;
  width:100%;
  height:80px;
  background-color:var(--color-dark-gray) !important;
  margin-top:30px;
}

.bar-end p {
  color:white;
  text-align:left;
  padding-top:20px;
  padding-left:30px;
  font-size:15px;
}

.bar-end a {
  color:white;
  text-decoration:none;
}

/* VERSIÓN MÓVIL */
@media (max-width: 1200px) {

  .container {
    max-width: 25rem !important;
  }

  .content-grid {
    max-width: 23rem !important;
  }

  /* De izquierda (verde grisáceo) a derecha (melocotón) */
  .bg-degradado {
    min-height:120px;
  }

  .bg-degradado2 {
      min-height: 200px;
  }  

  .header-logo {
    max-width:36px;
    position: relative;
    top: -10px;
    left: -40px;
  }

  .header-title {
    width:60vw;
    max-height:100vh;
    object-fit:contain; 
    position: relative;
    top: 0px;
    left: -20px;    
  }

  .text-transformate {
    padding-top:20px;
    padding-bottom:20px;
    line-height:25px;
  }

  .block-left {
      padding: 35px 0px;
      height:280px;
  }  

  .block-right {
      padding:35px 0px;
      height:280px;
  }

  .block-right p {
      font-size: 0.8rem;
      letter-spacing: unset;
  }  

  .small-disclaimer {
    font-size: 0.8rem;
    line-height:20px;    
  }

  .reservar-plaza {
    margin-top: 100px;
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .reservar-plaza::after {
    content: "";
    display: block;
    width: var(--45px);
    height: var(--2px);
    background-color: #cacaca;
    margin-top: var(--25px);
}

  .reservar {
    padding-top:40px;
    padding-bottom:25px;
  }

  #privacy-policy {
      position: relative;
      top: 20px;
      left: 0;
  }

  #privacy-policy p {
    font-size: .65rem !important;
  }  

  .small-legal {
      font-size: 2.2vw !important;
  }  

  #boton-formulario {
      margin-bottom: 2rem;
  }  

  h2.title-ppal {
      font-size: var(--23px);
      padding: 0 12px;
      font-weight: 400;
  }  

  .block-title {
      font-size: 2.0rem;
      color: var(--color-white);
      line-height: 1.1;
      margin-bottom: 20px;
  }

  .block-subtitle {
      font-size: 1.85rem;
      color: var(--color-white);
      font-weight:bolder;
  }

  .br-none-xs {
    display:none;
  }

.key-block {
    padding:0 8px;
    height:350px;
}

.key-block .block-title {
    font-size: 24px;
    line-height:32px !important;
}

.detail-block {
  padding:20px;
  height: 350px;
  font-size: 12px;
  line-height:15px;
  margin-bottom:8px;  
}

.cta-small-block {
    height: 350px;
    padding: 5px;
}

.cta-small-block p {
    font-size: 14px;
    line-height:20px !important;
}


}

/* bloque VS */
    /* ─── DESKTOP LAYOUT ─── */
    .mindful_comparison {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-rows: 1fr;
      width: 100%;
      border-radius: 5px;
      overflow: hidden;
    }
 
    .mindful_panel {
      background: var(--bg-left);
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
 
    .mindful_panel--right {
      background: var(--bg-right);
    }
 
    .mindful_panel__title {
      font-family: var(--font-title);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.04em;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
    }
 
    .mindful_panel__item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 1.6rem;
      color: var(--text);
      line-height: 1.4;
    }
 
    /* LEFT panel: text right-aligned, asterisk at the end */
    .mindful_panel--left .mindful_panel__item {
      flex-direction: row-reverse;
      justify-content: flex-start;
      text-align: right;
    }
 
    /* RIGHT panel: asterisk at the start */
    .mindful_panel--right .mindful_panel__item {
      flex-direction: row;
      justify-content: flex-start;
      text-align: left;
    }
 
    .mindful_asterisk {
      color: var(--asterisk);
      font-size: 1.25rem;
      line-height: 1;
      flex-shrink: 0;
      font-weight: 700;
      font-style: normal;
    }
 
    /* ─── VS COLUMN ─── */
    .mindful_vs-col {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 70px;
      background: linear-gradient(to bottom, var(--bg-left), var(--bg-right));
    }
 
    /* vertical divider line */
    .mindful_vs-col::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      background: white;
    }
 
    .mindful_vs-badge {
      width: 350px;
      height: 70px;
      border-radius: 50%;
      background: var(--vs-bg);
      color: var(--vs-text);
      font-family: var(--font-title);
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    }
 
    /* ─── MOBILE LAYOUT ─── */
    @media (max-width: 640px) {
      body { padding: 0; align-items: flex-start; }
 
      .mindful_comparison {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        border-radius: 0;
        max-width: 100%;
        box-shadow: none;
      }
 
      .mindful_panel {
        padding: 2.5rem 1.75rem 3rem;
      }
 
      .mindful_panel--left .mindful_panel__title { text-align: right; }

      .mindful_panel__title {
        font-size: 1.3rem;
      } 
 
      .mindful_vs-col {
        width: 100%;
        height: 48px;
        overflow: visible;
        background: #fff;
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
      }
 
      .mindful_vs-col::before {
        display: none;
      }
 
      .mindful_vs-badge {
        width: 72px;
        height: 72px;
        font-size: 0.95rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
      }
 
      .mindful_panel--left  { padding-bottom: 3rem; }
      .mindful_panel--right { padding-top: 3rem; }
 
      .mindful_panel__item { font-size: 1.3rem; }
    }

    .img-horario {
      max-width:100%;
    }

    .grid-doctoras {
      display: grid;
      grid-template-columns: 1fr; /* 1 columna en móvil */
      gap: 30px; /* Espacio entre las dos doctoras */
    }

    /* Opcional: Estilos para el contenido interno */
    .perfil-doctora h3, .perfil-doctora p {
      text-align: left; /* Si quieres centrar el texto y la imagen */
      margin-top:10px;
      padding:0;
    }    

    @media (min-width: 768px) {
      .grid-doctoras {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en escritorio */
      }
   
    }



  .img-fit {
    width: 100%;
    height: auto;
  }   