.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2631 .elementor-element.elementor-element-89c86aa{text-align:center;font-family:"Rubik Pixels", Sans-serif;font-size:18px;font-weight:300;line-height:8px;color:#FFE500;}@media(max-width:767px){.elementor-2631 .elementor-element.elementor-element-89c86aa > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 30px 0px 30px;}.elementor-2631 .elementor-element.elementor-element-89c86aa{font-size:9px;line-height:1.8em;}}/* Start custom CSS for html, class: .elementor-element-8031c44 *//* =========================================================
   DataSwell – Estilo “tarjeta Tenerife” para Simple Calendar
   ========================================================= */


/* Fuentes: Rock Salt (contenido) + Road Rage (títulos) */
@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&family=Road+Rage&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sue+Ellen+Francisco&display=swap');



/* Variables de color */
.simcal-calendar,
.simple-calendar {
  --k-primary: #7161EF;
  --k-secondary: #DEC0F1;
  --k-accent: #FFBF69;
  --k-text: #1F1F1F;
  --k-muted: #636363;
}

/* Fondo de la página */
#main {
  background: #000;
  padding: 20px;
}


/* -------- Ocultar la “tarjeta grande” del día -------- */

.simcal-day-label,
.simple-calendar .day-label {
  display: none;
}

.simcal-day {
  display: block;
}




/* --------------------------------------------------------- */
/*      MOSTRAR Y FORZAR VISIBILIDAD DE FLECHAS NAV         */
/* --------------------------------------------------------- */

.simcal-nav-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    font-size: 0 !important; /* Oculta cualquier texto interno */
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Flecha ANTERIOR */
.simcal-nav-button.simcal-prev::before {
    content: "◀"; /* Puedes cambiar por ← o ‹ */
    font-size: 26px;
    color: white; /* Cambia el color si tu fondo es claro */
}

/* Flecha SIGUIENTE */
.simcal-nav-button.simcal-next::before {
    content: "▶"; /* Puedes cambiar por → o › */
    font-size: 26px;
    color: white;
}

/* Forzar que el contenedor no recorte flechas */
.simcal-nav {
    overflow: visible !important;
    z-index: 50 !important;
}

/* Asegurar que no queden ocultas por otros elementos */
.simcal-calendar-head,
.simcal-nav-button {
    position: relative;
    z-index: 999 !important;
}


/* -------- GRID PRINCIPAL DE TARJETAS -------- */

/* El contenedor general de eventos será el grid */
.simcal-events-list-container,
.simple-calendar .events {
  display: grid !important;
  gap: 18px !important;
  width: 100%;
  margin: 0;
}

/* Móvil: 1 tarjeta por fila */
@media (max-width: 799px) {
  .simcal-events-list-container,
  .simple-calendar .events {
    grid-template-columns: 1fr !important;
  }
}

