* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --accent-color: #D4AF37;
    --light-bg: #E8E0D0;
    --text-color: #333;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



body {
    background: linear-gradient(135deg, #c4b5a0 0%, #a0947a 100%);
    min-height: 100vh;
    overflow: hidden;
    font-family: "abril-titling", serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.kiosk-mode {
    overscroll-behavior: none;
}

.kiosk-mode body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.kiosk-home-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border-radius: 999px;
    font-family: "abril-titling", serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.kiosk-home-btn:hover,
.kiosk-home-btn:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    color: #1f1f1f;
    outline: none;
    transform: translateY(-1px);
}

.kiosk-hide-cursor,
.kiosk-hide-cursor * {
    cursor: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .screen {
        transition-duration: 0.01ms !important;
    }
}

/* SCREEN STYLING */
.screen {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

/* tela inicio */
.content-screen-1 {
    overflow-y: hidden;
    width: min(92vw, 1280px);
    /* margin-bottom: 50px; */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    scrollbar-width: thin;
}

/* texto tela inicial */
.description {
    /* overflow-y: scroll; */
    height: min(52vh, 480px);
    border-radius: 10px;
    font-family: "abril-titling", serif;
    font-weight: 200;
    font-style: normal;
    font-size: clamp(1.05rem, 1.45vw, 1.5rem);
    line-height: 1.65;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 30px;
    text-align: justify;
    padding: 20px 40px 50px 40px;
    backdrop-filter: blur(5px);
    background-color: #00000050;
    backdrop-filter: blur(5px);
}

.terel {
    position: absolute;
    bottom: 20px;
    font-family: "abril-titling", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.5rem;
    color: var(--white);
    letter-spacing: 1.2px;
    background-color: #00000050;
    padding: 0px 10px;
    line-height: 25px;
    text-align: center;
    border-radius: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.screen.active,
.screen:target {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 20;
}

/* Tela saindo: sobe levemente e some */
.screen.screen-exit {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px) scale(0.98) !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19) !important;
    pointer-events: none;
    z-index: 15;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* filter: brightness(0.5) sepia(0.3); */
    z-index: 0;
}

.content {
    position: relative;
    z-index: 5;
    width: 100vw;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

/* photos */
.content-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 5;
    width: 100vw;
    padding: 60px 40px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.subtitle-photos {
    font-size: 4rem;
    font-family: "abril-titling", serif;
    font-weight: 900;
    letter-spacing: 10px;
    font-style: normal;
    width: 100%;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.photos-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 0 0;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.photos-container {
    position: relative;
    margin-top: 70px;
    height: 540px;
    width: 100%;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: -40px;
    right: auto;
    top: 210px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    transition: all 1s ease;
}

.prev-btn:hover {
    background-color: #fff;
    color: #000;
    color: var(--text-color);
}

.next-btn {
    right: -40px;
    left: auto;
    top: 210px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    transition: all 1s ease;
}

.next-btn:hover {
    background-color: #fff;
    color: #000;
    color: var(--text-color);
}

.photo-block {
    /* manter blocos empilhados, sem desorganizar layout */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateX(20px);
    width: 90%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.photo-block.active {
    opacity: 1;
    transform: translateX(-50%) translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.photo-block.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateX(-20px);
    pointer-events: none;
    visibility: hidden;
}

.photos-container {
    position: relative;
    width: 100%;
    min-height: 470px;
    /* mantém altura durante troca */
}

.photos-grid img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: solid 1px #ffffff4d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.519);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-galery {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.photo-galery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-galery:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    border-color: var(--accent-color);
}

.photo-galery:active {
    transform: scale(1.3);
}

/* realizações */
.content-realizacoes {
   position: relative;
    z-index: 5;
    width: 80vw;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.subtitle-realizacoes {
    font-size: 4rem;
    width: 100%;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.info-realizacoes {
    overflow-y: hidden;
    width: 100%;
    max-width: 1300px;
    height: 540px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    scrollbar-width: thin;
    backdrop-filter: blur(5px);
    stroke: 1px solid #fffefc;
    background-color: #00000032;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.3);
    scrollbar-color: #3d2f00 transparent;
}

.detail-realizações {
    overflow-y: auto;
    font-family: "abril-titling", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.4rem;
    color: #FFFFFF;
    width: 100%;
    padding: 20px 60px 20px 60px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    height: 100%;
    scrollbar-width: thin;
    margin: 0 auto;
    text-align: justify;
    scrollbar-width: thin;
    backdrop-filter: blur(5px);
    scrollbar-color: #3d2f00 transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.detail-realizações.is-short {
    justify-content: center;
}


.governor-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 200px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TYPOGRAPHY */
.title {
    font-family: "abril-titling", serif;
    font-weight: 900;
    font-style: normal;
    font-size: 4rem;
    letter-spacing: 1.5px;
    color: var(--white);
    font-weight: bold;
    margin-top: -30px;
    margin-bottom: -10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}
.title-inicio {
    font-family: "abril-titling", serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: 1.5px;
    color: var(--white);
    font-weight: bold;
    /* margin-top: -30px; */
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

@media (max-height: 850px) {
    .content-screen-1 {
        width: min(92vw, 1180px);
    }

    .title-inicio {
        font-size: clamp(1.8rem, 3.2vw, 3rem);
        margin-bottom: 14px;
    }

    .description {
        height: min(50vh, 390px);
        font-size: clamp(0.95rem, 1.2vw, 1.2rem);
        padding: 16px 28px 28px 28px;
        margin-bottom: 16px;
    }

    .btn {
        padding: 12px 28px;
    }

    .terel {
        bottom: 10px;
        max-width: 92vw;
        line-height: 1.4;
        padding: 4px 10px;
    }
}

/* nomes details */
.subtitle {
    font-family: "abril-titling", serif;
    font-weight: 000;
    font-style: normal;
    font-size: 3rem;
    color: var(--white);
    text-align: left;
    font-weight: bold;
    width: 600px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
    letter-spacing: 2px;
    /* background-color: red; */
}

.sub_details {
    margin-bottom: -10px;
    padding-left: 30px;
    margin-left: 16px;
}
.sub_details-mandatos{
    margin-bottom: -10px;
    padding-left: 8px;
    margin-left: 16px;
}
.datas {
    font-family: "abril-titling", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.8rem;
    padding-left: 16px;
    color: var(--white);
    text-align: left;
    line-height: 1.8;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    text-shadow: 1.5px 1.5px 2px rgba(0, 0, 0, 0.794);
    max-width: 800px;
    margin-left: 30px;
    margin-right: auto;
}

/* detalhe governador */
.detail-governador {
    overflow-y: auto;
    max-height: 320px;
    text-align: justify;
    border-radius: 10px;
    scrollbar-width: thin;
    backdrop-filter: blur(5px);
    background-color: #0000005e;
    margin-left: 20px;
    padding: 30px 20px 30px 20px;
    scrollbar-color: #3d2f00 transparent;
}

.governor-bio {
    overflow: hidden;
    height: 320px;
    font-size: 1.5rem;
    color: var(--white);
    text-align: left;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1.5px 1.5px 2px rgba(0, 0, 0, 0.646);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.informacoes-governadores {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-top: 123px;
    margin-bottom: 70px;
}

.foto-governador {
    width: 400px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 10px;
}


.info-text {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 950px;
    height: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    border-radius: 10px;
}


.info-text p {
    margin-bottom: 20px;
}

.hint {
    font-family: "abril-titling", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.882);
}

/* BUTTONS */
.btn {
    font-family: "abril-titling", serif;
    font-weight: 100;
    font-style: normal;
    letter-spacing: 1.5px;
    padding: 15px 40px;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 1s ease-in-out;
    letter-spacing: 1px;
    margin: 10px;
    box-shadow: var(--shadow);
}

.btn-primary {

    background-color: #ffffff85;
    color: var(--text-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: #ffffff85;
    color: #2f2400;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #291f00b1;
    background: #f5f5f5;
}

.btn.active {
    background-color: #ffffff;
    color: #2f2400;
    box-shadow: 0 6px 20px #291f00b1;
}

/* GOVERNORS GRID */
.governors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 0 550px;
    margin-bottom: 45px;
}

.governor-card {
    background: rgba(255, 255, 255, 0.917);
    border-radius: 10px;
    display: flex;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    height: 170px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.governor-card:hover {
    transform: translateY(-8px) scale(1.05);
    background-color: #ffffff;
    box-shadow: 0 8px 10px #00000066;
    border-color: #ffffff;
}

.governor-image {
    background: #f5f5f5;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    overflow: hidden;
}

.governor-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.governor-name {
    font-family: "abril-titling", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 0.70rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-wrap: no-wrap;
    text-align: center;
    padding: 10px 0 0 0;
    color: var(--text-color);
    font-weight: bold;
}

/* curiosidade */
.content-curiosidades {
    position: relative;
    z-index: 5;
    width: 80vw;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.background-image {
    background-image: url(/src/img/Capa.jpg);
    background-size: cover;
    z-index: -2;
}

.screen-curiosidades .content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle-curiosidades {
    font-size: 4rem;
    width: 100%;
    color: var(--white);
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.782);
    letter-spacing: 1px;
}

.info-curiosidades {
    overflow-y: hidden;
    max-width: 1280px;
    height: 540px;
    margin-bottom: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    scrollbar-width: thin;
    backdrop-filter: blur(5px);
    stroke: 1px solid #fffefc;
    background-color: #00000032;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.3);
    scrollbar-color: #3d2f00 transparent;
}

.detail-curiosidades {
    overflow-y: auto;
    font-family: "abril-titling", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.4rem;
    width: 100%;
    padding: 20px 60px 20px 60px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scrollbar-width: thin;
    margin: 0 auto;
    text-align: justify;
    scrollbar-width: thin;
    backdrop-filter: blur(5px);
    scrollbar-color: #3d2f00 transparent;
    border-radius: 10px;
}
.detail-curiosidades ul li{
    margin-bottom: 10px;
}
.detail-curiosidades.is-short {
    justify-content: center;
}

.detail-realizações::-webkit-scrollbar,
.detail-governador::-webkit-scrollbar,
.detail-curiosidades::-webkit-scrollbar {
    width: 12px;
    height: 2px;
}

.detail-realizações::-webkit-scrollbar-track,
.detail-governador::-webkit-scrollbar-track,
.detail-curiosidades::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px;
}

.detail-realizações::-webkit-scrollbar-thumb,
.detail-governador::-webkit-scrollbar-thumb,
.detail-curiosidades::-webkit-scrollbar-thumb {
    background: #fffefc;
    border-radius: 20px;
    border: 2px solid transparent;
}

.detail-realizações::-webkit-scrollbar-thumb:hover,
.detail-governador::-webkit-scrollbar-thumb:hover,
.detail-curiosidades::-webkit-scrollbar-thumb:hover {
    background: #2f2400;
}

.bold {
    font-weight: 900;
}

/* CAROUSEL */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    position: relative;
}

.carousel-slides {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 900px;
}

.carousel-item {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(150, 140, 130, 0.7);
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: var(--text-color);
    transform: scale(1.1);
}

/* NAVIGATION BUTTONS GRID */
.navigation-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 30;
}

.lightbox:target {
    display: flex;
}

.large {
    max-width: 90%;
    max-height: 90%;
    z-index: 10;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 50px;
    right: 30px;
    color: white;
    font-size: 40px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MANDATE TABS STYLING */
.mandate-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.mandate-btn {
    padding: 12px 24px;
    background: #fcfbfa68;
    border: 2px solid transparent;
    color: #2f2400;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "abril-titling", serif;
    font-weight: 800;
    text-align: start;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 10px 50px 50px 10px;
    transition: all 0.3s ease;
}

.mandate-btn:hover {
    background: rgb(255, 255, 255);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.mandate-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.mandate-content.active {
    display: block;
}


/* RESPONSIVE */
@media (max-width: 2000px) {
    .content-screen-1,
    .content,
    .content-photos,
    .content-realizacoes,
    .content-curiosidades,
    .informacoes-governadores,
    .photos-container,
    .info-realizacoes,
    .info-curiosidades {
        zoom: 0.8;
    }

    .screen{
        padding: 50px;
        flex-direction: none;
    }
   
    .content{
        padding: 50px 20px;
    }
    .governors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        padding: 0 20px;
        margin-bottom: 80px;
    }
    .title-inicio{
         font-size: 3rem;
    }
    .terel {
        font-size: 0.2rem;
        bottom: 20px;
    }
    .description{
        font-size: 1.4rem;
        margin: 0;
        padding: 20px 40px 20px 40px;
        height: fit-content;
        margin-bottom: 40px;
    }
    .btn-primary{
        padding: 10px 30px;
        margin-top: 20px;
    }
    .informacoes-governadores{
        width: 100vw;
        margin-bottom: 80px;
    }
    .datas{
         margin-bottom: 20px;
    }
    .governor-bio{
        font-size: 1.4rem;
    }
    .content-curiosidades{
       width: 100vw; 
       margin: 0 0;
    }
    .subtitle-curiosidades{
        font-size: 3rem;
    }
    .info-curiosidades{
        margin-bottom: 80px;
    }
    .navigation-buttons{
        gap: 5px;
    }
    .btn-secondary{
        padding: 10px 30px;
        font-size: 1rem;
    }
    .photos-container{
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 2000px;
        height: 100%;
        margin-bottom: 80px;
    }
    .prev-btn {
        left: 11px;
    }
    .next-btn {
        right: 11px;
    }
    .content-realizacoes{
       width: 100vw; 
       margin: 0 0;
    }
    .content-photos{
         width: 100vw; 
         margin: 0 0;
    }
    .subtitle-photos{
        font-size: 3rem;
    }
     .subtitle-realizacoes{
        font-size: 3rem;
    }
}





