
@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');

.site-header .header-bg {
    background: url('../img/concurso_header_fondo.jpg') no-repeat center center;
    background-size: cover;
    /* height: 230px; */
    text-align: center;
    padding: 40px 0;
}

.header-logo {
    max-width: 270px; /* Controla el tamaño máximo del logo */
    width: 80%;
}

/* Verde personalizado */
.text-verde {
    color: #AFD135;
}

.btn-verde {
    background-color: #AFD135;
    color: #000; /* texto en negro para contraste */
    border: none;
}
.btn-verde:hover {
    background-color: #99b82e;
    color: #000;
}

/* Fondo de la caja de "Vos también sos parte..." */
.bg-caja {
    background-color: #F8F4EE;
}

/* Botón personalizado con efecto fade */
/* Botón personalizado con efecto fade en ambos sentidos */
.btn-custom,
.btn-custom:visited {
    background-color: #AFD135;
    color: #4D4745;
    font-style: italic;
    font-weight: 600;
    border: 2px solid #AFD135;
    border-radius: 50px;
    padding: 10px 35px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    font-size: 22px;
}


.btn-custom:hover {
    background-color: #fff;
    color: #AFD135;
    border-color: #AFD135;
    text-decoration: none;
}

/* ===========================
   Bloques de categorías y participantes
=========================== */

/* Participante contenedor */
.participante-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem !important;
}

.participante-item:last-of-type {
    /*margin-bottom: 0 !important;*/
}

/* Imagen del participante */
.participante-thumb {
    position: relative;
    width: 50%; /* Ocupa el 50% del ancho */
    flex-shrink: 0;
}

.participante-thumb::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%,-50%);
    background: #302C2B;
    border-radius: 1000px;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 2;
}
.participante-thumb::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent #ECE4D7;
    margin-left: 2px;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 2;
}
.participante-thumb:hover::before {
    background: #AFD135;
}
.participante-thumb:hover::after {
    border-color: transparent transparent transparent #ffffff;

}

.participante-thumb div {
    border-radius: 10px;
    position: relative;
}

.participante-thumb div:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.1;
}

/* Número sobre la imagen */
.badge-numero {
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    top: 0;
    left: 0;
}

/* Imagen interna */
.participante-thumb img {
    border-radius: 6px;
    display: block;
    width: 100%;
    border: 1px solid #cccccc;
    
}

/* Información a la derecha */
.participante-info {
    flex-grow: 1;
    padding-left: 1.5rem !important;
}

/* Texto de número en la info (opcional si quieres resaltar arriba) */
.participante-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #5DB131;
    text-transform: uppercase;
}

/* Botón compartir: círculo verde */
.btn-share {
    background-color: #AFD135;
    border: 2px solid #AFD135;
    color: #4D4745;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background-color: #fff;
    border: 2px solid #AFD135;
    color: #AFD135;
}

/* Fondo general de la sección votación */
.site-main {
    background-color: #F8F4EE;
}

/* Slider */
/* Bloque slider */
.edicion-anterior-section {
    background: #fff;
}

.slider-card {
    text-decoration: none;
    border: none;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.slider-card img {
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.slider-card:hover {
    transform: scale(1.03);
}

.slider-card .card-body {
    background: #4D4745;
    color: #fff;
    border-radius: 0 0 10px 10px;
}

.slider-card .card-title {
    font-style: italic;
    margin: 0;
}

/* Botones de navegación */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50% 50%;
}

.bg-verde {
    background-color: #AFD135 !important;
}

/* Slider estilos */
.slider-wrapper {
    position: relative;
}

.slider-edicion .card-slide {
    border-radius: 12px;
    overflow: hidden;
    background: #4D4745;
    text-align: center;
}

.slider-edicion .card-slide img {
    width: 100%;
    display: block;
    border-radius: 10px 10px 0 0;
}

.slider-edicion .caption {
    padding: 10px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
}

/* Botones custom */
.slick-prev-custom, .slick-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #AFD135;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
}
.slick-prev-custom { left: -70px; }
.slick-next-custom { right: -70px; }

.slick-prev-custom span, .slick-next-custom span {
    color: #4D4745;
    font-size: 44px;
    font-weight: bold;
}

.slick-prev-custom:hover, .slick-next-custom:hover {
    background: #99b82e;
}

.custom-slider .slide-item {
    margin: 0 8px; /* margen de 15px a cada lado */
}

/* Ajustamos el carrusel para que las tarjetas no queden pegadas a los bordes */
.custom-slider {
    padding: 0 15px;
}


p {
    font-size: 22px;
    line-height: 1.4em;
    color: #4D4745;
}

