@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img,
ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

:root {
    --text1: #141823;
    --text2: #27186B;
    --text3: #5E5E5E;
    --bglink: #BFBFBF;
    --bgcolor: #BCBCBC;
}

html {
	scroll-behavior: smooth;
}

body {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text1);
    line-height: 2;
    text-align: justify;
    border: 1rem var(--bgcolor) solid;

}

.site {
    padding: 2.5rem 5rem;
}

a {
    text-decoration: none;
    color: var(--text2);
}

ul {
    list-style: none;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}


/* Navbar */

.navbar {
    width: 100%;
    border-bottom: 2px gray solid;
    height: 140px;
}

.logo {
    width: 300px;
    min-width: 200px;
    height: auto;
}

.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.menu ul {
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu a {
    font-weight: 600;
    padding: 1rem;
    border-radius: 10px;
}

.menu a:hover {
   background-color: var(--bglink);
}

#a-logo a:hover {
    background-color: transparent;
}
/* Swiper */

.swiper-container {
    width: 100%;
    height: auto;
}
  
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

/* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-wrapper.disabled {
    transform: translate3d(0px, 0, 0) !important;
}
.swiper-pagination.disabled {
    display: none;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
    padding: 10px;
    color: #333;
    background: hsla(0, 0%, 100%, 0.75);
} 

.swiper-button-next, .swiper-button-prev { 
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

/* header pages */

.title-page {
    text-align: center;
    padding: 1rem;
    background-color: var(--text2);
    color: #fff;
    margin: 2rem 0;
}

/* content */

.content {
    margin: 2rem 0;
    display: flex;
    width: 100%;
    gap: 5rem;
}

.carousel-home {
    width: 50%;
    height: 50%;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.text li {
    list-style: initial;
    margin-left: 3rem;
}

.text span {
    padding: 2rem 0;
}

.text strong {
    font-weight: 600;
}

.text-contact li:nth-child(1), .text-contact li:nth-child(2) {
    font-weight: bold;
    color: var(--text3);
}

.text-contact li:nth-child(3) {
    font-weight: bold;
    color: var(--text2);
}

.text-contact ul:nth-child(1) {
    margin-bottom: 2rem;
}

.text-contact a:hover {
    background-color: var(--bgcolor);
    padding: 0.5rem;
    border-radius: 10px;
}

/* clientes */

.clientes-container {
        margin: 0 auto;
}

.clientes-container ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 200px;
}

.clientes-container ul img {
    width: 100%;
    height: auto;
}

/* footer */

.footer-content {
    background-color: #3D4045;
    color: #fff;
    text-align: center;
}

.footer-content a {
    color: #fff;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive */
