
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.2;
    background-color: #000;
    color: #fff;
    min-height:100vh;
}

header{
    flex: 1;
    border:2px solid green;
}

section{
    flex: 1;
    display: flex;
}

.container {
    display: flex;
    width:1200px;
    flex-direction: column;
    gap: 1em;
    margin:0 auto;
    padding: 60px 0 ;

}

.col-right {
    flex: 2;
    padding: 20px 60px;
    text-align: center;
}

.img-left {
    width: 100%;
    max-width: 620px;
    height: 100%;
    padding: 20px;
}
.img-logo {
    width: 100%;
    max-width: 45%;
    height: auto;
    padding: 20px 20px;
    text-align: center;
}

.about-pt, .about-en{
    line-height: 1.6;
    font-weight: 100;
    font-size: 15px;
    padding-bottom: 20px;
}

.contactos{
    flex: 1;
    text-align: center;
    font-weight: 100;
}
.contactos strong{
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contactos strong:not(:first-child) {
padding-left: 15px;
}


a {
  color: #fff;
  text-decoration: none;
}


h1{
   text-transform: uppercase;
   font-size: 18px;
   padding-bottom: 20px;
}

h4{
       text-transform: uppercase;
          font-size: 17px;
          padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
    section{
    flex-direction: column;
    }
    .container {
        width: 100%;
        padding: 30px 15px;
    }

    section {
        flex-direction: column;
        align-items: center;
    }

    .img-left {
        max-width: 100%;
        padding: 10px 0;
    }

    .col-right {
        order: 1; /* Mostrar antes */
        padding: 10px 20px;
        text-align: center;
    }
        .col-left {
        order: 2; /* Mostrar depois */
        width: 100%;
        text-align: center;
    }

    .img-logo {
        max-width: 70%;
        padding: 10px 0;
    }

    .about-pt, .about-en {
        font-size: 14px;
        padding-bottom: 15px;
    }

    h1 {
        font-size: 16px;
    }

    h4 {
        font-size: 15px;
    }

    .contactos p {
        font-size: 13px;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
    }
    .contactos p strong {
            margin-top: 10px;
    }
}