.container {
    max-width: 1200px;
    padding: 0 40px;
}
.welcome-section .col-lg-6:first-of-type {
    padding-right: 80px;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}
.votar-section {
    padding: 0 0 5rem !important;
}
.votar-section p {
    line-height: 1.2em;
}
.votar-section p span {
    font-weight: 600;
}
.votar-section .bg-caja {
  padding: 1.5rem 2.5rem !important;
  border-radius: 12px !important;
}
.votar-section .bg-caja .d-flex {
    flex: 0 0 75%;
    max-width: 100%;
}

.votar-section img {
    width: 100px !important;
    margin-right: 1.5rem !important;
}


#votacion .text-start,
#votacion .bg-white {
    border-radius: 10px !important;
}
#votacion .text-start {
    padding: 2rem 2.5rem 2rem !important;
}
#votacion .bg-white {
    padding: 2rem 2.5rem 2.5rem !important;
    min-height: 1120px;
}
#votacion .text-start .rounded-pill {
    font-size: 16px;
    border-width: 2px !important;
    padding: 0.6em 1.5em !important;
    border-color: initial !important;
}

.participante-info .btn-custom {
    padding: 25px 35px;
}


#primary p {
    font-size: 20px;
}

.sponsors-section {
    margin: 0 !important;
}


.sponsors-section .align-items-center {
    display: flex;
    justify-content: center;
}

.sponsors-section .sponsors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sponsors-categoria {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 25px;
    width: auto;
}

.sponsors-categoria div {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    text-align: center;
    align-items: center;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center !important;
    position: relative;
    margin: 0 5px;
}
.sponsors-categoria h5 {
    font-size: 22px;
    font-style: italic;
    padding: 20px 0;
}
.sponsors-categoria img {
    margin: 10px 20px;
    max-width: 100%;
    width: auto;
    height: auto;
}
.sponsors-categoria hr {
    position: absolute;
    left: 0px;
    bottom: -5px;
}


#votacion .sponsors-categoria {
    padding: 0;
    margin: 0 -10px;
}
#votacion .sponsors-categoria div {
    margin: 0 15px;
}


.footer-custom {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.um-button{
    background:#AFD136 !important;
    color: #4D4745 !important;
    border: 2px solid #4D4745 !important;
    font-style: italic;
    font-size: 22px !important;
    border-radius: 100000px !important;
    transition: all 0.3s;
}
#modal-video .modal-content {
    max-width: 1000px !important;
    padding: 30px !important;
}
#modal-video .modal-content h5 {
    font-style: italic !important;
}
#modal-video .modal-content video {
    object-fit: cover;
}
#btn-votar-modal {
    height: auto !important;
}

#info-video {
    margin-top: 25px  !important;
    gap: 30px  !important;
}


.video-sponsors {
    background: rgba(236, 228, 215, 0.4);
    margin-top: 30px;
    border-radius: 0 0 16px 16px;
}
.video-sponsors .sponsors-categoria div {
    margin: 0 25px;
}

.random {
    display: flex;
    flex-wrap: wrap;
}


@media (max-width: 1400px) {
    p {
        font-size: 19px;
    }
    #primary p {
        font-size: 17px;
    }
    .welcome-section .col-lg-6:first-of-type {
        padding-right: 30px;
    }
    
}


@media (max-width: 1200px) {
    .slick-next-custom {
        right: -30px;
    }
    .slick-prev-custom {
      left: -30px;
    }
}


@media (max-width: 1200px) {
    .custom-title-block {
      font-size: 30px;
    }
}
@media (max-width: 992px) {
    .welcome-section .col-lg-6:first-of-type {
        padding-right: 30px;
    }
    .block-hight {
        min-height: 0;
    }
    #votacion .bg-white {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .gracias-card__logo {
        width: 270px !important;
        height: auto !important;
    }
}

@media (max-width: 600px) {
    .participante-item {
        flex-wrap: wrap;
    }
    .participante-info {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0 !important;
        padding-top: 15px;
    }
    .participante-thumb {
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 20px;
    }
    .votar-section .bg-caja {
        padding: 1.5rem 2.0rem !important;
    }
    .votar-section .bg-caja .d-flex {
        flex-wrap: wrap;
    }
    .slick-prev-custom span, .slick-next-custom span {
      font-size: 35px;
    }
    .slick-next-custom {
        right: -20px;
    }
    .slick-prev-custom {
      left: -20px;
    }
    .custom-login-google,
    .custom-login-fb {
        width: 100%;
    }
    #modal-login .modal-content {
        padding: 2rem 1rem !important;
    }
    .um-center .um-button {
        max-width: 100% !important;
    }
    .gracias-card__logo {
        width: 230px !important;
    }
}

