@font-face {
    font-family: 'open sans';
    src: url('/fonts/Open\ Sans-300.ttf') format('ttf')
}

@font-face {
    font-family: 'open sans';
    src: url('/fonts/Open\ Sans-500.ttf') format('ttf')
}

@font-face {
    font-family: 'open sans';
    src: url('/fonts/Open\ Sans-700.ttf') format('ttf')
}

@font-face {
    font-family: 'open sans';
    src: url('/fonts/Open\ Sans-800.ttf') format('ttf')
}

* {
    font-family: 'font sans', sans-serif
}

p {
    font-size: clamp(18px, 1.2vw, 24px);
    margin: 0
}

li {
    font-size: clamp(16px, 1.05vw, 18px)
}

h1,
h2 {
    color: #fff !important
}

.welcome {
    font-size: clamp(35px, 4.5vw, 20px);
    font-weight: 100;
    line-height: 1.05;
    max-width: 60%;
}

.container {
    position: relative;
    z-index: 1060 !important
}

/* ================= SECTION 1 ================= */
.section-1 {
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    padding-top: 40vh;
    min-height: 90svh;
    color: #fff;
    background:
        linear-gradient(to bottom,
            rgba(6, 26, 28, 0) 0%,
            rgba(6, 40, 42, .30) 40%,
            rgba(4, 58, 60, .55) 68%,
            rgba(1, 72, 74, .82) 100%),
        radial-gradient(120% 80% at 50% 30%, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 55%),
        url('/img/canopix/forest-background.jpg');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    background-repeat: no-repeat
}

/* grid decorativo mais sutil */
.section-1::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    --grid: 14px;
    --thin: rgba(255, 255, 255, .05);
    --bold: rgba(255, 255, 255, .08);
    background-image:
        repeating-linear-gradient(to bottom, var(--thin) 0 1px, transparent 1px var(--grid)),
        repeating-linear-gradient(to right, var(--thin) 0 1px, transparent 1px var(--grid)),
        repeating-linear-gradient(to bottom, transparent 0 calc(var(--grid)*5 - 1px), var(--bold) calc(var(--grid)*5 - 1px) calc(var(--grid)*5)),
        repeating-linear-gradient(to right, transparent 0 calc(var(--grid)*5 - 1px), var(--bold) calc(var(--grid)*5 - 1px) calc(var(--grid)*5))
}

/* névoa no topo */
.section-1::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(10, 20, 22, .45), rgba(10, 20, 22, 0) 35%)
}

/* bloco de texto da direita (painel) */
.info-panel {
    border-radius: 6px;
    padding: 20px 24px 20px 48px;
    max-width: 38vw;

}

/* todos os parágrafos ficam inline, formando um texto único */
.info-panel p {
    margin: 0;
    display: inline;
    font-size: 22px;
    line-height: 1.35;
    gap: 5px;
}

/* quadradinho dourado */
.info-panel .bullet {
    position: relative;
    margin-left: -32px;
    padding-left: 32px;
}

.info-panel .bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: -35px;
    /* alinhamento perfeito com o texto */
    height: 28px;
    width: 28px;
    background: #D19A40;
}

/* texto amarelo */
.info-panel .yellow-bold {
    color: #eeb228 !important;
    margin: 0 2px;
}

.section-1 .custom-card p {
    font-size: clamp(24px, 2vw, 32px)
}

.section-1 .custom-card .yellow-bold-p {
    font-size: clamp(24px, 2vw, 32px) !important;
    color: #eeb228;
    font-weight: 700
}

/* topo: logo à esquerda, idiomas à direita */
.top-logo {
    width: 60%;
}

.arvore {
    width: 80%;
}

.lang-switch {
    position: absolute;
    top: 0;
    right: 10vw;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #A8731A;
    color: #fff;
    padding: 10px 16px;
    font-weight: 700;
    z-index: 1050;
    width: 8vw;
    height: 5vh;
    justify-content: center;
    align-items: center;
}

.lang-switch button {
    background: transparent;
    border: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px
}

.lang-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .6)
}

