@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Light.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-ExtraBold.otf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Galano";
    src: url("../fonts/GalanoGrotesqueRegular.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Galano";
    src: url("../fonts/GalanoGrotesqueBold.otf");
    font-weight: bold;
    font-style: normal;
}

.sobrenos_hero {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;

    background-size: cover;
}

.sobrenos_overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sobrenos_content {
    position: relative;
    z-index: 2;

    max-width: 1400px;
    margin: 0px 0 0 110px;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #fff;
}

.sobrenos_content h1 {
    font-family: "Gilroy", sans-serif;
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 16px;
}

.sobrenos_content h1 span {
    font-weight: 800;
}


.sobrenos_content p {
    font-family: "Gilroy", sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.5;
    color: #59BEC2;
}

.sobrenos_content strong {
    color: #5fd3dc;
}


.sobrenos_shape {
    position: absolute;
    right: -120px;
    bottom: -80px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: radial-gradient(
            circle,
            rgba(31, 180, 200, 0.6) 0%,
            rgba(31, 180, 200, 0.2) 60%,
            transparent 100%
    );

    z-index: 1;
}

.sobrenos_historia {
    background: #1ea4bb;
    padding: 100px 0;
}

.sobrenos_historia_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobrenos_historia_header {
    max-width: 1400px;
    margin-bottom: 50px;
}

.sobrenos_historia_grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.sobrenos_historia_left {
    width: 50%;
    color: #fff;
}

.sobrenos_historia_tag {
    font-family: "Gilroy", sans-serif;
    font-size: 24px;
    color: #203A70;
    font-weight: 700;
    margin-bottom: 16px;
}

.sobrenos_historia_title {
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}

.sobrenos_historia_text p {
    color: #FFF;
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
}

.sobrenos_historia_right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.sobrenos_historia_img_wrapper {
    position: relative;
    width: 100%;
    max-width: 626px;
    max-height: 720px;
}

.sobrenos_historia_img_wrapper img {
    width: 100%;
    border-radius: 30px;
    display: block;
}


.sobrenos_historia_shape {
    position: absolute;
    left: -40px;
    bottom: -30px;

    width: 160px;
    height: 160px;

    background: radial-gradient(
            circle,
            rgba(0, 255, 200, 0.5) 0%,
            transparent 70%
    );

    border-radius: 50%;
    z-index: 1;
}

.historia {
    padding: 60px 20px;
    text-align: center;
    background: #f5f6f8;
}

.historia h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #8E96AA;
}

.historia-subtitle {
    font-family:'Galano Grotesque';
    font-size: 24px;
    color: #8E96AA;
    margin-bottom: 80px;
}


.historia-carousel {
    position: relative;
    overflow: visible;
    width: 100%;
    margin: 30px 0 0 0;
}

.historia-track {
    position: relative;
    width: 100%;
    height: 320px;
}


.historia-item {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 652px;
    height: 320px;

    clip-path: inset(0 round 50px);
    overflow: visible;

    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.5s ease;
    will-change: transform;
}

.historia-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.historia-item.active {
    width: 812px;
    height: 400px;
    opacity: 1;
    z-index: 4;

    transform: translate(-50%, -50%) scale(1);
}


.historia-item.left,
.historia-item.right {
    opacity: 0.6;
    z-index: 3;

    transform: scale(0.85);
}


.historia-item.left {
    transform: translate(-95%, -50%) scale(0.85);
}

.historia-item.right {
    transform: translate(-5%, -50%) scale(0.85);
}


.historia-item.left-far,
.historia-item.right-far {
    opacity: 0.3;
    z-index: 2;

    transform: scale(0.7);
}


.historia-item.left-far {
    transform: translate(-140%, -50%) scale(0.7);
}

.historia-item.right-far {
    transform: translate(40%, -50%) scale(0.7);
}


.historia-controls {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.historia-controls button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #9aa0a6;
}


.dots {
    display: flex;
    gap: 10px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfd8dc;
    cursor: pointer;
}

.dots span.active {
    background: #00a8cc;
    transform: scale(1.3);
}


