@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@font-face {
    font-family: 'SILVER LININGS';
    src: url('../fonts/SILVERLININGS-Regular.woff2') format('woff2'),
        url('../fonts/SILVERLININGS-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('https://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-U1Ug.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
html{
    overflow-x: hidden;
}
body {
    background: linear-gradient(135deg, #6ec1e4, #6bcb88) fixed;
    background-size: cover;
    color: #f5f5f5;
    font-family: 'Open Sans';
    margin: 0;
    overflow-x: hidden;
    width: 100vw;
}
footer{
    width: 100vw;
}
.agenda {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 1% 5%;
    padding: 20px;
    vertical-align: top;
}
.agenda h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}
.agenda ul {
    list-style: none;
    padding: 0;
}
.agenda li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}
.time {
    font-weight: bold;
    margin-right: 10px;
}
.bg-dark{
    background-color: #131B2D !important;
}
.btn-darkblue{
    background-color: #203055;
    color: #f5f5f5;
}
.btn-darkblue:hover,
.btn-darkblue:active,
.btn-darkblue:focus{
    background-color: #131B2D;
    color: #f5f5f5;
}
.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.card {
    background-color: #111;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
    position: relative;
}
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.card-header div {
    background-color: #01A690;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 10px;
}
.card p {
    font-size: 1rem;
    line-height: 1.5;
}
.card h3{
    font-size: 25px;
}
.info{
    padding: 10%;
}
.info a.purchase{
    display: block;
    margin-left: 50%;
    text-align: center;
    width: 50%;
}
.info h2{
    font-family: 'SILVER LININGS';
    font-size: 3.5rem;
    text-align: left;
}
.info h2 > a{
    color: #f5f5f5;
    text-decoration: underline;
}
.info h4{
    font-family: 'SILVER LININGS';
    font-size: 2.5rem;
    margin-left: 11%;
    text-align: left;
}
.floating-image {
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 500px;
    margin-bottom: 5%;
    overflow: hidden;
    width: 500px;
}
.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.logo-slider {
    overflow: hidden;
    padding: 20px 0;
}
.logo-slider .logos {
    display: flex;
    gap: 50px; /* Espaciado entre logos */
    animation: scroll-left 20s linear infinite;
}
.logo-slider .logos img {
    max-height: 150px; /* Tamaño máximo de los logos */
    opacity: 0.7;
    transition: opacity 0.3s;
}
.logo-slider .logos img:hover {
    opacity: 1; /* Efecto hover */
}
.navbar{
    background: transparent;
    color: #f5f5f5;
}
.nav-link{
    color: #131B2D;
    font-size: 1rem;
    font-weight: bolder;
    text-decoration: none;
}
.nav-link:hover,
.nav-link:focus,
.nav-link:active{
    color: #131B2D;
    text-decoration: underline;
}
.navbar-brand{
    color: #f5f5f5;
    font-family: 'SILVER LININGS';
    font-size: 4rem;
}
.notice {
    margin-top: 30px;
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.notice img {
    width: 30px;
    height: 30px;
}
.overflow-x-hidden{
    overflow-x: hidden;
}
.pointer{
    font-size: 2.5rem;
    margin-right: 10px;
}
.section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}
.speaker-img{
    object-fit: cover;
    width: 50%;
}
.title{
    color: #131B2D;
    display: block;
    font-family: 'SILVER LININGS';
    font-size: 4rem; 
    margin: 1% auto;
    width: 75%;
}
.white-background{
    background-color: #f5f5f5;
    padding: 1%;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@media all and (max-width: 1032px){
    .agenda{
        max-width: 100%;
    }
}
@media all and (max-width: 500px){
    .info{
        padding: 3% 10%;
    }
    .floating-image {
        height: 350px;
        margin: 1% auto;
        width: 350px;
    }
}