/* ================= SECTION 2 ================= */
.section-2 {
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    min-height: 80svh;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            rgba(1, 72, 74, .82) 0%,
            rgba(1, 100, 70, .55) 50%,
            rgba(1, 120, 60, .35) 80%),
        radial-gradient(120% 80% at 50% 30%, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 55%),
        url('/img/canopix/earth-background.png');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    background-repeat: no-repeat;
    z-index: 1
}

.section-5 {
    background:
        linear-gradient(to bottom,
            #fff 0%,
            #fff 50%,
            #fff 80%,
            rgba(1, 140, 45, .25) 93%,
            rgba(1, 146, 37, .9) 98%,
            #019225 100%),
        radial-gradient(120% 80% at 50% 30%, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 55%);
}

.section-2::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    --grid: 14px;
    --thin: rgba(255, 255, 255, .05);
    --bold: rgba(255, 255, 255, .08);
    background-image:
        repeating-linear-gradient(to bottom, var(--thin) 0 1px, transparent 1px var(--grid)),
        repeating-linear-gradient(to right, var(--thin) 0 1px, transparent 1px var(--grid)),
        repeating-linear-gradient(to bottom, transparent 0 calc(var(--grid)*5 - 1px), var(--bold) calc(var(--grid)*5 - 1px) calc(var(--grid)*5)),
        repeating-linear-gradient(to right, transparent 0 calc(var(--grid)*5 - 1px), var(--bold) calc(var(--grid)*5 - 1px) calc(var(--grid)*5))
}

.section-2 .container {
    margin-top: 28px
}

/* ================= SECTION 3 ================= */
.section-3 {
    background:
        linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
        url('/img/canopix/plants-branches-fog.jpg');
    min-height: 120svh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    isolation: auto
}

/* ================= SECTION 4 ================= */
.section-4 {
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    min-height: 80svh;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            #019225 0%, rgba(1, 146, 37, .90) 2%, rgba(1, 140, 45, .25) 7%,
            rgba(0, 0, 0, .6) 20%, rgba(0, 0, 0, .6) 50%, rgba(0, 0, 0, .6) 100%),
        radial-gradient(120% 80% at 50% 12%, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 55%),
        url('/img/canopix/hand-background.png');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    background-repeat: no-repeat;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-4::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    --grid: 14px;
    --thin: rgba(255, 255, 255, .05);
    --bold: rgba(255, 255, 255, .08);
    background-image:
        repeating-linear-gradient(to bottom, var(--thin) 0 1px, transparent 1px var(--grid)),
        repeating-linear-gradient(to right, var(--thin) 0 1px, transparent 1px var(--grid)),
        repeating-linear-gradient(to bottom, transparent 0 calc(var(--grid)*5 - 1px), var(--bold) calc(var(--grid)*5 - 1px) calc(var(--grid)*5)),
        repeating-linear-gradient(to right, transparent 0 calc(var(--grid)*5 - 1px), var(--bold) calc(var(--grid)*5 - 1px) calc(var(--grid)*5))
}

/* caixas / acentos */
.custom-card p {
    position: relative;
    margin: 0;
    /* max-width: 22vw */
}

.yellow-bold-p {
    color: #eeb228;
    font-weight: 700;
    font-size: clamp(24px, 2vw, 32px) !important
}

.green-bold-p {
    color: #79db41;
    font-weight: 700;
    font-size: clamp(24px, 2vw, 32px) !important
}

.section-1 .custom-card {
    margin-right: -5vw;
    margin-left: 15vw
}

.yellow-box-top-left {
    position: relative
}

.yellow-box-top-left::before {
    content: "";
    position: absolute;
    left: -28px;
    top: -25px;
    height: 30px;
    width: 30px;
    background: #D19A40;
    pointer-events: none
}



.green-box-top-left {
    position: relative
}

.green-box-top-left::before {
    content: "";
    position: absolute;
    left: -28px;
    top: -25px;
    height: 30px;
    width: 30px;
    background: #79db41;
    pointer-events: none
}

.green-box-bottom-right {
    position: relative;
    color: #fff
}

.green-box-bottom-right::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 30px;
    width: 30px;
    background: #79db41;
    pointer-events: none
}

.section-2 .custom-card {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    gap: 1rem;
}

.section-2 .custom-card p {
    font-size: 20px;
}

