*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "montserrat", sans-serif;
}

.background-home {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;
    background-image: url("../images/background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.background-home::after {
    content: "";
    position: absolute;
    inset: 0;              
    background: radial-gradient(
        ellipse 70% 90% at 50% 55%,
        rgba(0, 0, 0, 0)     0%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.52) 90%,
        rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.spotlight {
    position: absolute;
    top: 80px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(35px);
    z-index: 6;
    pointer-events: none;
}

.spotlight .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(38% 0%, 62% 0%, 80% 100%, 20% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.spotlight-about {
    position: absolute;
    top: 80px; 
    bottom: 0;
    left: 75%;
    transform: translateX(-49%);
    width: 90%;
    max-width: 1400px;
    filter: blur(20px);
    z-index: 6;
    pointer-events: none;
}

.spotlight-about .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(42% 0%, 58% 0%, 70% 100%, 30% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.spotlight-events {
    position: absolute;
    top: 80px; 
    bottom: 0;
    left: 75%;
    transform: translateX(-107%);
    width: 90%;
    max-width: 1400px;
    filter: blur(20px);
    z-index: 6;
    pointer-events: none;
}

.spotlight-events .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(42% 0%, 58% 0%, 70% 100%, 30% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 100;
}

.background-home > .header {
    background-color: #06357a;
}

.header .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .logo img {
    width: auto;
    height: 50px;
    display: block;
}

.header .menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header .menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 60px;
    list-style: none;
}

.header .menu ul li {
    font-size: 24px;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
}

.header .menu ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease;
}

.menu ul li.one a:hover {
    color: #00bbd7;
}

.menu ul li.two a:hover {
    color: #e7236c;
}

.menu ul li.three a:hover {
    color: #1bb26f;
}

.hamburger-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 2000;

    background-color: transparent;
    border: none;

    transition: transform 0.15s ease;
}

.menu-toggle-label:hover {
    transform: translateY(-2px);
}
.menu-toggle-label:hover span:nth-child(1) {
    transform: translateY(-1px);
}
.menu-toggle-label:hover span:nth-child(3) {
    transform: translateY(1px);
}
.menu-toggle-label:active {
    transform: translateY(1px) scale(0.95);
}

.menu-toggle-label span {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle-label span:nth-child(1) {
    background-color: #00bbd7;
}
.menu-toggle-label span:nth-child(2) {
    background-color: #e7236c; 
}
.menu-toggle-label span:nth-child(3) {
    background-color: #1bb26f; 
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    
    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 1000;
    padding: 80px 30px;
}

#menu-toggle:checked ~ .side-menu {
    transform: translateX(0);
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: "montserrat", sans-serif;
    color: #06357a;
    cursor: pointer;
}

.side-menu a {
    text-decoration: none;
    font-family: "montserrat", sans-serif;
}

.side-menu a:link,
.side-menu a:visited {
    color: #06357a;
}


.side-menu a:hover {
    color: #e7236c;
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.carrousel {
    width: 100%;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: clamp(280px, 52vh, 520px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
}

.carousel-arrow img {
    width: clamp(50px, 6vw, 90px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.carousel-arrow:hover,
.carousel-arrow:focus {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow--prev {
    left: 20px;
}

.carousel-arrow--next {
    right: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    overflow: visible;
    border-radius: 0;
    background: none;
    transition: transform 0.5s ease, opacity 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide img {
    width: clamp(180px, 22vw, 340px);
    height: auto;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide.active {
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
    opacity: 1;
}


.carousel-slide.prev {
    transform: translate(-160%, -50%) scale(1);
    z-index: 4;
    opacity: 1;
}

.carousel-slide.next {
    transform: translate(60%, -50%) scale(1);
    z-index: 4;
    opacity: 1;
}

.carousel-slide.hidden-left {
    transform: translate(-280%, -50%) scale(1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.carousel-slide.hidden-right {
    transform: translate(180%, -50%) scale(1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}


.title {
    width: 100%;
    padding: 0 20px clamp(30px, 6vh, 80px);
    margin-top: 0;  
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0px, 0.5vh, 6px);         
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
}

.title .header {
    width: 100%;
    padding: 0;
    display: block;
}

.title .subheader {
    width: 100%;
}

.title .header .text {
    font-size: clamp(20px, min(4.5vw, 5.5vh), 54px);
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.title .header .text p,
.title .subheader .text p {
    margin: 0;
}

.title .subheader .text {
    font-size: clamp(16px, min(3.5vw, 4.2vh), 38px);
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.about {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 80px;
}

.about .image-about {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 0;
}

.about .image-about img {
    width: 100%;
    height: auto;
}

.title-about {
    flex: 1 1 400px;
    max-width: 600px;
    margin-top: -70px;
}

.title-about .header-about{
    width: 610px;
    height: 550px;
    margin: 30px 0 0 5px;
    border: 0px solid #000;
    position: relative;
    z-index: 20;
}

.title-about .header-about .text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(28px, 4vw, 50px);
    text-align: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.title-about .paragraph{
    width: 580px;
    height: 450px;
    margin-top: -380px;
    margin-left: 20px;
    z-index: 20;
    position: relative;
}

.title-about .paragraph .text{
    font-size: clamp(16px, 2vw, 27px);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    line-height: 1.1;
    text-align: left;
}

.strategic-plan{
    width: 100%;
    max-width: 700px;
    margin-top: -100px;
    margin-right: 630px;
    transform: none;
    height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    line-height: 1.1;
    font-size: 17px;
    font-weight: 800;
    font-style: italic;
    text-align: left;
    z-index: 20;
}

.strategic-plan a{
    text-decoration: underline;
}

.strategic-plan a:link,
.strategic-plan a:visited {
    color: #06357a;
}

.strategic-plan a:hover {
    color: #e7236c;
}

.events {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 80px;
}

.events .image-event {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 0;
    margin-top: 30px;
}

.events .image-event img {
    width: 100%;
    height: auto;
}

.title-event {
    flex: 1 1 400px;
    max-width: 600px;
    margin-top: -40px;
}

.title-event .header-event{
    width: 610px;
    height: 550px;
    margin: 30px 0 0 5px;
    border: 0px solid #000;
    position: relative;
    z-index: 20;
}

.title-event .header-event .text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(28px, 4vw, 50px);
    text-align: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.event-details {
    flex: 1 1 500px;
    max-width: 700px;
    font-family: "montserrat", sans-serif;
    margin-top: -400px;
}

.detail-row {
    display: flex;
    gap: 30px;
    padding: 18px 0;
    border-bottom: 1px solid #06357a;
}

.label {
    flex: 0 0 220px;
    font-weight: 700;
    color: #06357a;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.value {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.value p {
    margin: 0 0 12px 0;
}

.events-right {
    flex: 1 1 500px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

.exhibitions {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex: 1; 
  flex-wrap: wrap;
  margin-top: 200px;
}

body.exhibitions-page {
    overflow-y: auto;
}

body.exhibitions-page .background-home {
    min-height: 100vh;
    height: auto;
    overflow: visible;
    justify-content: flex-start;
}

body.exhibitions-page .exhibitions {
    position: relative;
    z-index: 10;
    padding: 0 40px 80px;
}

.exhibit {
  width: 260px;
  text-align: center;
  font-family:"montserrat", sans-serif;
}

.exhibit img {
  width: 100%;
  height: auto;
}

.exhibit h3 {
  font-size: 16px;
  color: #06357a;
  margin-top: 12px;
  margin-bottom: 8px;
}

.location {
  font-size: 13px;
  font-style: italic;
  color: #06357a;
  margin: 0;
}

.date {
  font-size: 13px;
  color: #06357a;
  margin-top: 6px;
}

/*---- MEDIA QUERY TABLET 1100-1500 ----*/

@media only screen and (max-width: 1400px) {
    div div {
        background-color: none;
    }

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "montserrat", sans-serif;
}

.background-home {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;
    background-image: url("../images/background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.background-home::after {
    content: "";
    position: absolute;
    inset: 0;              
    background: radial-gradient(
        ellipse 70% 90% at 50% 55%,
        rgba(0, 0, 0, 0)     0%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.52) 90%,
        rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.spotlight {
    position: absolute;
    top: 50px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(10px);
    z-index: 6;
    pointer-events: none;
}

.spotlight .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 95% 100%, 5% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.spotlight-about {
    position: absolute;
    top: 50px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(10px);
    z-index: 6;
    pointer-events: none;
}

.spotlight-about .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 95% 100%, 5% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.spotlight-events {
    position: absolute;
    top: 50px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(10px);
    z-index: 6;
    pointer-events: none;
}

.spotlight-events .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 95% 100%, 5% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 100;
}

.background-home > .header {
    background-color: #06357a;
}

.header .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .logo img {
    width: 60px;
    height: auto;
    display: block;
    margin-left: -10px;
}

.header .menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header .menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    list-style: none;
}

.header .menu ul li {
    font-size: 12px;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
}

.header .menu ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease;
}

.menu ul li.one a:hover {
    color: #00bbd7;
}

.menu ul li.two a:hover {
    color: #e7236c;
}

.menu ul li.three a:hover {
    color: #1bb26f;
}

.hamburger-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 2000;

    background-color: transparent;
    border: none;

    transition: transform 0.15s ease;
}

.menu-toggle-label:hover {
    transform: translateY(-2px);
}
.menu-toggle-label:hover span:nth-child(1) {
    transform: translateY(-1px);
}
.menu-toggle-label:hover span:nth-child(3) {
    transform: translateY(1px);
}
.menu-toggle-label:active {
    transform: translateY(1px) scale(0.95);
}

.menu-toggle-label span {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle-label span:nth-child(1) {
    background-color: #00bbd7;
}
.menu-toggle-label span:nth-child(2) {
    background-color: #e7236c; 
}
.menu-toggle-label span:nth-child(3) {
    background-color: #1bb26f; 
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    
    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 1000;
    padding: 80px 30px;
}

#menu-toggle:checked ~ .side-menu {
    transform: translateX(0);
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: "montserrat", sans-serif;
    color: #06357a;
    cursor: pointer;
}

.side-menu a {
    text-decoration: none;
    font-family: "montserrat", sans-serif;
}

.side-menu a:link,
.side-menu a:visited {
    color: #06357a;
}


.side-menu a:hover {
    color: #e7236c;
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.carrousel {
    width: 100%;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: clamp(350px, 65vh, 650px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
}

.carousel-arrow img {
    width: clamp(70px, 8vw, 120px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.carousel-arrow:hover,
.carousel-arrow:focus {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow--prev {
    left: 20px;
}

.carousel-arrow--next {
    right: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    overflow: visible;
    border-radius: 0;
    background: none;
    transition: transform 0.5s ease, opacity 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide img {
    width: clamp(220px, 28vw, 420px);
    height: auto;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide.active {
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
    opacity: 1;
}


.carousel-slide.prev {
    transform: translate(-160%, -50%) scale(1);
    z-index: 4;
    opacity: 1;
}

.carousel-slide.next {
    transform: translate(60%, -50%) scale(1);
    z-index: 4;
    opacity: 1;
}

.carousel-slide.hidden-left {
    transform: translate(-280%, -50%) scale(1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.carousel-slide.hidden-right {
    transform: translate(180%, -50%) scale(1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.title {
    width: 100%;
    padding: 0 20px clamp(70px, 22vh, 170px);
    margin-top: -50px;  
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0px, 0.5vh, 6px);         
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
}

.title .header {
    width: 100%;
    padding: 0;
    display: block;
}

.title .subheader {
    width: 100%;
}

.title .header .text {
    font-size: clamp(44px, min(7.5vw, 8.5vh), 64px);
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.title .header .text p,
.title .subheader .text p {
    margin: 0;
}

.title .subheader .text {
    font-size: clamp(26px, min(5vw, 6vh), 70px);
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.about {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 70px;
}

.about .image-about {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 0;
}

.about .image-about img {
    width: 100%;
    height: auto;
}

.title-about {
    flex: 1 1 400px;
    max-width: 600px;
    margin-top: 40px;
}

.title-about .header-about{
    width: 100%;
    height: auto;
    margin-top: -20px;
    position: relative;
    z-index: 20;
}

.title-about .header-about .text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(28px, 4vw, 50px);
    text-align: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    line-height: 1.1;
}

.title-about .paragraph{
    width: 100%;
    margin-top: 10px;
    height: auto;
    margin: 20px 0 0 0;
    z-index: 20;
    position: relative;
}

.title-about .paragraph .text{
    font-size: clamp(16px, 2vw, 27px);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    line-height: 1.1;
    text-align: left;
}

.title-about .header-about .text p,
.title-about .paragraph .text p {
    margin: 0;
}

.strategic-plan{
    position: absolute;
    top: 750px;
    left: 50px;
    right: 0;
    width: 100%;
    max-width: 700px;
    transform: none;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    line-height: 1.1;
    font-size: 15px;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    z-index: 20;
}

.strategic-plan a{
    text-decoration: underline;
}

.strategic-plan a:link,
.strategic-plan a:visited {
    color: #06357a;
}

.strategic-plan a:hover {
    color: #e7236c;
}

.events {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 80px;
}

.events .image-event {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 0;
    margin-top: -70px;
}

.events .image-event img {
    width: 100%;
    height: auto;
}

.title-event {
    flex: 1 1 400px;
    max-width: 600px;
    margin-top: -90px;
}

.title-event .header-event{
    width: 610px;
    height: 550px;
    margin: 30px 0 0 5px;
    border: 0px solid #000;
    position: relative;
    z-index: 20;
}

.title-event .header-event .text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(32px, 5vw, 70px);
    text-align: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.event-details {
    flex: 1 1 500px;
    max-width: 700px;
    font-family: "montserrat", sans-serif;
    margin-top: -420px;
}

.detail-row {
    display: flex;
    gap: 30px;
    padding: 18px 0;
    border-bottom: 1px solid #06357a;
}

.label {
    flex: 0 0 220px;
    font-weight: 700;
    color: #06357a;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.value {
    flex: 1;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.value p {
    margin: 0 0 12px 0;
}

.events-right {
    flex: 1 1 500px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

 .exhibit {
    width: 45%;
    max-width: 320px;
  }

  .exhibitions {
    gap: 40px;
     margin-top: 20px;
  }
}

/*---- MEDIA QUERY MOBILE 400-1100 ----*/
@media only screen and (max-width:480px) {
    div div {
        background-color: none;
    }
   
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "montserrat", sans-serif;
}

body.exhibitions-page {
    overflow-y: auto;
}

.background-home {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;
    background-image: url("../images/background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.background-home::after {
    content: "";
    position: absolute;
    inset: 0;              
    background: radial-gradient(
        ellipse 70% 90% at 50% 55%,
        rgba(0, 0, 0, 0)     0%,
        rgba(0, 0, 0, 0.22) 55%,
        rgba(0, 0, 0, 0.52) 90%,
        rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.spotlight {
    position: absolute;
    top: 50px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(10px);
    z-index: 6;
    pointer-events: none;
}

.spotlight .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 95% 100%, 5% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.spotlight-about {
    position: absolute;
    top: 50px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(10px);
    z-index: 6;
    pointer-events: none;
}

.spotlight-about .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 95% 100%, 5% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.spotlight-events {
    position: absolute;
    top: 50px; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    filter: blur(10px);
    z-index: 6;
    pointer-events: none;
}

.spotlight-events .cone {
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 95% 100%, 5% 100%);
    background-color: rgba(255, 255, 255, 0.40);
}

.header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 100;
}

.background-home > .header {
    background-color: #06357a;
}

.header .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .logo img {
    width: 60px;
    height: auto;
    display: block;
    margin-left: -10px;
}

.header .menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header .menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    list-style: none;
}

.header .menu ul li {
    font-size: 12px;
    font-family: "montserrat", sans-serif;
    font-weight: 700;
}

.header .menu ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s ease;
}

.menu ul li.one a:hover {
    color: #00bbd7;
}

.menu ul li.two a:hover {
    color: #e7236c;
}

.menu ul li.three a:hover {
    color: #1bb26f;
}

.hamburger-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 2000;

    background-color: transparent;
    border: none;

    transition: transform 0.15s ease;
}

.menu-toggle-label:hover {
    transform: translateY(-2px);
}
.menu-toggle-label:hover span:nth-child(1) {
    transform: translateY(-1px);
}
.menu-toggle-label:hover span:nth-child(3) {
    transform: translateY(1px);
}
.menu-toggle-label:active {
    transform: translateY(1px) scale(0.95);
}

.menu-toggle-label span {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle-label span:nth-child(1) {
    background-color: #00bbd7;
}
.menu-toggle-label span:nth-child(2) {
    background-color: #e7236c; 
}
.menu-toggle-label span:nth-child(3) {
    background-color: #1bb26f; 
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    
    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 1000;
    padding: 80px 30px;
}

#menu-toggle:checked ~ .side-menu {
    transform: translateX(0);
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: "montserrat", sans-serif;
    color: #06357a;
    cursor: pointer;
}

.side-menu a {
    text-decoration: none;
    font-family: "montserrat", sans-serif;
}

.side-menu a:link,
.side-menu a:visited {
    color: #06357a;
}


.side-menu a:hover {
    color: #e7236c;
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ .hamburger-wrapper .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.carrousel {
    width: 100%;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: clamp(350px, 65vh, 650px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
}

.carousel-arrow img {
    width: clamp(70px, 8vw, 120px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.carousel-arrow:hover,
.carousel-arrow:focus {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow--prev {
    left: 20px;
}

.carousel-arrow--next {
    right: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    overflow: visible;
    border-radius: 0;
    background: none;
    transition: transform 0.5s ease, opacity 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide img {
    width: clamp(220px, 28vw, 420px);
    height: auto;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-slide.active {
    transform: translate(-50%, -50%) scale(1);
    z-index: 5;
    opacity: 1;
}


.carousel-slide.prev {
    transform: translate(-160%, -50%) scale(1);
    z-index: 4;
    opacity: 1;
}

.carousel-slide.next {
    transform: translate(60%, -50%) scale(1);
    z-index: 4;
    opacity: 1;
}

.carousel-slide.hidden-left {
    transform: translate(-280%, -50%) scale(1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.carousel-slide.hidden-right {
    transform: translate(180%, -50%) scale(1);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.title {
    width: 100%;
    padding: 0 20px clamp(70px, 22vh, 170px);
    margin-top: -50px;  
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0px, 0.5vh, 6px);         
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
}

.title .header {
    width: 100%;
    padding: 0;
    display: block;
}

.title .subheader {
    width: 100%;
}

.title .header .text {
    font-size: clamp(44px, min(7.5vw, 8.5vh), 64px);
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.title .header .text p,
.title .subheader .text p {
    margin: 0;
}

.title .subheader .text {
    font-size: clamp(26px, min(5vw, 6vh), 70px);
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.about {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
}

.about .image-about {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 0;
}

.about .image-about img {
    width: 100%;
    height: auto;
}

.title-about {
    flex: 1 1 400px;
    max-width: 600px;
    margin-top: 40px;
}

.title-about .header-about{
    width: 100%;
    height: auto;
    margin-top: -20px;
    position: relative;
    z-index: 20;
}

.title-about .header-about .text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(28px, 4vw, 50px);
    text-align: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    line-height: 1.1;
}

.title-about .paragraph{
    width: 100%;
    margin-top: 10px;
    height: auto;
    margin: 20px 0 0 0;
    z-index: 20;
    position: relative;
}

.title-about .paragraph .text{
    font-size: clamp(16px, 2vw, 27px);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    line-height: 1.1;
    text-align: left;
}

.title-about .header-about .text p,
.title-about .paragraph .text p {
    margin: 0;
}

.strategic-plan{
    position: absolute;
    top: 500px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 700px;
    transform: none;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    line-height: 1.1;
    font-size: 10px;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    z-index: 20;
}

.strategic-plan a{
    text-decoration: underline;
}

.strategic-plan a:link,
.strategic-plan a:visited {
    color: #06357a;
}

.strategic-plan a:hover {
    color: #e7236c;
}

.events {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 80px;
}

.events .image-event {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 0;
    margin-top: -70px;
    margin-left: -50px;
    margin-right: 100px;
}

.events .image-event img {
    width: 170%;
    height: auto;
}

.title-event {
    flex: 1 1 400px;
    max-width: 600px;
    margin-top: -20px;
}

.title-event .header-event{
    width: 610px;
    height: 550px;
    margin: 30px 0 0 5px;
    border: 0px solid #000;
    position: relative;
    z-index: 20;
}

.title-event .header-event .text{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: clamp(32px, 5vw, 70px);
    text-align: center;
    color: #06357a;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.event-details {
    flex: 1 1 400px;
    max-width: 380px;
    font-family: "montserrat", sans-serif;
    margin-top: -450px;
    margin-left: 110px;
}

.detail-row {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #06357a;
}

.label {
    flex: 0 0 220px;
    font-weight: 700;
    color: #06357a;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.value {
    flex: 1;
    color: #333;
    font-size: 12px;
    line-height: 1.6;
}

.value p {
    margin: 0 0 12px 0;
}

.events-right {
    flex: 1 1 500px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

.exhibit {
        width: 100%;
        max-width: 320px;
  }

  .exhibitions {
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
        margin-top: 32px;
  }

    body.exhibitions-page .background-home {
        min-height: 100vh;
        height: auto;
        overflow: visible;
        justify-content: flex-start;
    }

    body.exhibitions-page .exhibitions {
        padding: 24px 20px 56px;
        margin-top: 0;
    }

  .exhibit h3 {
    font-size: 15px;
  }

  .location,
  .date {
    font-size: 13px;
  }

}