:root {
  --neutral-200: #d8dae0;
  --neutral-0: #ffffff;
  --neutral-600: #1d1e20;
  --accent: #007bff;
  --bg: #ffffff;
  --shadow: 0 8px 20px rgba(2, 6, 23, 0.15);
}

body.has-cookie-banner {
  padding-bottom: 80px;
  /* o la altura real de tu banner */
}

body {
  padding-bottom: 80px;
  /* o la altura de tu banner */
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f1f1f;
  color: #ffffff;
  z-index: 99999;
  font-size: 14px;
}

/* CONTENEDOR */
.cookie-box {
  max-width: 1200px;
  margin: auto;
  padding: 12px 15px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

/* TEXTO */
.cookie-box p {
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

/* ENLACE */
.cookie-box a {
  color: #4da3ff;
  text-decoration: underline;
  white-space: nowrap;
}

/* BOTONES */
.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 7px 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
}

#cookie-accept {
  background: #2d7a31;
  color: #ffffff;
  font-weight: 600;
}

#cookie-reject {
  background: #595959;
  color: #ffffff;
  font-weight: 600;
}

/* 📱 AJUSTES ESPECÍFICOS MÓVIL */
@media (max-width: 768px) {

  .cookie-box {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 12px;
  }

  .cookie-box p {
    font-size: 13px;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cookie-buttons button {
    width: 100%;
    max-width: 180px;
  }

}

.container-child-theme {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.post-thumbnail img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.post-thumbnail {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.post-excerpt {
  color: #999;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #fff;
  height: 100%;
}

.post-title {
  font-size: 1.2rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.2em;
}

.post-excerpt {
  margin: 10px 0;
}

.read-more {
  margin-top: auto;
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
}

.read-more:hover {
  background: #005f8d;
}

.caja-amarilla {
  background: rgba(255, 244, 38, 0.2) !important;
  padding: 15px;
  border: 2px solid #111;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 10px;
}

.interes {
  background: rgba(255, 244, 38, 0.2) !important;
  padding: 5px;
}

.container-fix {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-1 {
  padding: 1vh;
}

.copyright-bar {
  display: none;
}

/* Asegurar que el h3 tenga altura fija para evitar saltos */
h3.button-title {
  min-height: 3.5rem;
  line-height: 3.5rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-buttom a {
  display: inline-block;
  /* o block si prefieres */
  min-width: 200px;
  /* ancho mÃƒÂ­nimo para evitar que cambie tamaÃƒÂ±o */
  padding: 0.8em 4em;
  background: linear-gradient(to right, #1e73be 70%, #248ae4);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(33, 57, 165, 0.5);
  transition: all 0.3s ease-in;
  text-align: center;
  white-space: nowrap;
  /* evita que el texto se divida en varias lÃƒÂ­neas */
}

.call-buttom a:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

/* El enlace dentro del botÃƒÂ³n */
.button-title a {
  display: inline-block;
  /* o block si prefieres */
  min-width: 200px;
  /* ancho mÃƒÂ­nimo para evitar que cambie tamaÃƒÂ±o */
  padding: 0.8em 4em;
  background: linear-gradient(to right, #1e73be 70%, #248ae4);
  color: white;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 15px rgba(33, 57, 165, 0.5);
  transition: all 0.3s ease-in;
  text-align: center;
  white-space: nowrap;
  /* evita que el texto se divida en varias lÃƒÂ­neas */
}

/* Evitar cambios al hacer hover */
.button-title a:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

/*.footer-widgets {*/
/*  background-color: #222222;*/
/*  color: white;*/
/*}*/

/*.footer-widgets h2 {*/
/*  color: white !important;*/
/*}*/

/*.footer-widgets a {*/
/*  color: #d1d1d1 !important;*/
/*}*/

/*.footer-widgets a:hover {*/
/*  color: #e8d335 !important;*/
/*}*/

.page-header-image-single img {
  width: 100%;
}

.aling-justify p {
  text-align: justify !important;
}

.yoast-breadcrumbs {
  background: #e1edfa;
  padding: 6px;
  border-radius: 6px;
  color: #353e6f;
  font-weight: 600;
  margin-bottom: 16px;
}

.yoast-breadcrumbs a {
  color: #3d75b9;
}

.container-60 {
  padding: 2em 0;
}

.container {
  background-color: transparent !important;
}

.container-fix h1 {
  font-size: 2.5em;
  font-weight: 700;
}

.container-fix h2 {
  font-size: 2em;
  font-weight: 600;
}

.site-header {
  line-height: 80px;
  z-index: 999;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  background-color: white;
}

/*.inside-navigation {*/
/*  background-color: white;*/
/*  color: rgb(34, 34, 34);*/
/*}*/

.main-navigation .main-nav ul li a,
.main-navigation .menu-toggle,
.main-navigation .menu-bar-items {
  color: rgb(34, 34, 34);
  font-weight: 600;
}

.main-navigation .main-nav ul li[class*="current-menu-"]>a {
  background-color: transparent;
  color: rgb(34, 34, 34);
}

/*.main-navigation .main-nav ul li a:hover {*/
/*  color: rgb(34, 34, 34) !important;*/
/*}*/

.separate-containers .inside-article,
.separate-containers .comments-area,
.separate-containers .page-header,
.one-container .container,
.separate-containers .paging-navigation,
.inside-page-header,
.post {
  background-color: transparent;
}

.schema-faq-section {
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  background-color: var(--neutral-0);
  margin-bottom: 8px;
}

.schema-faq-question {
  padding: 16px 24px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.schema-faq-question:hover {
  cursor: pointer;
}

.schema-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.schema-faq-answer.active {
  max-height: 500px;
  padding: 16px 24px;
}

/* Mejora contraste banner cookies RGPD */
.cdp-cookies-texto,
.cdp-cookies-texto p,
.cdp-cookies-texto a {
  color: #ffffff !important;
}

.cdp-cookies-texto {
  background-color: #1a1a1a !important;
}

.cdp-cookies-texto a {
  text-decoration: underline;
  font-weight: 600;
}

/* Accesibilidad: enlaces distinguibles */
p a,
.cdp-cookies-texto a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

p a:hover,
.cdp-cookies-texto a:hover {
  text-decoration-thickness: 2px;
}

/* Accesibilidad definitiva enlaces banner cookies */
.cdp-cookies-texto a,
.cdp-cookies-texto a:link,
.cdp-cookies-texto a:visited {
  text-decoration: underline !important;
  text-underline-offset: 2px;
  font-weight: 700;
}

.cdp-cookies-texto a:hover,
.cdp-cookies-texto a:focus {
  text-decoration-thickness: 2px;
}

/* Estilo de Tarjetas para la secciÃ³n Taxi 7 Plazas */
.tarjeta-taxi {
  background-color: #ffffff !important;
  border-radius: 12px !important;
  padding: 25px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #f0f0f0 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  height: 100%;
}

.tarjeta-taxi:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  border-color: var(--accent) !important;
  /* UsarÃ¡ tu color azul de acento */
}

/* Ajuste para los iconos/emojis dentro de la tarjeta */
.tarjeta-taxi p:first-child {
  font-size: 35px;
  margin-bottom: 15px;
  display: block;
}

/* --- EFECTOS PARA BOTONES DE ACCIÃ“N --- */

/* BotÃ³n de Llamar (Azul con pulso) */
.btn-llamar {
  background-color: #007bff !important;
  /* Tu azul */
  color: white !important;
  font-weight: bold !important;
  text-transform: uppercase;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* BotÃ³n de WhatsApp (Verde con brillo) */
.btn-whatsapp {
  background-color: #25d366 !important;
  color: white !important;
  font-weight: bold !important;
  text-transform: uppercase;
  border-radius: 50px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Efecto de brillo pasando (Shine) para WhatsApp */
/*.btn-whatsapp::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -60%;
  }

  20% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}*/

/* 1. Quitamos los huecos solo entre los bloques contenedores (secciones) */
/*.entry-content>.wp-block-group,
.entry-content>.wp-block-cover,
.entry-content>section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}*/

/* 2. Devolvemos el espacio natural a los pÃ¡rrafos y listas para que se puedan leer */
/*.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h2,
.entry-content h3 {
  margin-bottom: 1.5em !important;
}*/

/* 3. Evitamos que el Ãºltimo pÃ¡rrafo de una secciÃ³n pegue el fondo a la siguiente */
/*.entry-content p:last-child {
  margin-bottom: 0 !important;
}*/

.fab-button {
  bottom: 100px;
  right: 10px;
  z-index: 9999;
  position: fixed;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  isolation: isolate;
}

.fab-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: pulse 2s infinite;
  z-index: -1;
}

.fab-button svg {
  width: 30px;
  height: 30px;
}

.fab-options {
  position: fixed;
  bottom: 164px;
  right: 10px;
  gap: 6px;
  display: flex;
  flex-direction: column;
  transform: translateY(50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: right;
}

.fab-options.show {
  opacity: 1;
  transform: translateY(-10%);
}

.fab-options a {
  display: flex;
  background-color: #fff;
  box-shadow: var(--shadow);
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  gap: 10px;
}

.fab-options a svg {
  width: 30px;
  height: 30px;
  fill: var(--accent);
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(6, 79, 175, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Ajuste para mÃ³vil: botones uno sobre otro */
@media (max-width: 768px) {
  .wp-block-buttons {
    flex-direction: column !important;
  }

  .wp-block-button {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .container-fix h1 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 1.5em;
  }

  .container-fix {
    padding: 0 1.5em;
  }

  .inside-header {
    padding: 0 1em;
  }

  .call-buttom a {
    width: 100%;
    margin: 0 auto;
  }

  .gp-icon svg {
    width: 2em;
    height: 2em;
  }
}

@media screen and (max-width: 480px) {
  .inside-header {
    padding: 0 10px !important;
  }
}

@media screen and (max-width: 390px) {
  .button-title a {
    font-size: 0.85em;
  }
}