/*For all Site--------------------------------------------------------*/
* {
   box-sizing: border-box;
}

body {
   margin: 0;
   font-family: 'Orbitron', sans-serif;
   background: #aab2b8;
}

h1, h2, h3 {
   font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, a, p, ul, li, button{
    position: relative;
    z-index: 2;
}

p, ul, li{
  font-size: 20px;
}

video, img, canvas{
    position: relative;
    z-index: 0;
}

a{
    color: black;
    text-decoration: none;
}

.title-format{
    border-bottom: 2px solid black;
}

.text-content-format{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    width: 57%;
    justify-items: center;
    z-index: 2;
}

.explanation-box-format{
    text-align: justify;
    max-height: 500px;
    width: 90%;
    overflow-y: auto; 
    overflow-x: hidden;
    padding: 10px;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.border-image-format{
    border: 10px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
/*For all Site--------------------------------------------------------*/


/*Menu----------------------------------------------------------------*/
.menu-title{
  margin: auto;
  color: white;
  text-align: center;
  font-size: 70px;
  width: fit-content;
  padding: 3px;
  max-width: 50vw;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-text-stroke: 1px black;
}

.menu{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
    justify-content: center;
    width: 100%;
    gap: 3rem;
    border-bottom: 1px solid black;
    padding: 10px;
}

.menu .option{
    font-size: 25px;
    width: fit-content;
    height: fit-content;
    color: black;
    padding: 3px;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    background-color: white;
}

.menu .option:hover{
    border-radius: 5px;
    color: #e7ffff;
    background-color: rgba(255, 255, 255, 0.123);
}

.menu a{
    max-width: 50vw;
    overflow-wrap: break-word;
    word-break: break-word;
}
/*Menu----------------------------------------------------------------*/


/*Hero----------------------------------------------------------------*/
.hero-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.image-content{
    display: grid;
    justify-items: center;
    position: relative;
    min-height: auto;
}

.image-content > *{
    grid-area: 1 / 1;
}

.robot-report{
    width: 50%;
    object-fit: cover;  
    z-index: 1;
}

.city-background{
    width: 100%;
    object-fit: cover;
    z-index: 0;
}
/*Hero----------------------------------------------------------------*/


/*Devices-------------------------------------------------------------*/
.devices-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 97%;
}

.device-title{
    color: white;
    background-color: black;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
}

.device{
    display: flex;
}

.device-image{
    width: 50%;
    object-fit: cover;  
    margin-bottom: 20px;
}
/*Devices-------------------------------------------------------------*/


/*Market--------------------------------------------------------------*/
.market-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.market-item{
    display: grid;
}

.market-item img{
    justify-items: center;
}

.market-item > *{
    grid-area: 1 / 1;
}

.item-title{
    color: white;
    background-color: black;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
}

.market-image{
    margin: auto;
    width: 85%;
    object-fit: cover;  
    border: 10px solid white;   /* moldura branca */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}
/*Market--------------------------------------------------------------*/


/*Global--------------------------------------------------------------*/
.global-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 100px;
}

.carousel {
    width: 100%;
    max-width: 1000px;
    max-height: 1000px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.carousel-content{
    display: grid;
}

.carousel-content > *{
    grid-area: 1 / 1;
}

.carousel-content .text-content-format{
    width: 35%;
    margin-left: 50px;
}

.carousel-content .explanation-box-format{
    margin-top: 10px;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    object-fit: cover;
}

.global-box .item-title{
    color: black;
    border-bottom: 2px solid black;
    border-left: 2px solid black;
    background-color: white;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: black;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border: 2px solid black;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.carousel-btn:hover {
    color: #e7ffff;
    border: 1px solid white;
    background: rgba(0, 0, 0, 0.623);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    background: rgba(0, 183, 255, 0.808);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots span.active {
    background: #e7ffff;
    transform: scale(1.2);
}
/*Global--------------------------------------------------------------*/


/*Footer--------------------------------------------------------------*/
.footer-brand{
    color: white;
    text-align: center;
}

.footer-brand .logo, .footer-brand p{
    color: black;
}

.footer-brand .logo{
    font-size: 45px;
    border: 2px solid black;
    padding: 3px;
    background-color: white;
}

.footer-box{
    display: grid;
    position: relative;
    min-height: auto;
    border-top: 2px solid black;
    overflow: hidden;
}

.footer-box > *{
    grid-area: 1 / 1;
}

.footer-structure{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-self: end;
}

.footer-content{
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 25px;
}


.footer-link h3, .footer-link a{
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 20vw;
    margin-top: 10px;
    margin-bottom: 15px;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
}

.footer-link h3{
    width: fit-content;
    background-color: white;
    padding: 3px;
}

.footer-link a:hover{
    color: #6293c4;
}

.footer-link a{
    color: black;
}

.footer-link h3{
    color: black
}

.footer-bottom{
    border-top: 1px solid rgb(255, 255, 255);
    text-align: center;
    height: fit-content;
    display: block;
    margin-bottom: 30px;
    color: black;
}
/*Footer--------------------------------------------------------------*/


/* -Portable Adaptation -----------------------------------------------------------------*/
@media (max-width: 768px) and (orientation: portrait){
/*For all Site--------------------------*/
.explanation-box-format{
    max-height: 700px;
}

.text-content-format{
    width: 90%;
}

/*For all Site--------------------------*/


/*Menu----------------------------------*/
.menu-title{
    text-align: center;
    font-size: 50px;
}
/*Menu----------------------------------*/


/*Hero----------------------------------*/
.robot-report{
    width: 80%;
}
/*Hero----------------------------------*/


/*Devices-------------------------------*/
.device{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.device-image{
    width: 90%;
}
/*Devices-------------------------------*/


/*Market--------------------------------*/
.market-item{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.market-image{
    width: 90%;
}
/*Market--------------------------------*/


/*Global--------------------------------*/
.carousel-content .text-content-format{
    width: 70%;
    text-align: center;
}

.slide-image{
    width: 200%;
    height: 500px;
}
/*Global--------------------------------*/


/*Footer--------------------------------*/
.footer-content{
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
}

.footer-link h3, .footer-link a{
    max-width: 50vw;
    margin: auto;
    padding: 10px;
}

.footer-link h3, .footer-link a{
    border-left: transparent;
}
/*Footer--------------------------------*/
}


@media (max-width: 1000px) and (orientation: landscape){
/*Globo---------------------------------*/
.carousel-content .text-content-format{
    width: 55%;
    margin-left: 40px;
    text-align: center;
}
/*Globo---------------------------------*/

}

/* -Portable Adaptation -----------------------------------------------------------------*/

