
/* Color */
:root {
  --white: rgb(255, 255, 255); /* #ffffff */
  --linen: rgb(248, 242, 230); /* #f8f2e6 */
  --beige: rgb(240, 230, 212); /* #f0e6d4 */
  --platinum: rgb(230, 230, 230); /* #e6e6e6 */
  --light-silver: rgb(217, 217, 217); /* #d9d9d9 */
  --dark-red: rgb(215, 38, 56); /* #d72638 */
  --strong-red: rgb(185, 28, 28); /* #b91c1c */
  --navy: rgb(11, 30, 49); /* #0b1e31 */
  --midnight-express: rgb(30, 42, 68); /* #1e2a44 */
  --davy-gray: rgb(85, 85, 85); /* #555 */
  --dark-gray: rgb(51, 51, 51); /* #333 */
  --eerie-black: rgb(27, 27, 27); /* #1b1b1b */
  --jet-black: rgb(26,26,26); /* #1A1A1A */
  --very-dark-gray: rgb(17, 17, 17); /* #111 */
  --near-black-gray: rgb(10, 10, 10); /* #0a0a0a */
  --shadow: rgba(0, 0, 0, 0.08);
  --color3: rgba(0, 0, 0, 0.25);
  --color4: rgba(0, 0, 0, 0.6);
}

/* Style */
* { 
    box-sizing: border-box; 
    
}

html,
body {
  margin: 0;
  padding: 0; 
  font-family: Inter, system-ui, Arial, sans-serif;
}

html {
    font-size: 1em;
}

a {
    text-decoration: none;
    color: white;
}

h3 {
    display: block;
    font-size: 24px;
    opacity: 0.7;
}

ul {
    list-style-type: none;
}

/* -------------- NAV MENU ------------- */
header {
    width: 100%;
    height: 80px;
    text-align: center;
    margin-bottom: 20px;
}

header ul ul {
    position: absolute;
    display: none;
    /* hides sublists */
}

header li {
    display: block;
    position: relative;
    float: right;
}

header li a {
    display: block;
    text-decoration: none;
    width: 200px;
    /* this is the width of the menu items */
    line-height: 50px;
    /* this is the hieght of the menu items */
    color: #ffffff;
    /* list item font color */
}

header li li a {
    font-size: 80%;
}


/* smaller font size for sub menu items */

header li:hover {
    background: var(--red);
}


/* highlights current hovered list item and the parent list items when hovering over sub menues */

header li:hover ul {
    display: block;
    background: var(--red);
}

.navbar-nav.me-auto {
    margin-right: auto;
  }
  
.navbar-nav:last-child {
    margin-left: auto;
}

/* shows sublist on hover */

#portuguese {
    text-align: right;
}

#content {
   margin-top: 60px;
   margin-bottom: 60px;
   margin-left: 50px;
}

.services {
    margin: 20px;
}

.contacts {
    text-align: left;
    margin: 20px;
}

.nav-link {
    text-align: center;
    color: white
}

.servicos {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logolinkedin {
    margin-left: 6px;
}


/* Button */
.btn:link,
.btn:visited {
  	text-transform: uppercase;
  	text-decoration: none;
  	padding: 10px 20px;
  	display: inline-block;
  	border-radius: 100px;
  	transition: all .2s;
  	position: relative;
}

.btn:hover {
  	transform: translateY(-3px);
  	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  	transform: translateY(-1px);
  	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


/* -------------- FOOTER -------------- */
footer {
    text-align: center;
    background-color: #1A1A1A;
    color: white;
    padding: 20px 0;
}
