/* Colores principales */
:root {
    --upc1: #315789; /* Azul */
    --upc2: #fff; /* Blanco */
}

/* Colores complementarios */
:root {
    --ucc1: #ee724b; /* Naranja */
    --ucc2: #a59482; /* Cafe */
    --ucc3: #b2d5c8; /* Verde claro */
    --ucc4: #4f8552; /* Verde oscuro */
    --ucc5: #f7b299; /* Salmon */
}

        main {
            width: 584px;
            max-width: 85%;
            margin: 0 auto;
            margin-top: 10vh;
        }

        strong {
            font-weight: 800;
        }

        section {
            margin-top: 10vh;
            margin-bottom: 10vh;
        }

        .rotate-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease-in-out;
}


.video-container {
    position: fixed;  /* Se hace fijo para que cubra toda la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100; /* z-index menor para que esté detrás del contenido principal */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100; /* z-index for video */
    opacity: .75;
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100; /* z-index for video */
    opacity: 1;
}

.video-container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -90; 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.sound-btn-container {
    width: 500px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

#playButton {
    background-color: var(--upc1);
    border: none;
    color: var(--upc2);
    max-width: 90%;
    padding: 7.5px 7.5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 10px;
    z-index: 1401;
    animation: breathing 2s infinite;
}

#playButton span {
    margin-right: 8px;
}

@keyframes breathing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
}


        #isotype {
            text-align: center; /* Para centrar horizontalmente la imagen */
        }

        #isotype img {
            width: 200px;
            height: 200px; 
            border-radius: 50%;
        }

        .user-name-container, .cta-contact-container {
            display: flex;
            align-items: center; /* Centra verticalmente */
            justify-content: center; /* Centra horizontalmente */
        }

        .user-name-container h1 {
            margin-right: .5em;
            font-size: 1.5em;
            color: #FFFFFF;
        }

        .user-description, .cta-contact {
            text-align: center;
            color: #FFFFFF;
            max-width: 90%;
            margin: 0 auto 5vh auto;
        }

        .user-description h2 {
            font-size: 1.1em;
        }

.user-description-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limita el texto a 1 línea */
    -webkit-box-orient: vertical;
}

.user-description-text.expanded {
    -webkit-line-clamp: unset;
}

.toggle-icon-UD {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
    cursor: pointer;
    transform: rotate(90deg);  
    border-radius: 50%;  
}

.toggle-icon-UD.expanded {
    transform: rotate(270deg);
}

.next-gigs {
  width: 580px;
  max-width: 90%;
  max-height: auto;
  border-radius: 25px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.next-gigs img {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: scale-down;
  object-position: center;
  border-radius: 25px;
}

.next-gigs:active,
.next-gigs:hover {
    scale: 1.1;

}

.next-gigs-container button {
  margin: 0 auto;
  bottom: 3vh;
  background-color: var(--upc1);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.next-gigs-container button:hover {
  background-color: #333;
}

.gigs-container {
  margin-top: 20px;
}

.gig {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 15px;
}

.calendar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--upc1);
  color: #fff;
  border-radius: 5px;
  text-align: center;
}

.day {
  font-size: 18px;
  font-weight: bold;
}

.month {
  font-size: 12px;
}

.venue {
  flex-grow: 1;
  text-align: center;
  font-size: 16px;
}

.more-info {
  background-color: var(--upc1);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.more-info:hover {
  background-color: #333;
}

.user-links div {
    width: 480px;
    max-width: 90%;
    height: 3.5em;
    background-color: transparent;
    color: var(--upc2);
    border: 3px solid var(--upc2);
    outline: none;
    text-align: center;
    margin: 3vh auto;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;    
    transition: background-color 0.3s, color 0.3s, border-color 0.3s ease-out, opacity 0.3s ease-out; /* Agrega 'opacity 0.3s ease-out' */
    cursor: pointer;
    opacity: 0.8; /* Agrega esta línea */
}

.user-links a {
    text-decoration: none;
    color: var(--upc2);
    padding: .5em;
    transition: color 0.3s ease-out;
}

.user-links div:hover,
.user-links div:active {
    background-color: var(--upc1);
    border: 3px solid var(--upc2);
    outline: none;
    font-weight: 500;
    transform: scale(1.1);
    opacity: 1; /* Agrega esta línea */
}

.user-links div:hover a,
.user-links div:active a {
    color: var(--upc2);
}

.maps {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; /* Asegúrate de que el contenedor tenga suficiente altura */
}

.maps iframe {
    width: 520px;
    height: 450px;
    max-width: 90%;
}


/* Estilos para la sección de servicios */
.services {
    width: 100%;
    max-width: 85%;
    margin: 0 auto; /* Centra la sección de servicios si no ocupa el máximo ancho */
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Ajusta el espaciado para que dos tarjetas quepan por fila */
    align-items: flex-start; /* Alinea los items al inicio verticalmente */
}

.srv-container {
    width: calc(50% - 2em); /* Ajusta el ancho para que dos tarjetas quepan exactamente por fila, considerando los márgenes */
    height: 297px; /* Alto de cada tarjeta */
    position: relative;
    margin: 1em 1em; /* Ajusta los márgenes para asegurar un espacio uniforme entre tarjetas */
}

/* Media query para pantallas menores a 767px */
@media (max-width: 767px) {
    .srv-container {
        width: calc(100% - 2em); /* Ajusta el ancho para que cada tarjeta ocupe toda la fila, menos los márgenes */
    }
}

#moreInfoSrvBtn {
    background-color: #b8214b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-box-shadow: 0px 0px 0px 8px rgb(51, 51, 51, .7);
    box-shadow: 0px 0px 0px 8px rgb(51, 51, 51, .7);
    box-shadow:  rgba(51, 51, 51) 0px 20px 30px -10px;
    cursor: pointer;
}