.green-card-box-top-left {
    position: relative;
    border: #79db41 solid 1px;
    padding: 15px;
    max-width: 25vw;
    margin-left: -1vw;
    margin-bottom: 3vh
}

.green-card-box-top-left::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    height: 20px;
    width: 20px;
    background: #79db41;
    pointer-events: none
}

ul {
    list-style-type: none
}

/* telescópio */
.telescopio {
    position: absolute;
    z-index: 5;
    left: 15vw;
    bottom: -5vh;
    width: 700px;
    transform: rotate(15deg)
}

.telescopio-2 {
    margin-top: 2rem;
    width: 300px;
    transform: rotateZ(-30deg) rotateY(180deg);
}

/* SECTION 3 */
.section-3 .custom-card {
    margin-top: 10vh;
    margin-right: 15vw;
    max-width: 35vw
}

.section-3 .custom-card-2 {
    margin-top: 10vh;
    max-width: 35vw
}

.our-team-text-1 {
    font-size: 40px !important;
}

.section-3 h1 {
    font-weight: 700
}

.section-3 .custom-card p {
    color: #fff;
    font-size: 24px;
}

.section-3 .custom-card-2 h1 {
    color: #fff;
    font-size: 32px;
}

/* ================= TIME ================= */
.card-team {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    width: auto !important
}

.card-team .caption {
    align-self: flex-start;
    padding: 10px
}

.card-team .name {
    color: #fff;
    margin: 0;
    font-size: clamp(18px, 1.3vw, 22px)
}

.card-team .role {
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 500;
    margin: 0;
    min-height: 8vh;
    color: #eeb228
}

.team-photo-wrap {
    overflow: hidden;
    border: 0
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.our-team {
    margin-top: 5vh
}

.our-team h2 {
    margin-left: -1vw;
    font-size: clamp(30px, 3vw, 45px);
    margin-bottom: 3vh;
    font-weight: 100
}

.orange-box-bottom-right {
    position: relative
}

.orange-box-bottom-right::before {
    content: "";
    position: absolute;
    right: -8%;
    bottom: 20%;
    height: 30px;
    width: 30px;
    background: #D19A40;
    pointer-events: none;
    z-index: 1050;
}

.green-box-top-left {
    position: relative
}

.green-box-top-left::before {
    content: "";
    position: absolute;
    left: -8%;
    top: -3%;
    height: 30px;
    width: 30px;
    background: #79db41;
    pointer-events: none;
    z-index: 1050;
}

/* SECTION 4 */
.section-4 .custom-card {
    margin-right: 60%;
    max-width: 35vw;
    margin-top: 10vh;
}

.section-4 .custom-card .yellow-bold-p {
    margin: 0;
}

.section-4 .custom-card p {
    margin-top: 10px;
    font-size: 18px;
}

.yellow-bold-h1 {
    color: #eeb228 !important;
    font-weight: 700;
    font-size: clamp(32px, 3vw, 48px);
    max-width: 30vw
}

.section-4 .custom-card-2 {
    margin-top: 30vh;
    max-width: 25vw
}

.events-col {
    background: #eeb228;
    margin-bottom: 5%;
    display: flex;
    flex-direction: column;
}

.green-list-right {
    position: relative;
}

.green-list-right::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 90%;
    transform: translateY(-50%);
    width: 0.5%;
    background: #10372a;
    pointer-events: none;
    align-self: center;
}

.events-col .events-title {
    color: #10372a !important;
    font-weight: 700;
    font-size: 28px;
    margin: 10% 10% 5% 10%;
}

.events-hour-container {
    width: 100%;
    background: #10372a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 5% 5% 5% 8%;
}

.events-hour-container .events-hour {
    color: #eeb228 !important;
}

.events-hour-container h2 {
    font-size: 28px;
    margin: 0;
}

.events-hour-container p {
    font-size: 14px;
    margin: 0;
}

.location-icon {
    width: 20px;
}

.events-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5% 5% 5% 8%;
    color: #10372a !important;
    margin-bottom: 10vh;
}

.events-name {
    min-height: 11vh;
    margin-bottom: 1vh;
}

.events-location-container {
    min-height: 10vh;
}

.events-location-container p {
    margin: 0;
}