.historia-info {
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.historia-info .ano {
    font-family: 'Galano Grotesque';
    font-size: 24px;
    color: #0CAFD9;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}


.historia-info h3 {
    font-family: 'Galano Grotesque';
    font-size: 24px;
    font-weight: 600;
    color: #00a8cc;
    margin-bottom: 8px;
}


.historia-info p {
    font-family: 'Galano Grotesque';
    font-size: 16px;
    color: #8E96AA;
    line-height: 1;
}


.pilares {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.pilares-container {
    max-width: 1400px;
    margin: 0 auto;
}


.pilares-header h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #197980;
    margin-bottom: 10px;
}

.pilares-header p {
    font-family: 'Galano Grotesque';
    font-size: 18px;
    color: #8E96AA;
}

.pilares-header span {
    font-family: 'Galano Grotesque';
    display: block;
    margin-top: 5px;
    font-size: 18px;
    color: #8E96AA;
}


.pilares-missao {
    margin-top: 50px;
}

.pilares-missao h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #203A70;
    margin-bottom: 15px;
}

.pilares-missao p {
    font-family: 'Galano Grotesque';
    font-size: 18px;
    color: #8E96AA;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}


.pilares-valores {
    margin-top: 60px;
}

.pilares-valores h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0CAFD9;
    margin-bottom: 20px;
}


.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


.valor-card {
    background: #1FA5C9;
    border-radius: 20px;
    padding: 15px;
    text-align: left;
    color: white;
    min-height: 200px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.valor-card h3 {
    font-family: 'Galano Grotesque';
    font-size: 26px;
    color: #fff;
    font-weight: bold;
}

.valor-card p {
    font-family: 'Galano Grotesque';
    font-size: 16px;
    line-height: 1.5;
}


@media (max-width: 1024px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .valores-grid {
        grid-template-columns: 1fr;
    }

    .pilares-header h2,
    .pilares-missao h2,
    .pilares-valores h2 {
        font-size: 26px;
    }
}


.autoridade {
    background: #243E73;
    padding: 100px 40px;
}

.autoridade-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.autoridade-left {
    width: 50%;
}

.autoridade-left h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #0CAFD9;
    margin-bottom: 30px;
}

.autoridade-text {
    font-family: 'Galano Grotesque';
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
}


.autoridade-info {
    margin-bottom: 30px;
}

.autoridade-info .label {
    font-family: 'Galano Grotesque';
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-weight: 400;
}

.autoridade-info h3 {
    font-family: "Gilroy", sans-serif;
    font-size: 43px;
    font-weight: 800;
    color: #0CAFD9;
    margin-bottom: 5px;
}

.autoridade-info p {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    color: #0CAFD9;
}

/* RIGHT */
.autoridade-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.autoridade-right img {
    max-width: 100%;
    height: auto;
}


@media (max-width: 1024px) {
    .autoridade-container {
        flex-direction: column;
        text-align: center;
    }

    .autoridade-left,
    .autoridade-right {
        width: 100%;
    }

    .autoridade-left h2 {
        font-size: 32px;
    }
}


.ci_section {
    background: #f5f6f8;
    padding: 50px 20px;
    text-align: center;
}

.ci_container {
    max-width: 1200px;
    margin: 0 auto;
}

.ci_title {
    font-family: 'Gilroy', sans-serif;
    font-size: 43px;
    font-weight: 800;
    color: #197980;
    margin-bottom: 40px;
}

.ci_cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ci_card {
    width: 312px;
    height: 325px;
}

.ci_card_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
}

.ci_card_title {
    margin-top: 25px;
    font-family: 'Gilroy', sans-serif;
    font-size: 22px;
    color: #197980;
    font-weight: 700;
}

.ci_card_text {
    margin-top: 14px;
    font-family: 'Galano Grotesque', sans-serif;
    font-size: 14px;
    color: #8e96aa;
    line-height: 1.6;
}


@media (max-width: 1200px) {
    .sobrenos_content {
        margin: 0 40px;
    }

    .sobrenos_content h1 {
        font-size: 40px;
    }

    .sobrenos_content p {
        font-size: 28px;
    }

    .historia-item.active {
        width: 650px;
        height: 340px;
    }

    .historia-item {
        width: 520px;
        height: 260px;
    }
}


@media (max-width: 1024px) {
    .sobrenos_historia_grid {
        flex-direction: column;
        gap: 40px;
    }

    .sobrenos_historia_left,
    .sobrenos_historia_right {
        width: 100%;
        text-align: center;
    }

    .sobrenos_historia_right {
        justify-content: center;
    }

    .autoridade-container {
        flex-direction: column;
        text-align: center;
    }

    .autoridade-left,
    .autoridade-right {
        width: 100%;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobrenos_content {
        margin: 0 30px;
    }
}


@media (max-width: 768px) {

    .historia-track {
        height: 260px;
    }

    .historia-item {
        width: 260px;
        height: 160px;
    }

    .historia-item.active {
        width: 252px;
        height: 134px;
    }
    .historia-item {
        width: 185px;
        height: 90px;
    }

    .historia-item.left {
        transform: translate(-120%, -50%) scale(0.8);
    }

    .historia-item.right {
        transform: translate(20%, -50%) scale(0.8);
    }

    .historia-item.left-far,
    .historia-item.right-far {
        display: none;
    }

    .historia-controls {
        margin-top: 40px;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 600px) {

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .ci_card {
        width: 100%;
    }

    .autoridade-left h2 {
        font-size: 28px;
    }

    .autoridade-text {
        font-size: 16px;
    }

    .autoridade-info h3 {
        font-size: 32px;
    }

    .autoridade-info p {
        font-size: 16px;
    }
}