 .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../Imagenes/hotel_opaca.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    color: rgb(255, 0, 0);
}

.hero h1 {
    font-size: 3.5em;
    margin: 0;
    animation: fadeInUp 1.5s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px; 
}


@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2em; 
        line-height: 1.3; 
        padding: 0 15px; 
    }
}


@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.7em; 
    }
}

.content {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    width: calc(33.333% - 40px);
    box-sizing: border-box;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-10px);
}
.card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.card h3 {
    margin: 15px 0 10px;
}
.card p {
    color: #666;
}
.testimonials, .blog, .gallery {
    background: #fff;
    padding: 40px 20px;
}
.testimonials h2, .blog h2, .gallery h2 {
    text-align: center;
    margin-bottom: 20px;
}
.testimonial, .blog-post, .gallery-item {
    margin: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.testimonial:hover, .blog-post:hover, .gallery-item:hover {
    transform: scale(1.05);
}
.testimonial p, .blog-post p {
    color: #444;
}
footer {
    padding: 40px 0;
    font-family: Arial, sans-serif;
    background-color: #00008B; /* Azul oscuro */
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo, .footer-info, .footer-organizer, .footer-locations {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

p, ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    color: #FF0000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo, .footer-info, .footer-organizer, .footer-locations {
        width: 100%;
        text-align: center;
    }
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    width: 20px; 
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    background-color: white;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    background-color: #f0f0f0;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery img {
    width: calc(33.333% - 40px);
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.1);
}


.event-info {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;

}

.event-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.event-detail {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 15px;
    margin: 10px;
    flex-basis: calc(33% - 20px);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@media screen and (max-width: 768px) {
    .event-details {
        flex-direction: column;
        align-items: center;
    }

    .event-detail {
        flex-basis: 100%;
        max-width: 300px; 
        width: 100%;
        margin: 10px 0;
    }
}

.event-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-detail h3 {
    color: #00008B;
    margin-bottom: 10px;
}

.event-quote {
    font-style: italic;
    text-align: center;
    margin: 30px 0;
    font-size: 1.3em;
    line-height: 1.6;
    padding: 20px;
    color: black;
    border-left: 5px solid #FF0000; /* Rojo */
    background-color: #f0f0f0;
}

.event-activities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.activity {
    background-color: #00008B; /* Azul oscuro */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    margin: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.activity:hover {
    transform: scale(1.05) rotate(2deg);
    background-color: #FF0000;
    box-shadow: 0 5px 15px rgba(73, 134, 213, 0.4);
}

.event-description {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: justify;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Por qué asistir */
.why-attend {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.why-attend h2 {
    color: #00008B; /* Azul oscuro */
    border-bottom: 3px solid #FF0000;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.why-attend ul {
    list-style-type: none;
    padding: 0;
}

.why-attend li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.why-attend li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-attend li::before {
    content: '✓';
    color: white;
    background-color: #FF0000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .why-attend {
        padding: 20px;
    }

    .why-attend h2 {
        font-size: 2em;
    }

    .why-attend li {
        padding: 15px;
    }
}
.exhibitor-benefits {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 60px auto; 
    max-width: 1000px;
    text-align: center; 
}

.exhibitor-benefits h2 {
    color: #2c3e50;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

.exhibitor-benefits h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #00008B, #FF0000);
    margin: 20px auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.benefits-grid::after {
    content: "";
    grid-column: 1 / -1;
}
.benefit-item {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px; 
    margin: 0 auto; 
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 300px; 
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-item:last-child {
        grid-column: 2;
    }
}
.benefit-icon {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1em;
    color: #34495e;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .exhibitor-benefits {
        padding: 30px;
    }

    .exhibitor-benefits h2 {
        font-size: 2em;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
.speakers-section {
    background: linear-gradient(135deg, #00008B, #FF0000, #FFD700);
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
  }
  
  .speakers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    animation: shine 15s infinite linear;
    pointer-events: none;
  }
  
  @keyframes shine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .speakers-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }
  
  .speakers-subtitle {
    font-size: 1.8em;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    transform: skew(-5deg);
  }
  
  .speakers-description {
    font-size: 1.1em;
    color: black;
    background-color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  @media screen and (max-width: 600px) {
    .speakers-title {
      font-size: 2em;
    }
    
    .speakers-subtitle {
      font-size: 1.5em;
    }
    
    .speakers-description {
      font-size: 1em;
    }
  }
  .image-gallery {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.gallery-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.gallery-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #00008B, #FF0000);
    margin: 10px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-caption {
    transform: translateY(0);
}

.image-caption h3 {
    margin: 0 0 5px;
    font-size: 1.2em;
}

.image-caption p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .gallery-title {
        font-size: 2em;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-item img {
        height: 250px;
    }
}
.sponsor-logos {
    padding: 2rem 0;
    background-color: #f6f7fd; 
}

.sponsor-logos h2 {
    text-align: center;
    color: #333;
}

.logo-collage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .logo-collage {
        gap: 1rem;
    }

    .sponsor-logo {
        max-width: 100px;
        max-height: 60px;
    }
}
.sobre-nosotros {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
  }

  .sobre-nosotros h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .sobre-nosotros p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    display: none;
  }

  .resumen {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .leer-mas-btn {
    background-color: #00008B; /* Azul oscuro */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
  }

  .leer-mas-btn:hover {
    background-color: #FF0000;
  }

  @media screen and (max-width: 768px) {
    .sobre-nosotros {
      padding: 15px;
    }

    .sobre-nosotros h2 {
      font-size: 2em;
    }

    .leer-mas-btn {
      padding: 8px 16px;
      font-size: 0.9em;
    }
  }
  html {
    scroll-behavior: smooth;
  }
  #a1{
    color: orange;
  }
  #a2{
    color: #70acfa;
  }
  #a3{
    color: blueviolet;
  }
  #a4{
    color: #fc439f;
  }
  @media (max-width: 768px){
    #rodar{
        margin-top: -80px;
      }
      #rodar2{
        margin-top: -10px;
      }
      
  }
  @media (max-width: 768px) {
    .navbar-expand-lg .navbar-nav {
      flex-direction: row;
      flex-wrap: wrap;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-40%);
      gap: 1rem;
      justify-content: center;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
      text-align: center;
      width: 45%;
    }
    #a1, #a2, #a3, #a4 {
      height: 50px;
    }
    #a2, #a3, #a4 {
      margin-top: 0;
    }
  }
  @media (max-width: 768px) {
    .logo-image {
      height: 90px; /* ajusta el tamaño del logo */
      margin-top: -80px; /* mueve el logo hacia arriba */
    }
  }
#cumbre{
    color: rgb(16, 255, 36);
}
#asistir{
    color: rgb(201, 24, 201);
}
#beneficios{
    color: rgb(253, 178, 39);
}
#conferencistas{
    color: #2323e0;
}
#apoyan{
    color: rgb(0, 0, 0);
}
#about{
    color: orange;
}