/* Desktop: 2 tarjetas por fila */
@media (min-width: 800px) {
  .simcal-events-list-container,
  .simple-calendar .events {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Los contenedores de día no deben apilar filas extra */
.simcal-day,
.simcal-day .simcal-events {
  display: contents !important;
}

/* -------- TARJETA “TENERIFE” -------- */

.simcal-event,
.simple-calendar .event {
  position: relative;
  background: #fff6dd;
  border-radius: 20px;
  padding: 60px 24px 4px; /* top / lados / bottom */
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  border: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Hover */
.simcal-event:hover,
.simple-calendar .event:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

/* Header degradado con puntos */
.simcal-event::before,
.simple-calendar .event::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 40%;
  border-radius: 20px 20px 0 0;
  background:
    radial-gradient(circle at 10px 10px, #f80000 0 7px, transparent 8px 100%),
    linear-gradient(180deg, #f97316, #f80000);
  background-size: 30px 30px, 100% 100%;
  background-repeat: repeat, no-repeat;
  z-index: 0;
}

/* ===== IMPARES (1,3,5...) → NARANJA + ROJO ===== */
.simcal-events-list-container .simcal-day:nth-of-type(odd) .simcal-event::before,
.simple-calendar .events .simcal-day:nth-of-type(odd) .event::before {
  background:
    radial-gradient(circle at 10px 10px, #f80000 0 10px, transparent 10px 100%),
    linear-gradient(180deg, #f97316, #f80000);
  background-size: 30px 30px, 100% 100%;
  background-repeat: repeat, no-repeat;
}

/* ===== PARES (2,4,6...) → ROSA + ROJO ===== */
.simcal-events-list-container .simcal-day:nth-of-type(even) .simcal-event::before,
.simple-calendar .events .simcal-day:nth-of-type(even) .event::before {
  background:
    radial-gradient(circle at 10px 10px, #f80000 0 10px, transparent 10px 100%),
    linear-gradient(180deg, #F100FF, #f80000);
  background-size: 30px 30px, 100% 100%;
  background-repeat: repeat, no-repeat;
}


/* Quitamos pseudo-elementos inferiores antiguos 
.simcal-event::after,
.simple-calendar .event::after {
  content: none;
}
*/

/* -------- TIPOGRAFÍA GLOBAL ROCK SALT EN EL EVENTO -------- */

.simple-calendar .event,
.simple-calendar .event * {
  font-family: 'Sue Ellen Francisco', cursive !important;
  font-size: 20px !important;   /* tamaño contenido tarjeta */
  line-height: 1.4 !important;
}


/* -------- TÍTULO DEL EVENTO EN EL HEADER -------- */

.simcal-event-title,
.simple-calendar .event-title {
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  margin: 0;
  font-size: 38px;
  line-height: 0.8;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff6dd;
  z-index: 2;
  font-family: 'Road Rage', cursive !important;

}

.simcal-event-title a,
.simple-calendar .event-title a {
  color: inherit;
  text-decoration: none;
}


/* -------- CONTENIDO DE LA TARJETA -------- */

.simcal-event-details,
.simple-calendar .event-desc {
  font-size: 28px !important;
  color: #545454;
  margin-top: 10px !important;
}

/* Párrafos de detalles */
.simcal-event-details p,
.simple-calendar .event-desc p,
.simple-calendar .event p {
  margin: 4px 0;
}

/* Fecha, hora y lugar (por si el plugin usa estas clases) */
.simcal-event-time,
.simple-calendar .event-time,
.simcal-event-location,
.simple-calendar .event-location,
.simcal-event .simcal-event-start-date,
.simple-calendar .event .simcal-date,
.simple-calendar .event .date {
  font-size: 28px !important;
  color: #545454;
  margin: 1px 0;
}

/* -------- ENLACES/BOTONES DENTRO DE LA TARJETA -------- */

.simcal-event .simcal-event-url a,
.simple-calendar .event a.more,
.simple-calendar .event .event-link {
  display: none;
}

/* -------- ICONOS PERSONALIZADOS FECHA / LUGAR / HORA -------- */

/* Fecha */
.sc-fecha {
  position: relative;
  padding-left: 48px !important;
  margin: 1px 0 !important;
  line-height: 1.6 !important;
}

.sc-fecha::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  background-image: url('https://karcocha.com/wp-content/uploads/2025/11/icono-calendario.png');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Lugar */
.sc-lugar {
  position: relative;
  padding-left: 48px !important;
  margin: 1px 0 !important;
  line-height: 1.6 !important;
}

.sc-lugar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  background-image: url('https://karcocha.com/wp-content/uploads/2025/11/icono-location.png');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Hora */
.sc-hora {
  position: relative;
  padding-left: 48px !important;
  margin: 1px 0 !important;
  line-height: 1.6 !important;
}

.sc-hora::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  background-image: url('https://karcocha.com/wp-content/uploads/2025/11/icono-reloj.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.simcal-event-description {
    font-size: 18px !important;
}


#evento-detalles {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: 'Sue Ellen Francisco', cursive !important;
  font-size: 20px !important;   /* tamaño contenido tarjeta en desktop */
  line-height: 1.4 !important;
}

#evento-detalles > li.sc-fecha > span.simcal-event-start.simcal-event-start-date {
    font-size: 20px !important;
}


#evento-detalles .simcal-event-description {
   font-size: 14px !important; 
   font-family: 'Sue Ellen Francisco', cursive !important;
   padding-top: 5px;
   margin-bottom: -5px;
}
/* =========================================================
   Tipografías más pequeñas en móvil
   ========================================================= */
@media (max-width: 799px) {

  /* Título del evento */
  .simcal-event-title,
  .simple-calendar .event-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
    top: 18px !important;
  }

  /* Texto general de la tarjeta */
  .simple-calendar .event,
  .simple-calendar .event * {
    font-size: 15px !important;
  }

  /* Párrafos de detalles */
  .simcal-event-details,
  .simple-calendar .event-desc {
    font-size: 15px !important;
  }

  /* Fecha / Lugar / Hora */
  .sc-fecha,
  .sc-lugar,
  .sc-hora {
    font-size: 15px !important;
    padding-left: 40px !important;
    margin: 8px 0 !important;
  }


  /* Iconos en móvil: más pequeños */
  .sc-fecha::before,
  .sc-lugar::before,
  .sc-hora::before {
    width: 32px !important;
    height: 32px !important;
  }

  /* Tarjeta más compacta */
  .simcal-event,
  .simple-calendar .event {
    padding: 60px 20px 10px !important;
  
  }


  /* Header degradado más pequeño */
  .simcal-event::before,
  .simple-calendar .event::before {
    height: 32% !important;
  }
}

/* ----- Desktop: título más abajo ----- */
.simcal-event-title,
.simple-calendar .event-title {
    top: 30px !important; 
}

/* ----- Mobile: título un poco más arriba ----- */
@media (max-width: 799px) {
    .simcal-event-title,
    .simple-calendar .event-title {
        top: 45px !important;
        font-size: 26px !important; /* también un poco más pequeño */
    }
}

/* ===== Desktop: limitar el ancho de cada columna ===== */
@media (min-width: 800px) {

  .simcal-events-list-container,
  .simple-calendar .events {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(400px, 700px)) !important;
    justify-content: center !important; /* centra el grid */
    gap: 84px !important;
  }
}



.simcal-event::after,
.simple-calendar .event::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  top: calc(40% - 35px);
  background-image: url("https://karcocha.com/wp-content/uploads/2025/11/wave-big2-background.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

#evento-detalles {
    font-family: 'Sue Ellen Francisco', cursive !important;
}

/* ======== FORZAR SUE ELLEN FRANCISCO EN TODO EL CONTENIDO ======== */

.simcal-event *,
.simple-calendar .event *,
.simcal-event,
.simple-calendar .event {
    font-family: 'Sue Ellen Francisco', cursive !important;
}

.simcal-event-title,
.simple-calendar .event-title {

  font-family: 'Road Rage', cursive !important;
}

.elementor-2631 .simcal-nav h3 {
   font-family: 'Sue Ellen Francisco', cursive !important; 
   font-size: 35px !important;
}

/* ===== FIX MOBILE: evitar título cortado en tarjetas calendario ===== */
@media (max-width: 799px) {

  .simcal-event,
  .simple-calendar .event {
    padding-top: 125px !important;
    min-height: 360px !important;
  }

  .simcal-event::before,
  .simple-calendar .event::before {
    height: 150px !important;
  }

  .simcal-event::after,
  .simple-calendar .event::after {
    top: 120px !important;
    height: 45px !important;
  }

  .simcal-event-title,
  .simple-calendar .event-title {
    top: 45px !important;
    left: 24px !important;
    right: 24px !important;
    font-size: 23px !important;
    line-height: 1.05 !important;
    max-height: 76px !important;
    overflow: hidden !important;
  }

  .simcal-event-details,
  .simple-calendar .event-desc {
    margin-top: 10px !important;
  }
}

/* ===== Hide wave en mobile ===== */
@media (max-width: 799px) {
  .simcal-event::after,
  .simple-calendar .event::after {
    display: none !important;
    content: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for column, class: .elementor-element-65dce8c */.simcal-calendar-head {
    margin-bottom: 30px;
    font-family: 'Rock Salt', cursive !important;

}/* End custom CSS */