#moreInfoSrvBtn:hover {
    scale: 1.05;
}

.more-info-srv-points {
    width: 25px;
    height: auto;
    z-index: 301;
}

.srv-card-front, .srv-card-back {
    transition: transform 0.7s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;

}

.srv-card-front:hover {
    scale: 1.05;
    color: #b8214b;
}

.srv-card-back:hover {
    scale: 1.1;
}

.srv-card-front {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

.srv-card-front img {
    width: 75%;
    height: auto;
    object-fit: scale-down;
}

.srv-card-front h2 {
    margin-top: .85em;
    margin-bottom: 0;
    max-width: 90%;
    text-align: center;
    font-size: 1em;
}

.srv-card-front p {
    margin-top: 0;
    margin-bottom: 0;
    color: #b8214b;
}

.srv-card-front .flag {
    margin-top: 0;
    margin-bottom: .85em;
    width: 35px;
    height: 35px;
}

.srv-card-front .flag img {
    object-fit: scale-down;
}

.srv-card-back {
    color: #FFFFFF;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.srv-card-back h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    max-width: 90%;
    text-align: center;
    font-size: 1em;
}

.srv-card-back ul {
    margin-top: 0;
    margin-left: 0;
}

.srv-card-back li {
    font-size: .85em;
    text-align: left;
}

.srv-card-back p {
    text-align: center;
    font-size: .85em;
    padding: .25em;

}

.contacto-inmediato {
    max-width: 95%;
    display: flex;
    justify-content: center;
    align-items: center; /* Alinea los íconos verticalmente al centro */
    margin: 0;
}

.contacto-telefonico {
    margin: 0 .25em; /* Ajusta el espacio entre los íconos si es necesario */
    border-radius: 50%;
    background-color: transparent;
    padding: 1em;
    opacity: .75;
    box-sizing: content-box; /* Asegurar que el padding no aumente el tamaño total de la imagen */
    display: flex; /* Asegura que el contenido del icono se ajuste */
    justify-content: center;
    align-items: center;
    width: 95px; /* Ajusta según sea necesario */
    height: 95px; /* Ajusta según sea necesario */
}

.contacto-telefonico img {
    width: 95%; /* Ajusta el ancho del icono al 95% del contenedor */
    height: auto; /* Mantiene la proporción del icono */
    max-height: 30px; /* Ajusta la altura máxima de los iconos */
    object-fit: contain; /* Asegura que la imagen mantenga sus proporciones */
}

.contacto-inmediato a:hover {
    opacity: 1;
    scale: 1.2;
}



.btn-more-info {
    display: block;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    margin: 0 auto;
    gap: 5vw; /* Espacio entre los botones */
    cursor: pointer;
    background-color: #333333;
    color: #ffffff;
    border: none;
    outline: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s ease-out;
    width: 180px; /* Modificado para ocupar el 60% del ancho */
    max-width: 90%;
    border-radius: 25px;
    height: 35px;
    border: 3px solid #FFFFFF;
} 

.btn-more-info:hover {
    background-color: #f2f2f2;
    color: #333333;
    border: 3px solid #333333;
    outline: none;
    cursor: pointer;
    scale: 1.1;
}

.btn-more-info span {
    margin-bottom: .5em;
}

#downloadIcon {
    width: 2em;
    height: 2em;
    margin-right: .01em;
}

.donload-icon-container {
    fill: transparent;
}

.download-icon {
    fill: #FFFFFF;
}

.btn-more-info:hover .download-icon {
    fill: #333333;
}

a .btn-more-info {
    text-decoration: none;
}

a .btn-more-info:hover {
    text-decoration: none;
}

.graphic-design { background-color: #6E1F5F; }
.fullstack { background-color: #24061E; }
.adversting-mkt { background-color: #BF214B; }
.audiovisual { background-color: #374785; }
.print { background-color: #8E24AA; }





 