* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'MontSerrat';
}

h1 {
    font-family: 'Anton';
    letter-spacing: 4px;
    text-align: center;
    font-size: 35px;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    z-index: 2;
}

header nav {
    width: 90%;
    padding: 2% 0%;
    display: flex;
    align-items: center;
}

header nav img {
    width: 70%;
}

header ul {
    width: 70%;
    display: flex;
    margin: auto;
    justify-content: space-between;
    list-style-type: none;
    background-color: white;
    padding: 1% 2%;
    border-radius: 30px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

header ul a {
    color: #13536F;
    font-weight: bold;
    text-decoration: none;
}

header ul a:hover {
    color: #A4161A;
}

nav ul li {
    position: relative;
}

.dropdown-menu {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-radius: 5px;
    list-style: none;
    z-index: 1000;
    padding: 5%;
}

.dropdown-menu li a {
    color: #13536F;
    padding: 5%;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    color: #A4161A;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

#menu_mobile {
    display: none;
}

/* HOMEPAGE */

.img_mobile {
    display: none;
}

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
}

.slideshow-container img {
    width: 100%;
}

.start_title {
    width: 100%;
    padding: 0 3%;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 0px 30px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
}

.dots {
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.about {
    width: 100%;
    padding: 5%;

}

.about h1 {
    color: #008DA3;
}

.about_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #00315A;
}

.about_info p {
    width: 45%;
}

.about_info_home {
    width: 60%;
}

.about_info_home p {
    width: 100%;
    margin-bottom: 3%;
}

.about_info img {
    width: 20%;
    margin: auto;
}

#areasinfo_2 {
    display: none;
}

.areas {
    background: linear-gradient(to bottom,
            rgba(19, 83, 111, 0.9),
            rgba(0, 141, 163, 0.9));
}

.lines1 {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 3% 0;
}

.lines1 path {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    animation: grow-from-right 5s ease-in-out infinite;
}