.events-location-label {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

.events-location {
    font-size: 16px;
    font-weight: 500;
}

.events-objective-container {
    min-height: 18vh;
}

.programation-button {
    background: #10372a;
    color: #eeb228;
    height: 6vh;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12%;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.download-icon {
    width: 20px;
    height: 20px;
}

.orange-box-bottom-right-end {
    position: relative
}

.orange-box-bottom-right-end::before {
    content: "";
    position: absolute;
    right: 35%;
    bottom: 18%;
    height: 30px;
    width: 30px;
    background: #D19A40;
    pointer-events: none
}

/* footer */
.footer-end {
    position: relative;
    height: 22vh;
    background: #10372a;
    display: flex;
    align-items: center;
    padding: 5vh 10vw;
    justify-content: space-between;
}

.end-contacts p {
    color: #fff !important;
    font-size: 14px !important;
    margin: 0;
}

.end-contacts .yellow-bold-p {
    color: #eeb228 !important;
    font-size: 24px !important;
}

.footer-end::before {
    content: "";
    position: absolute;
    left: 170px;
    top: 0;
    height: 30px;
    width: 10%;
    background: #D19A40;
    pointer-events: none
}

/* hardening 125% */
html,
body {
    overflow-x: hidden
}

.section-1,
.section-2,
.section-3,
.section-4,
.section-5 {
    overflow-x: clip
}

.ratio-3x5 {
    --bs-aspect-ratio: calc(5 / 3 * 80%);
}

.ratio {
    width: 100% !important;
}

.know-more {
    position: relative;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    padding: 3.5rem;
    justify-content: center;
    margin-bottom: 5vh;
}

.know-more::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 16px;
    width: 16px;
    background: #fff;
    pointer-events: none
}

.corner-squares {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 16px;
    height: 16px;
    background: #009245;
    box-shadow:
        /* 18px 0 #009245, */
        16px 34px #A4C639,
        0 16px #F2B233;
}

.section-2 .corner-squares {
    all: unset;
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 25px;
    height: 25px;
    /* background: #009245; */
    box-shadow:
        /* 18px 0 #009245, */
        /* 16px 34px #A4C639, */
        0 18px #F2B233,
        10vw 16px #F2B233,
        25vw 16px #F2B233,
        55vw 16px #F2B233,
        55vw 16px #F2B233,
        60vw 16px #79db41,
        70svw 16px #F2B233,
        75vw 16px #F2B233,
        80vw 16px #79db41,
        82vw 16px #10372a,
        95.7vw 16px #F2B233,
        97vw 16px #10372a
}

.section-5 {
    position: relative;
    min-height: 95vh;
    color: #10372a;
    padding:10vh 0;
}

.margin-top-desk {
    margin-top: 10vh !important;
}

.section-5 h2 {
    color: #10372a !important;
    font-weight: 700;
    margin-bottom: 5svh;
    margin: 0 0 15px 0;
}

.section-5 .green-card-box-top-left {
    border: #10372a solid 1px;
    max-width: 25vw !important;
}

.section-5 .green-card-box-top-left::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    height: 20px;
    width: 20px;
    background: #10372a;
}

.section-5 p {
    color: #10372a !important;
    font-weight: 500;
}

.section-5 .green-box-top-left::before {
    top: -70% !important;
    left: -3% !important;
}

.section-5 .corner-squares {
    all: unset;
    position: absolute;
    top: 0;
    left: 16px;
    width: 25px;
    height: 25px;
    /* background: #009245; */
    box-shadow:
        7svw 2.5svh #79db41,
        8.2svw 0 #10372a,
        11.8svw 0 #79db41,
        21svw 0 #79db41,
        26.8svw 0 #10372a,
        39svw 2.5svh #F2B233,
        40.2svw 0 #79db41,
        44.2svw 0 #79db41,
        26.8svw 0 #10372a,
        58svw 0 #10372a,
        59.2svw 2.5svh #F2B233,
        68svw 0 #79db41,
        69.2svw 2.5svh #F2B233,
        78.2svw 0 #10372a,
        77svw 2.5svh #79db41,
        88.2svw 0 #F2B233,
        87svw 2.5svh #79db41
}

