/*
    Document   : override
    Created on : <date>
    Author     : <author>
    Description:
        This is where any of your application specific styles should be included
*/

.send-off-screen {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.demo-oracle-icon {
  width:137px;
  height:18px;
  content:url("images/oracle_logo.svg")
}

html:not([dir="rtl"]) .demo-oracle-icon {
  padding-right:4px
}

html[dir="rtl"] .demo-oracle-icon {
  padding-left:4px
}

.demo-oracle-icon:before {
  display:inline
}

.demo-appheader-avatar {
  width:24px;
  height:24px
}

.demo-appheader-avatar:before {
  content:url("images/avatar_24px.png")
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .demo-appheader-avatar:before {
      content:url("images/avatar_24px_2x.png");
      -webkit-transform:translate(-25%, -25%) scale(0.5);
      transform:translate(-25%, -25%) scale(0.5)
  }
}

.nav-button {
  background-color: transparent;
  border: 3px solid #000000;
  color: #000000;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 24px;
  padding: 6px 24px;
}

.nav-button:hover {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.8s ease;
}

.navbar {
  position: fixed !important;
  z-index: 1;
  background-color: #24cb71;
  width: 100%;
  transition: all 0.5s ease;
}

.navbar .content {
  margin: 0px;
  padding: 22px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar .right-menu svg{
    width: 20px;
    height: 20px;
    margin: 0 10px;
    stroke: currentColor;
    fill: none;
    stroke-miterlimit: 10;
    stroke-width: 2.25px;
  
}

.bodycontent {
  max-width: 100vw;
  margin: 0px;
  padding: 0px;
  padding-top: 102px;
  background-color: #24cb71;
}

.carousel-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden; /* Esto está bien aquí */
  width: 100%; /* Asegurar ancho completo */
}

.carousel-track {
  display: flex;
  /* NO pongas transition aquí, se maneja desde JS */
  will-change: transform;
  cursor: grab; /* Indicador visual de que se puede arrastrar */
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  height: 601px;
  width: 650px; /* ← CRÍTICO: Define el ancho de cada slide */
  flex: 0 0 650px; /* ← Evita que flex cambie el tamaño */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  user-select: none; /* ← Previene selección de texto al arrastrar */
  -webkit-user-drag: none; /* ← Previene arrastre de imágenes en Safari */
  background-color: #24cb71;
  position: relative; /* ← Necesario para el ::before */
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}

.slide-content {
  z-index: 2;
  text-align: center;
  height: 100%;
  width: 100%;
  background: #24cb71;
  pointer-events: none; /* ← Evita que el SVG interfiera con el drag */
}

.slide-content svg {
  pointer-events: none; /* ← Importante para el arrastre */
}

.slide-title {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.slide-subtitle {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 300;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-controls:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .carousel-slide {
    min-width: calc(100% - 20%);
    width: calc(100% - 20%);
    height: 300px;
  }
  
  .carousel-wrapper {
    padding: 0 10%;
  }
  
  .slide-title {
    font-size: 22px;
  }
  
  .carousel-controls {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.animation--rotate {
    -webkit-animation: rotate 10s linear 0s infinite;
    animation: rotate 10s linear 0s infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.badge .highfive {
    opacity: 0;
    -webkit-transform: translateX(15px) scale(.9);
    transform: translateX(15px) scale(.9);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease;
    -o-transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease
}

.badge .sparks {
    opacity: 0;
    -webkit-transform: scale(.9);
    transform: scale(.9);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: opacity .3s ease .2s, -webkit-transform .3s ease .2s;
    transition: opacity .3s ease .2s, -webkit-transform .3s ease .2s;
    -o-transition: opacity .3s ease .2s, transform .3s ease .2s;
    transition: opacity .3s ease .2s, transform .3s ease .2s;
    transition: opacity .3s ease .2s, transform .3s ease .2s, -webkit-transform .3s ease .2s
}

.badge .hand {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease
}

.badge:hover .hand {
    -webkit-transform: translateX(-12px);
    transform: translateX(-12px)
}

.badge:hover .highfive {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1)
}

.badge:hover .sparks {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.section--carousel-hero .donation-badge-link {
    bottom: -90px;
    position: absolute;
    right: calc(50vw - 620px)
}

@media(max-width:1250px) {
    .section--carousel-hero .donation-badge-link {
        right: var(--container-padding)
    }
}

@media(max-width:767px) {
    .section--carousel-hero .carousel:before {
        content:'{"slidesToScroll": 1, "align": "center" }';
        display: none
    }
    .section--carousel-hero .carousel-slide.ovals {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 124%;
        flex: 0 0 124%
    }
    .section--carousel-hero .svg-cutout {
        stroke-width: 8
    }
    .section--carousel-hero .carousel-controls {
        display: none
    }
    .section--carousel-hero .donation-badge-link {
        bottom: -60px
    }
    .section--carousel-hero .donation-badge-link .badge {
        height: 120px;
        width: 120px
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.footer {
  background-color: rgb(15, 169, 88);
  width: 100%;
  height: 477px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .container {
  width: 1280px;
  height: 274px;
  margin: 0px;
  padding: 0px;
  text-align: start;
}

.footer-ticker {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-top: 60px;
  padding-bottom: 5px;
  height: 3em; /* Ajusta según tu diseño */
  align-items: center;
}

.footer-ticker .tape {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer-ticker .word {
  line-height: 1;
}

.footer-ticker .snippet--ticker-shape {
  margin: auto 10px;
}