@keyframes grow-from-right {
    0% {
        stroke-dashoffset: -450;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.lines2 path {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    animation: grow-from-left 5s ease-in-out infinite;
}

@keyframes grow-from-left {
    0% {
        stroke-dashoffset: -450;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.areas h1 {
    color: white;
    padding: 0 5%;
}

.areas_info {
    width: 100%;
    padding: 5%;
    display: flex;
    justify-content: space-between;
}

.area_card {
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.area_card p {
    color: white;
    margin: 10% 0;
    font-size: 18px;
    flex-grow: 1;
}

.area_card a {
    display: flex;
    width: 100%;
    margin: auto;
    color: #A4161A;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    background-color: white;
    border-radius: 20px;
    padding: 5%;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.area_card a:hover {
    transform: scale(1.05);
}

.area_logo {
    background-color: white;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.area_logo:hover {
    transform: scale(1.05);
}

.area_logo img {
    width: 80%;
    padding: 10% 0;
}

.cards_company {
    width: 100%;
    background-color: #F2F0F0;
    position: relative;
}

.cards_company h1 {
    color: #008DA3;
    padding: 5%;
}

.cards_libertrium {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.card_choice,
.card_achievement {
    width: 22%;
    padding: 3% 1%;
    background-color: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    color: #00315A;
    transition: transform 0.3s ease;
}

.card_choice:hover,
.card_achievement:hover {
    transform: scale(1.05);
}

.card_choice h3 {
    margin: 5% 0;
    font-size: 17px;
}

.card_choice img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

#choices_2 {
    display: none;
}

#cards_libertrium2 {
    display: none;
}

.arrow {
    display: none;
}

.card_achievement {
    color: #008DA3;
    font-weight: 600;
}

.achiev_number {
    font-size: 60px;
    font-family: 'Anton';
    font-weight: normal;
    margin-bottom: 10%;
}

.box_lines2 {
    display: flex;
    justify-content: flex-end;
}

.lines2 {
    padding: 7% 0;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.section_map {
    padding: 5%;
}

.mascote_mapa {
    width: 25%;
}

.content_ilhas {
    width: 25%;
}

.mapa_ilhas {
    width: 100%;
    height: 250px;
    border: 3px solid #00315A;
    border-radius: 10px;
    margin-bottom: 5%;
}

.mapa_continente {
    width: 40%;
    height: 700px;
}

.map_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.map_content p {
    color: #00315A;
    font-weight: 600;
    margin-bottom: 2%;
}

.section_map h1 {
    color: #008DA3;
    padding-bottom: 5%;
}

.section_opinions {
    display: none;
    width: 100%;
    background: linear-gradient(to bottom,
            rgba(19, 83, 111, 0.9),
            rgba(0, 141, 163, 0.9));
}

.section_opinions h1 {
    color: white;
    padding: 5%;
}

#cards_opinion2 {
    display: none;
}

.opinions_box {
    display: flex;
    justify-content: space-between;
    margin-top: 3%;
    padding: 0 5%;
    margin-bottom: 3%;
}

.card_opinion {
    width: 27%;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.card_opinion:hover {
    transform: scale(1.05);
}

.card_opinion_content {
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 0 5%;
    color: #00315A;
}

.card_opinion_content p {
    margin-bottom: 5%;
}

.card_opinion_content img {
    width: 30%;
    margin-bottom: 10%;
}

.card_opinion_content h4 {
    color: #A4161A;
}

footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3% 5% 0 5%;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
    box-shadow: 0 -10px 10px -2px rgba(0, 0, 0, 0.2);
}

footer a {
    color: #00315A;
    text-decoration: none;
    display: block;
    margin-bottom: 5%;
}

.footer_info {
    width: 30%;
    color: #00315A;
}

.logo_libertrium {
    width: 50%;
}

#mascot_footer1 {
    width: 40%;
    display: block;
    margin-top: 5%;
}

#mascot_footer2 {
    display: none;
}

.footer_contacts {
    display: flex;
    align-items: center;
    margin-bottom: 5%;
}

.footer_contacts img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 2%;
}

/* PÁGINA SOBRE */

.about_1 {
    width: 100%;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
    padding: 5%;
}

.about_2 {
    width: 100%;
    padding: 5%;
    background: linear-gradient(to bottom,
            rgba(19, 83, 111, 0.9),
            rgba(0, 141, 163, 0.9));
}

.about_1 h1 {
    color: #008DA3;
}

.about_2 h1 {
    color: white;
}

.about_2 .about_box {
    color: white;
}

.about_box {
    display: flex;
    justify-content: space-between;
    margin-top: 5%;
    align-items: center;
    color: #00315A;
    font-size: 18px;
}

.about_text {
    width: 55%;
}

.about_text p {
    margin-bottom: 20px;
}

.about_ilustr {
    width: 30%;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 5% 2%;
    transition: transform 0.3s ease;
}

.about_ilustr:hover {
    transform: scale(1.05);
}

.about_ilustr img {
    width: 70%;
    display: block;
    margin: auto;
}

.text_red {
    color: #A4161A;
    font-weight: 600;
    margin-top: 5%;
}

/* PÁGINA ÁREAS */

.btn_more {
    width: 50%;
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 20px;
    text-decoration: none;
    color: #A4161A;
    font-weight: 600;
    padding: 3%;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.btn_more:hover {
    transform: scale(1.05);
}

/* PÁGINA CONSTRUÇÃO */

.create {
    width: 100%;
    height: 100vh;
    padding: 5%;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
}

.create img {
    width: 80%;
}

/* PÁGINA CONTACTOS */

.section_adress {
    width: 100%;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
    padding: 5%;
}

.section_adress h1 {
    color: #008DA3;
    margin-bottom: 5%;
}

.card_adress {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.adress_info {
    width: 47%;
    padding: 5% 2%;
}

.adress_info :nth-child(3) {
    margin-bottom: 0;
}

.adress_details {
    display: flex;
    align-items: center;
    color: #00315A;
    margin-bottom: 5%;
}

.adress_details img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 5%;
}

.map_adress {
    width: 47%;
}

.map_adress iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.section_form {
    width: 100%;
    background: linear-gradient(to bottom,
            rgba(19, 83, 111, 0.9),
            rgba(0, 141, 163, 0.9));
}

.section_form h1 {
    color: white;
    padding-top: 5%;
}

.section_form form {
    width: 60%;
    margin: auto;
    padding: 5% 0;
}

.section_form form input,
textarea {
    width: 100%;
    border-radius: 20px;
    border: none;
    padding: 2%;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 5%;
    outline: none;
    resize: none;
}

.section_form form input::placeholder,
textarea::placeholder {
    color: #00315A;
    font-size: 16px;
    font-family: 'Montserrat';
}

.section_form .modal_text {
    margin-bottom: 2%;
    color: white;
}

.section_form .checkbox_modal {
    color: white;
}

.section_form .checkmark {
    border: 2px solid white;
}

.form_names {
    display: flex;
    justify-content: space-between;
}

.form_names input {
    width: 48% !important;
}

.btn_submeter {
    width: 40%;
    padding: 2%;
    background-color: white;
    border-radius: 20px;
    border: none;
    color: #A4161A;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    margin-bottom: 5%;
}

.btn_submeter:hover,
.btn_red:hover {
    transform: scale(1.05);
}

/* PÁGINA DETALHE PLATAFORMA */

.start_sentence {
    position: absolute;
    padding: 0 3%;
    width: 100%;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
    text-align: center;
}

.btn_download {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    text-decoration: none;
    color: #A4161A;
    font-size: 18px;
    padding: 3% 5%;
    margin-top: 5%;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn_download img {
    width: 30px;
}

.btn_download p {
    margin-bottom: 0px;
}

.btn_download:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 5% 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    width: 50%;
    border-radius: 30px;
    margin: auto;
    padding: 3%;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.modal-content h1 {
    padding: 7%;
}

.close {
    color: #00315A;
    float: right;
    font-size: 60px;
    margin-top: -5%;
}

.close:hover,
.close:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal_form input {
    width: 100%;
    border-radius: 15px;
    border: none;
    padding: 2%;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 5%;
    outline: none;
    resize: none;
}

.modal_form form input::placeholder {
    color: #00315A;
    font-size: 16px;
    font-family: 'Montserrat';
}

.modal_text {
    font-size: 14px;
}

.checkbox_modal {
    margin-bottom: 5%;
}

.modal_btns {
    display: flex;
    width: 80%;
    margin: auto;
}

.modal_btns button {
    padding: 3%;
    font-weight: normal;
}

.btn_red {
    width: 40%;
    padding: 2%;
    border: none;
    border-radius: 20px;
    color: white;
    background-color: #A4161A;
    opacity: 0.7;
    font-size: 18px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    margin-bottom: 5%;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 7px;
    border: 2px solid #00315A;
}

.container:hover input~.checkmark {
    background-color: #ccc;
}

.container input:checked~.checkmark {
    background-color: #00315A;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked~.checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 2px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#about_rh .about_box {
    align-items: stretch;
}

.card_charac {
    width: 30%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    color: #00315A;
    text-align: center;
    padding: 3%;
    min-height: 400px;
}

.card_charac:hover {
    transform: scale(1.05);
}

.card_charac h3 {
    margin-bottom: 5%;
    color: #A4161A;
    font-size: 19px;
}

#charact_2 {
    display: none;
}

.section_opinions2 {
    display: none;
    width: 100%;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
    padding-bottom: 8%;
}

.section_opinions2 h1 {
    color: #008DA3;
    padding: 5%;
}

/* SECÇÃO ABERTURA 

.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 1;
    background: linear-gradient(to bottom, #FFFFFF, #EDEAEA);
    transition: opacity 2s ease-in-out;
    overflow: hidden;
}

.intro img {
    width: 30%;
    display: block;
    margin: auto;
}

.intro h1 {
    color: #008DA3;
    padding: 5% 0;
}

.home {
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.hidden {
    display: none;
}

@keyframes fadeOutIntro {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInHome {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*/

/* PÁGINA AVISOS */

.terms_info {
    margin-bottom: 3%;
}

h2 {
    font-family: 'Anton';
    font-size: 22px;
    color: #008DA3;
    margin-bottom: 1%;
}
.error {
    background-color: #A4161A;
    color: white;
    white-space: pre-wrap;
    font-size: 14px;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 5%;
    display: none;
}

@media (max-width: 700px) {

    h1 {
        font-size: 25px;
    }

    #menu_desktop {
        display: none;
    }

    #menu_mobile {
        display: flex;
        width: 100%;
        justify-content: flex-end;
        padding: 5%;
    }

    #menuToggle {
        display: block;
        position: relative;
        margin-left: auto;
        z-index: 3;
        user-select: none;
    }

    #menuToggle a {
        text-decoration: none;
        color: #00315A;
        transition: color 0.3s ease;
    }

    #menuToggle input {
        display: block;
        width: 33px;
        height: 27px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 4;
    }

    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: white;
        border-radius: 3px;
        z-index: 4;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background-color: #00315A;
    }

    #menuToggle input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked~span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(#FFFFFF, #EDEAEA);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 60px;
        list-style-type: none;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1;
    }

    #menu li {
        padding: 10px 0;
        font-size: 18px;
        text-align: center;
    }

    #menuToggle input:checked~ul {
        transform: translateX(0);
    }

    .submenu {
        background-color: transparent;
        box-shadow: none;
        display: block;
        margin-top: 3%;
    }

    .submenu a {
        font-weight: 400;
    }

    header nav img {
        width: 50%;
    }

    header ul {
        border-radius: 0px;
    }

    /* HOMEPAGE */

    .start_title {
        font-size: 20px;
        top: 30%;
    }

    .start_sentence {
        font-size: 14px;
        top: 47%;
    }

    .prev,
    .next {
        top: 45%;
        padding: 0 5%;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .img_mobile {
        display: block;
    }

    .img_desktop {
        display: none;
    }

    .about_info {
        display: block;
    }

    .about {
        padding: 15% 5%;
    }

    .about_info_home {
        width: 100%;
    }

    .about_info p {
        width: 100%;
        text-align: center;
        margin-top: 10%;
    }

    .about_info img {
        display: block;
        width: 70%;
        margin-top: 10%;
    }

    .lines1,
    .lines2 {
        max-width: 200px;
        padding: 7% 0;
    }

    #cards_libertrium1 {
        display: none;
    }

    #cards_libertrium2 {
        display: block;
    }

    #choices_1 {
        display: none;
    }

    #choices_2 {
        display: block;
    }

    .areas {
        position: relative;
    }

    #areasinfo_1 {
        display: none;
    }

    #areasinfo_2 {
        display: block;
    }

    .cards_company h1 {
        padding: 10% 5%;
    }

    .section_opinions h1,
    .section_opinions2 h1 {
        padding: 10% 5%;
    }

    #cards_opinion1 {
        display: none;
    }

    #cards_opinion2 {
        display: block;
    }

    #areasinfo_2 .area_card a {
        width: 100%;
    }

    .slider-container {
        display: block;
        position: relative;
        max-width: 700px;
        overflow: hidden;
        width: 70%;
        margin: auto;
        padding: 5% 0%;
    }

    .slider {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .card_achievement,
    .card_choice,
    .area_card,
    .card_opinion,
    .card_charac {
        min-width: 95%;
        margin: 0 2.5%;
        padding: 10% 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: auto;
    }

    .card_charac {
        justify-content: flex-start !important;
        min-height: 300px;
    }

    .card_charac h3 {
        font-size: 16px;
    }

    .card_choice {
        display: block;
    }

    .card_choice img {
        width: 100px;
        height: 100px;
    }

    .arrow {
        display: block;
        position: absolute;
        top: 80%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        font-size: 50px;
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .arrow2 {
        top: 35%;
    }

    .arrow3 {
        top: 50%;
    }

    .arrow4 {
        top: 50%;
    }

    .slider-prev {
        left: 4%;
    }

    .slider-next {
        right: 4%;
    }

    .section_map h1 {
        padding: 15% 5%;
    }

    .map_content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 5%;
    }

    .mascote_mapa {
        display: none;
    }

    .mapa_continente {
        width: 100%;
        margin: auto;
    }

    .content_ilhas {
        width: 100%;
        order: 2;
    }

    .section_opinions {
        position: relative;
    }

    .arrow5 {
        top: 57%;
    }

    .arrow6 {
        top: 57%;
    }

    .card_opinion_content {
        margin-top: 0;
    }

    .card_opinion_content img {
        width: 40%;
    }

    footer {
        display: block;
        font-size: 18px;
    }

    .logo_libertrium {
        width: 60%;
        margin: 10% 0;
    }

    .footer_info {
        width: 100%;
        text-align: center;
    }

    .footer_contacts {
        margin-bottom: 0;
        padding: 3% 0;
        justify-content: center;
        text-align: center !important;
    }

    .footer_contacts img {
        width: 35px;
        height: 35px;
    }

    #mascot_footer1 {
        display: none;
    }

    #mascot_footer2 {
        width: 40%;
        display: block;
        margin: auto;
        padding-top: 5%;
    }

    /* PÁGINA SOBRE */

    .about_1,
    .about_2 {
        padding: 10% 5%;
    }

    .about_box {
        display: grid;
    }

    .about_text {
        width: 100%;
        margin-top: 5%;
        font-size: 16px;
        text-align: center;
    }

    .about_ilustr {
        width: 100%;
        margin: 8% 0;
        padding: 10% 5%;
    }

    .text_red {
        font-size: 16px;
        margin-top: 10%;
    }

    .order1 .about_box .about_ilustr {
        order: 2;
    }

    .order2 .about_box .about_text {
        order: 2;
    }

    .order2 .about_box .about_ilustr {
        margin-bottom: 4%;
    }

    /* PÁGINA ÁREAS */

    .btn_more {
        width: 100%;
        padding: 5%;
        margin-bottom: 5%;
    }

    /* PÁGINA RECURSOS HUMANOS */

    .btn_download {
        width: 100%;
        padding: 5% 8%;
    }

    #about_rh {
        position: relative;
    }

    #about_rh .slider-container {
        padding: 10% 0%;
    }

    .charact_1 {
        display: none;
    }

    #charact_2 {
        display: block;
    }

    .section_opinions2 {
        position: relative;
    }

    .modal_form {
        padding: 0 5%;
    }

    .modal_form input {
        padding: 5% 2%;
        width: 100% !important;
        margin-bottom: 7%;
    }

    .modal_form textarea {
        padding: 5% 2%;
    }

    .modal-content {
        width: 90%;
    }

    .modal-content h1 {
        padding: 10%;
    }

    .modal_text {
        text-align: left;
    }

    .checkbox_modal label {
        text-align: left;
    }

    .modal_btns {
        width: 100%;
        display: block;
        margin-top: 10%;
    }

    .modal_btns button {
        padding: 5%;
    }

    .btn_red {
        width: 100%;
    }

    /* PÁGINA CONTACTOS */

    .section_adress {
        padding: 10% 5%;
    }

    .section_adress h1 {
        margin-bottom: 10%;
    }

    .card_adress {
        display: block;
    }

    .adress_info {
        width: 100%;
        padding: 10% 5%;
    }

    .adress_details img {
        width: 40px;
        height: 40px;
    }

    .map_adress {
        width: 100%;
        height: 35vh;
    }

    .map_adress iframe {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 20px;
    }

    .section_form {
        padding: 5%;
    }

    .section_form h1 {
        padding-bottom: 5%;
    }

    .section_form form {
        width: 100%;
    }

    .form_names {
        width: 100%;
        display: block;
    }

    .section_form form input,
    textarea {
        width: 100% !important;
        padding: 5%;
        margin-bottom: 10%;
    }

    .btn_submeter {
        width: 100%;
        padding: 5% 2%;
    }

    /* PÁGINA CONSTRUÇÃO */

    .create img {
        width: 95%;
    }

    /* SECÇÃO ABERTURA */

    .intro h1 {
        margin: 5% 0%;
    }

    .intro img {
        width: 80%;
        margin: 0;
    }

    /* PÁGINA AVISOS */

    .terms_info {
        text-align: center;
        margin-bottom: 7%;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 5%;
    }

}