.corner-squares-top-right {
    position: absolute;
    top: 0;
    right: 18%;
    width: 25px;
    height: 25px;
    background: #10372a;
    box-shadow:
        -25px -25px #A4C639,
        0 25px #eeb228,
        25px 50px #10372a
        /* 1svw -1svh #10372a,
        0 16px #F2B233,
        16px 34px #10372a; */

}

.corner-squares-bottom-left {
    position: absolute;
    bottom: -25px;
    left: 16px;
    width: 25px;
    height: 25px;
    background: #10372a;
    box-shadow:
        -25px -25px #A4C639,
        0 25px #eeb228,
        25px 50px #10372a
}

.know-more-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.know-more-text p {
    font-size: 24px !important;
    display: inline;
    margin: 0;
}

.know-more-text .yellow-bold {
    color: #eeb228;
    font-weight: 700;
}

.knowMoreButton {
    border: none;
    background: #eeb228;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 1rem 2rem;
}

.contact-us {
    padding: 0 50px !important;
}

.contact-us h2 {
    margin: 0 !important;
}

.input {
    display: flex;
    flex-direction: column;
}

.input label {
    color: #eeb228;
}

.input input {
    min-height: 5vh;
}

.input textarea {
    min-height: 10vh;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.navigation {
    display: flex;
    flex-direction: column;
}

.send-button {
    background: #eeb228;
    border: none;
    color: #fff;
    width: 40%;
    height: 5vh;
    margin: 10px;
    align-self: center;
    justify-self: center;
}

.more-button {
    color: #fff !important;
    border: #eeb228 solid 2px;
    width: 85%;
    height: 5vh;
    font-size: 24px;
    background: #eeb228 !important;
}

.form {
    display: flex;
    flex-direction: column;
    margin-bottom: 5vh;
    gap: 10px;
}

@media (min-width:1366px) and (max-height:900px) {
    .section-1 {
        padding-top: 26vh
    }

    .yellow-bold-h1 {
        max-width: 34vw
    }

    .custom-card p {
        max-width: 36vw
    }

    .info-panel {
        max-width: 42vw
    }

    .telescopio {
        width: clamp(420px, 32vw, 600px);
        margin-left: 0;
        transform: rotate(13deg)
    }

    .section-5 .green-card-box-top-left {
        max-width: unset !important;
    }

    .section-5 {
        min-height: 180vh;
    }

}

/* ultrawide */
@media (min-width:2560px) {

    .container-xxl,
    .container-xl,
    .container {
        max-width: min(2200px, 84vw)
    }
}

/* ======================= MOBILE (até ~768px) ======================= */
@media (max-width: 767.98px) {

    .section-5 .green-card-box-top-left {
        max-width: unset !important;
    }

    .section-5 {
        min-height: 70vh;
    }

    /* header fixo: logo e seletor de idioma */
    .top-logo {
        top: 3vh;
        left: 6vw;
        /* width: clamp(96px, 28vw, 140px); */
        width: 60%;
    }

    .arvore {
        width: 80%;
    }

    .image-container {
        margin-bottom: 10vh;
    }

    .margin-top-desk {
        margin-top: 0 !important;
    }

    .section-5 .corner-squares {
        all: unset;
        position: absolute;
        top: 0;
        left: 16px;
        width: 25px;
        height: 25px;
        /* background: #009245; */
        box-shadow:
            8.2svw 0 #10372a,
            26.8svw 0 #F2B233,
            44.2svw 0 #79db41,
            26.8svw 0 #F2B233,
            58svw 0 #10372a,
            78.2svw 0 #10372a,
            88.2svw 0 #F2B233
    }

    .navigation {
        display: none;
    }

    .lang-switch {
        top: 2vh;
        right: 4vw;
        width: auto;
        height: auto;
        padding: 6px 10px;
        gap: 6px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
        line-height: 1;
    }

    .lang-switch button {
        padding: 6px 8px;
        font-size: 14px;
    }

    .lang-divider {
        height: 16px;
        opacity: .8;
    }

    .download-icon {
        width: 20px;
        height: 20px;
    }

    /* seção 1: respiro e tipografia */
    .section-1 {
        padding-top: 30vh;
        /* um pouco menos no mobile */
        min-height: 85svh;
    }

    .welcome {
        /* ocupa a largura total e ajusta o tamanho no mobile */
        max-width: 100%;
        font-size: clamp(22px, 6.5vw, 30px);
        line-height: 1.15;
    }

    .info-panel {
        max-width: 100%;
        padding: 18px 18px 18px 34px;
        margin-top: 12px;
    }

    .info-panel .bullet {
        margin-left: -24px;
        padding-left: 24px;
    }

    .info-panel .bullet::before {
        top: -14px;
        width: 22px;
        height: 22px;
    }

    /* cartas/caixas devem ocupar a largura toda no mobile */
    .custom-card p,
    .section-1 .custom-card,
    .section-2 .custom-card,
    .section-3 .custom-card,
    .section-3 .custom-card-2,
    .section-4 .custom-card-2,
    .green-card-box-top-left {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .section-4 .custom-card {
        margin-right: 0% !important;
        min-width: 80%;
    }

    .section-4 p {
        font-size: 24px;
    }

    /* ajustes dos “quadradinhos” decorativos para não colarem nas bordas */
    .yellow-box-top-left::before {
        left: -14px;
        top: -14px;
        width: 22px;
        height: 22px;
    }

    .green-card-box-top-left {
        border-width: 2px;
        padding: 12px;
        margin-bottom: 16px;
    }

    .green-card-box-top-left::before {
        left: -12px;
        top: -12px;
        width: 22px;
        height: 22px;
    }

    .green-box-bottom-right::before,
    .orange-box-bottom-right::before,
    .orange-box-bottom-right-end::before,
    .green-box-top-left::before {
        width: 22px;
        height: 22px;
    }

    /* tipografia de destaques no mobile */
    .yellow-bold-p {
        font-size: clamp(18px, 5.5vw, 24px) !important;
    }

    .yellow-bold-h1 {
        max-width: 100%;
        font-size: clamp(24px, 7vw, 34px);
    }

    /* seção 2: telescópio centralizado e menor (ainda “vazando” p/ baixo) */
    .telescopio {
        display: none;
    }

    .telescopio-2 {
        display: none;
    }

    /* seção 3: títulos e parágrafos mais confortáveis */
    .section-3 {
        min-height: auto;
        padding-bottom: 6vh;
    }

    .our-team {
        margin-top: 4vh;
    }

    .our-team h2 {
        margin-left: 0;
        font-size: clamp(22px, 6.5vw, 30px);
        margin-bottom: 2vh;
    }

    .section-3 .custom-card p {
        font-size: clamp(16px, 4.5vw, 18px);
    }

    /* grade do time: 2 por linha no mobile (já é o default do seu HTML, reforço aqui) */
    #team.row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    /* seção 4: empilhar e aliviar margens */
    .section-4 {
        min-height: auto;
        padding: 5vh 0;
    }

    /* footer mais compacto */
    .footer-end {
        height: auto;
        padding: 24px 8vw;
    }

    .footer-end::before {
        width: 28%;
        height: 20px;
    }

    .footer-end img {
        width: clamp(110px, 36vw, 150px);
    }

    /* utilitário: ratio 3x5 segue igual; força a foto a preencher */
    .team-photo-wrap {
        border-radius: 6px;
    }

    .photo {
        object-fit: cover;
    }
}

/* ======================= SMALL TABLETS (até ~992px) ======================= */
@media (min-width: 768px) and (max-width: 991.98px) {
    .top-logo {
        width: clamp(120px, 18vw, 200px);
    }

    .arvore {
        width: clamp(120px, 18vw, 200px);
    }

    .lang-switch {
        right: 5vw;
        top: 2vh;
        padding: 8px 12px;
    }

    .welcome {
        max-width: 100%;
        font-size: clamp(26px, 5vw, 34px);
    }

    .info-panel {
        max-width: 100%;
    }

    .telescopio {
        display: none;
    }

    .telescopio-2 {
        display: none;
    }

    .section-3 .yellow-box-top-left p[data-i18n="ourTeamHeader"] {
        font-size: clamp(20px, 6.8vw, 26px) !important;
        line-height: 1.35;
        font-weight: 500;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .section-3 .yellow-box-top-left p[data-i18n="ourTeamHeader"] {
        font-size: clamp(20px, 6.8vw, 26px);
        line-height: 1.35;
        font-weight: 500;
        max-width: 100%;
    }

    .section-3 .custom-card-2 {
        margin-top: 10vh;
    }

    .section-3 .custom-card {
        margin-top: 10vh;
    }

    .telescopio {
        display: none;
    }

    .telescopio-2 {
        display: none;
    }
}

/* mantém proporção do print 2 (cards menores e uniformes) */
.team-small {
    max-width: 220px;
    /* ajusta largura fixa */
    margin-inline: auto;
    transform: scale(0.95);
    /* leve redução geral */
    transition: transform 0.2s ease;
}

.team-small:hover {
    transform: scale(1);
    /* realce suave no hover */
}

.team-small .team-photo-wrap {
    width: 80%;
    aspect-ratio: 3 / 5;
    /* garante proporção vertical consistente */
}

@media (max-width: 991.98px) {
    .team-small {
        max-width: 180px;
        transform: scale(1);
    }
}

/* ===== SECTION-4 — refinamentos para 1920x1080 @ 125% (≈1536x864) ===== */
@media (min-width:1500px) and (max-width:1750px) and (max-height:950px) {


    /* imagem de fundo um pouco mais “para cima” p/ evitar corte em 125% */
    .section-4 {
        background-position: center top;
    }

    /* título amarelo: reduz um pouco e libera largura */
    .yellow-bold-h1 {
        font-size: clamp(28px, 2.6vw, 40px);
        max-width: none;
        /* evita quebra precoce */
        line-height: 1.1;
    }

    /* bloco esquerdo (texto) — tira o recuo agressivo e controla largura */
    .section-4 .custom-card {
        margin-right: 60%;
        /* antes: 60% */
        margin-top: 6vh;
        /* menos espaço acima */
        max-width: min(38vw, 620px);
        /* segura a largura em 125% */
    }

    /* bloco direito (contato / eventos) — encosta à direita e limita largura */
    .section-4 .custom-card-2 {
        margin-top: 8vh;
        margin-left: auto;
        max-width: min(32vw, 520px);
    }

    /* coluna de “cards de evento” fica mais compacta */
    .events-col .events-title {
        font-size: 24px;
        margin: 6% 8% 4% 8%;
    }

    .events-hour-container {
        padding: 3% 5% 3% 6%;
    }

    .events-hour-container h2 {
        font-size: 22px;
    }

    .events-hour-container p {
        font-size: 13px;
    }

    .events-content {
        padding: 4% 6% 5% 6%;
    }

    /* alturas mínimas um pouco menores para caber sem scroll vertical */
    .events-name {
        min-height: 12vh;
    }

    .events-location-container {
        min-height: 8vh;
    }

    .programation-button {
        height: 48px;
        /* antes ~6vh podia estourar */
        padding: 0 10%;
    }

    /* divisor vertical mais fino e estável */
    .green-list-right::before {
        width: 2px;
        /* antes: 0.5% (variava com a largura) */
    }
}

/* ===== fallback “baixo-perfil” quando a altura é <= 900px (inclui 125%) ===== */
@media (max-height:900px) and (min-width:1200px) {
    .section-4 {
        padding-top: 10vh;
        min-height: 100svh;
    }

    .section-4 .custom-card p {
        font-size: 16px;
    }

    /* leve redução de parágrafos */
}

/* ================= CAROUSEL SIMPLES ================= */
.simple-carousel {
    width: 100%;
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 600px;
}

.carousel-container {
    width: 80%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    max-width: 120%;
    max-height: 120%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-btn {
    width: 10%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.carousel-btn-prev::before {
    content: '';
    width: 0;
    height: 0;
    border-right: 40px solid #79db41;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
}

.carousel-btn-next::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 40px solid #79db41;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
}

.carousel-btn:hover::before {
    opacity: 0.8;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

@media (max-width: 767.98px) {
    .simple-carousel {
        height: 400px;
    }
    
    .carousel-slide {
        padding: 15px;
    }
    
    .carousel-slide img {
        max-width: 115%;
        max-height: 115%;
    }
    
    .carousel-btn-prev::before {
        border-right-width: 30px;
        border-top-width: 25px;
        border-bottom-width: 25px;
    }
    
    .carousel-btn-next::before {
        border-left-width: 30px;
        border-top-width: 25px;
        border-bottom-width: 25px;
    }
}