/* Seções de fontes e variáveis existentes (sem alterações) */

/* Definições das Fontes */
@font-face { /* latin-ext */
  font-family: 'Play';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/play/v21/6aez4K2oVqwIvts2H68T.woff2) format('woff2'); /* Latin-ext */
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face { /* latin */
  font-family: 'Play';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/play/v21/6aez4K2oVqwIvtU2Hw.woff2) format('woff2'); /* Latin */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face { /* latin-ext */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRxy7m0dJ9pQOik20.woff2) format('woff2'); /* Latin-ext */
  unicode-range: U+0100-02AF, U+02BD-02BF, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face { /* latin */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUQjIg1_i6t8kCHKm459WxRyS7m0dJ9pQOi.woff2) format('woff2'); /* Latin */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face { /* latin-ext */
  font-family: 'Michroma';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/michroma/v21/PN_zRfy9qWD8fEagAPgzpTnr_w.woff2) format('woff2'); /* Latin-ext */
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF, U+AB30-AB4F;
}
@font-face { /* latin */
  font-family: 'Michroma';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/michroma/v21/PN_zRfy9qWD8fEagAPg9pTk.woff2) format('woff2'); /* Latin */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Aplicando as Fontes aos Elementos
Agora que você tem as regras `@font-face` corretas, você pode usar as classes para aplicar as 
fontes. O navegador irá reconhecer que "Play", "Montserrat" e "Michroma" são fontes que ele 
precisa usar e, graças aos seus `<link rel="preload">` e às regras `@font-face`, o download 
já terá começado. */
.play {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 400; /* Ou o peso que você precisa */
  font-style: normal;
  letter-spacing: 0.04rem;
}
.michroma {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.aldrich { /* Original name: aldrich-regular */
  font-family: "Aldrich", sans-serif;
  font-weight: 400;
  font-style: italic;
}

:root {
    --asutec-green: #54af80;
    --asutec-yellow: #cab05c;
    --asutec-blue-light: #eaf1fb;
    --asutec-bg-light: #f5f6fa; /* cor de fundo do body/container principal */
    --asutec-bg-white: #fff;
    --asutec-text-dark: #1a2233;
    --asutec-grey-light: #c7c7c7;
    --asutec-grey: #e5e5e6;
    --asutec-border: #e0e6ed;
    --asutec-radius: 18px;
    --asutec-shadow: 0 2px 16px 0 rgba(30, 42, 80, 0.08);
}

body {
    background: var(--asutec-bg-light);
    color: var(--asutec-text-dark);
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.asutec-container {
    max-width: 100%;
    margin: 0;
    padding: 0 ;
}

.asutec-header {
    position: sticky;
    top: 0;
    background: var(--asutec-bg-light);
    z-index: 100;
    margin-top: 25px;
}

.asutec-navbar {
    display: flex;
    justify-content: center;
    background: var(--asutec-bg-light);
    height: auto;
    padding: 0 32px;
    height: 62px;
}
.asutec-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.asutec-navbar li a {
    text-decoration: none;
    color: var(--asutec-text-dark);
    font-weight: 500;
    padding: 0 8px;
}
.asutec-navbar li a:hover {
    color: #007bff;
}

.asutec-logo {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--asutec-text-dark);
}

.asutec-hero {
    background-image: url('./images/itablet5-2.png'); /* Sua imagem de fundo original */
    background-size: cover;
    background-position: center; /* Garante que a imagem se posicione bem */
    box-shadow: var(--asutec-shadow);

    margin: 32px 0;
    text-align: left;
    height: 400px; /* Altura original da sua hero */
    color: var(--asutec-bg-light); /* Texto claro sobre a imagem */
}

.asutec-btn-primary {
    display: inline-block;
    background: var(--asutec-yellow);
    color: #fff;
    border-radius: 24px;
    border: solid 2px transparent;
    padding: 18px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.asutec-btn-primary:hover {
    border-color: #2e2d2d;
}

.asutec-btn-primary2 {
    display: inline-block;
    background: var(--asutec-grey-light); /* #cab05c */
    border-radius: 24px;
    border: solid 2px transparent;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.asutec-btn-primary2:hover {
    border-color: #cdd4d1;
}

.asutec-about {
    display: flex;
    align-items: center;
    background: var(--asutec-bg-white);
    border-radius: var(--asutec-radius);
    box-shadow: var(--asutec-shadow);
    margin: 32px 50px;
    padding: 32px;
    gap: 32px;
}

.asutec-about-img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--asutec-radius);
    flex-shrink: 0;
}

.asutec-about-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* asutec-solution-card */




/* asutec-faq: Aplicando a curva no TOPO */
.asutec-faq {
    position: relative;
    background-color: var(--asutec-green);
    box-shadow: var(--asutec-shadow);
    z-index: 1;
    padding: 32px 50px 132px 50px;
    margin: 32px auto 122px auto;
    max-width: 100%;
}

.asutec-faq::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--asutec-bg-light);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform-origin: bottom center;
    transform: skewY(-2deg);
}

.asutec-faq::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--asutec-bg-light);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform-origin: top center;
    transform: skewY(2deg);
}

/* O conteúdo do FAQ permanece inalterado em relação aos estilos que já tinha */
.content-faq {
    width: 100%;
}

.asutec-faq h2 {
    font-size: 2.1rem;
    padding-top: 90px;
    margin-bottom: 18px;
    color: var(--asutec-text-dark);
}

.asutec-faq details {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--asutec-border);
    padding-bottom: 14px;
}

.asutec-faq summary {
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    outline: none;
    color: #222121;
    list-style: none;
    padding-right: 24px;
    position: relative;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}
details.faq-item summary::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url('images/arrow-down-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}
details.faq-item[open] summary::after {
    background-image: url('images/arrow-up-white.svg');
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.asutec-faq p {
    margin: 8px 0 0 0;
    color: #333;
}


@media (min-width: 993px) {
.asutec-navbar li a {
    font-size: 1.3rem;
}
.asutec-hero {
    padding: 48px 92px;
}
.asutec-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.asutec-hero-content p {
    font-size: 1.35rem;
    margin-bottom: 28px;
}

/* Solution Section */
.carousel-main {
    height: 70vh; /* 500px */
    width: 96vw;
    padding-top: 150px;
}
input{
    margin-top: 90px;
}
.carousel-main.modo-detalhe {
    height: 33vh;
}
.carousel-main label {
    margin-top: 90px;
}
.carousel-main.modo-detalhe label {
    margin-top: 0px;
    top: -106px;
}
main#carousel {
    margin-bottom: 60px;
}
div.item {
    width: 40%;
    height: auto; /*480px 420px ; 410 359 ; 430 376*/
    max-width: 590px;
}
.item img {
    width: 100%;
    height: 100%; /*auto ; 480px 438px ; 410 359*/
}
.item.item-modo-detalhe {
    height: 250px;
    width: 16%;
    margin-top: -60px;
    transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-350px * var(--r)));
}
.p-img {
    top: 40%; /* 35% */
    left: 10%;
    padding: 12px 36px 0 20px; /* Preenchimento interno */
}
.p2-img {
    top: 48%; /* 35% */
    left: 20%;
    padding: 12px 36px 12px 20px; /* Preenchimento interno */
}
.p4-img {
    top: 60%;
    left: 8%;
}
.p5-img {
    top: 60%;
    left: 8%;
}
.h3-img {
    top: 2%;
    padding: 30px 25px 18px 25px; /* Preenchimento interno */
    left: 28%;
}
.h2-img {
    top: 2%;
    left: 52%;
    transform: translateX(-53%);
    padding: 25px 27px 14px 30px; /* Preenchimento interno */
}
.h0-img {
    top: 6%;
    left: 30%;
    transform: translateX(-17%);
}
.dintext {
    font-size: 1.5rem;
}

.asutec-about-content p {
    font-size: 1.3rem;
}
.asutec-solution-card p {
    font-size: 1.3rem;
}
.faq-item p {
    font-size: 1.3rem;
}

.asutec-form {
    height: 300px;
    margin: -44px 50px 98px 50px;
}
.asutec-form-content h2 {
    font-size: 3rem;
}
.asutec-form-content p {
    font-size: 1.5rem;
}
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .asutec-header {
        padding: 0 8px;
    }
    .asutec-navbar li a {
        font-size: 1.1rem;
    }

    .asutec-hero {
        padding: 40px 10px 40px 30px;
        height: auto; /* Deixa a altura se ajustar ao conteúdo em mobile */
        min-height: 300px;
    }
    .asutec-hero-content h1 {
        font-size: 2em;
    }
    .asutec-hero-content p {
        font-size: 1.3em;
    }
    .asutec-about {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin: 32px 20px;
        padding: 20px;
    }
    .asutec-about-img {
        width: 100%;
        height: 160px;
    }

    /* Solutions Section */
    .asutec-solutions {
        flex-direction: column;
        gap: 18px;
        margin: 32px 0;
    }
    .carousel-main {
        height: 460px;
        max-width: 100%;
        top: -10px;
        /*width: 88vw;*/
    }
    .carousel-main.modo-detalhe {
        height: 39vh;
    }
    input{
        margin-top: 90px;
    }
    .carousel-main label {
        margin-top: 40px;
    }
    .carousel-main.modo-detalhe label {
    margin-top: 0px;
    top: -60px;
    }
    main#carousel {
        margin-top: 80px;
    }

    div.item {
        width: 410px;
        height: 359px; /*480px 420px ; 410 359 ; 390 341*/
    }
    .item img {
        width: 100%;
        height: 100%; /*480px 438px ; 410 359*/
    }
    .item.item-modo-detalhe {
        height: 180px;
        width: 25%;
        margin-top: -140px;
        transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-290px * var(--r)));
    }

    .p-img {
        top: 34%;
        left: 10%;
        padding: 5px 10px;
    }
    .p2-img {
        top: 40%; /* 35% */
        left: 17%;
        padding: 12px 36px 12px 20px; /* Preenchimento interno */
    }
    .p4-img {
        top: 54%;
        left: 5%;
    }
    .p5-img {
        top: 54%;
        left:11%;
    }
    .h3-img {
        top: 2%;
        padding: 30px 25px 18px 25px;
        left: 28%;
    }
    .h2-img {
        top: 2%;
        left: 53%;
        transform: translateX(-53%);
        padding: 25px 27px 14px 30px;
    }
    .h0-img {
        top: 6%;
        left: 30%;
        transform: translateX(-16%);
    }
    .dintext {
        font-size: 1.5rem;
    }

    .asutec-faq {
        padding: 25px 20px;
        margin: 32px auto; /* Mantém a margem normal, pois o pseudo-elemento criará a curva */
    }
    .asutec-faq h2 {
        font-size: 1.8rem;
    }
    .asutec-faq summary {
        font-size: 1.3rem;
    }
    .asutec-faq::before {
        top: -30px; /* Ajuste para mobile */
        height: 60px; /* Altura da curva em mobile */
        transform: skewY(-1.5deg); /* Ajuste o grau para mobile */
    }

    .asutec-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 20px;
    }
    .asutec-footer-copy {
        text-align: left;
    }
}

@media (max-width: 767px) {
    
  .asutec-navbar {
    padding: 16px;
  }

  .asutec-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 8px;
  }

  /* Linha 1: logo (coluna 1) + menu-item-1 (coluna 2 e 3) */
  .asutec-logo {
    grid-column: 1;
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-style: oblique;
    font-size: 1.35rem;
    align-self: center;
  }
  .menu-item-1 {
    grid-column: 2 / 4;
    justify-self: end;
  }

  /* Linha 2: outros 3 itens */
  .menu-item-2 {
    grid-column: 1;
  }
  .menu-item-3 {
    grid-column: 2;
  }
  .menu-item-4 {
    grid-column: 3;
  }

  .asutec-menu li {
    text-align: center;
  }

    .asutec-hero {
        min-height: 250px;
    }
    /*.asutec-hero-content {
        top: 30px;
    }*/
    .asutec-hero-content h1 {
        font-size: 2.4rem;
        font-weight: 700;
        margin: 0 0 34px 20px;
        padding-top: 20px;
    }
    .asutec-hero-content p {
        font-size: 1.2rem;
        background-color: #767a80;
        font-style: oblique;
        padding: 8px 20px 8px 14px;
        width: 90%;
        opacity: 0.8;
        font-weight: 400;
        letter-spacing: 2px;
        margin: 0 0 28px 42px;
        /*text-shadow: 
            1px 1px 2px var(--asutec-yellow),
            0 0 1em var(--asutec-grey),
            0 0 0.6em blue;*/
    }
    .asutec-btn-primary {
        margin: 0 20px;
        padding: 12px 18px;
        font-size: 0.8em;
    }
    .asutec-solution-card {
        padding: 15px;
    }

    /* Solution Section */
    div.carousel-main {
        height: 370px;
        max-width: 100%;
    }
    .carousel-main.modo-detalhe {
        height: 34vh;
    }
    main#carousel {
        margin-top: -30px;
    }
    input{
        margin-top: 20px;
    }
    .carousel-main label {
        margin-top: -70px;
    }
    .carousel-main.modo-detalhe label {
    top: -118px;
    }

    div.item {
    width: 360px;
    height: 315px; /*480px 420px ; 410 359 ; 390 341*/
    }
    .item img {
        width: 100%;
        height: 100%; /*480px 438px ; 410 359*/
    }
    .item.item-modo-detalhe {
        height: 210px; /*180px*/
        width: 28%; /*25%*/
        
        margin-top: -100px;
        transform: rotateY(calc(-10deg * var(--r))) translateX(calc(-200px * var(--r)));
    }

    .p-img {
        top: 32%;
        left: 6%;
        padding: 5px 10px; /* Preenchimento interno */
    }
    .p2-img {
        top: 29%; /* 35% */
        left: 17%;
        padding: 12px 36px 12px 20px; /* Preenchimento interno */
    }
    .p4-img {
        top: 60%;
        left: 5%;
    }
    .p5-img {
        top: 54%;
        left: 7%;
    }
    .h3-img {
        top: 1%;
        padding: 12px 7px 18px 7px;
        width: 300px;
        left: 24%;
    }
    .h2-img {
        top: 1%;
        left: 52%;
        transform: translateX(-53%);
        padding: 17px 17px 14px 17px;
    }
    .h0-img {
        top: 6%;
        left: 30%;
        transform: translateX(-20%);
    }
    .dintext {
        font-size: 1.2rem;
        margin-right: 20px;
    }

    .asutec-faq {
        padding: 20px 15px;
    }
    .asutec-faq h2 {
        font-size: 1.6rem;
    }
    .asutec-faq summary {
        font-size: 1.2rem;
    }
    .asutec-faq::before {
        top: -20px; /* Ajuste ainda mais para mobile pequeno */
        height: 40px;
        transform: skewY(-1deg);
    }

    #chat-ai-container {
        width: 90%;
        height: 80vh;
        right: 5%;
        left: 5%;
    }
    #chat-ai-button {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

/* Contato Section */
.asutec-form {
    height: 390px;
    margin: 64px 50px 98px 50px;
}
.asutec-form-content h2 {
    font-size: 2rem;
}
.asutec-form-content p {
    font-size: 1rem;
}
}

/* Contato Section */
.asutec-form {
    display: flex;
    align-items: center;
    background: var(--asutec-bg-white);
    border-radius: var(--asutec-radius);
    box-shadow: var(--asutec-shadow);
    padding: 32px 32px 52px 32px;
    gap: 32px;
    justify-content: center;
}

.asutec-form-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.asutec-form-content h2 {
    margin-bottom: 12px;
    padding: 0 60px;
}
.asutec-form-content p {
    padding: 0 60px;
}
.asutec-form-content a {
    width: 200px;
    background: var(--asutec-green);
    color: #fff;
    border: solid 2px transparent;
    border-radius: 24px;
    padding: 12px 20px;
    margin: 0 25px 0 60px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}
.asutec-form-content a:hover {
    border-color: #e4e9e6;
}

/* Restante do CSS do footer e chat-ai permanece igual */
.asutec-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  
  background: rgb(198, 202, 193);
  box-shadow: var(--asutec-shadow);
  color: black;
  margin: 32px 0 0 0;
  padding: 48px 22px 76px 22px;
  gap: 16px;
  font-size: 1rem;
}
.foot-1 {
    margin: 0 22px;
}

.asutec-footer-location {
  margin-left: 12px;
  color: #888;
}

.asutec-footer-btn {
  margin-left: 16px;
  font-weight: 600;
}

.asutec-footer-social a {
  margin-right: 12px;
  display: inline-block;
}

.asutec-footer-copy {
  /*flex-basis: 100%;*/
  text-align: right;
  color: #aaa;
  font-size: 0.95rem;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .asutec-about {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .asutec-about-img {
    width: 100%;
    height: 160px;
  }
  .asutec-solutions {
    flex-direction: column;
    gap: 18px;
  }
  .asutec-solution-card {
    max-width: 100%;
  }
}


/* AI CHAT */
#chat-ai-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 370px;
    height: 560px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}
#chat-ai-header {
    background: linear-gradient(90deg,rgba(59, 81, 89, 1) 10%, rgba(135, 190, 204, 1) 80%);
    color: white;
    padding: 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border-bottom: 6px solid #B6BDBF;
}
#chat-ai-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* spacing between messages */
#chat-ai-body p {
    margin-bottom: 15px; /* between messages */
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    word-wrap: break-word;
}

#chat-ai-footer {
    padding: 36px 12px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
}
#chat-ai-input {
    flex: 1;
    padding: 14px 8px;
    margin-top: -14px;
    border: 1px solid #ddd;
    border-radius: 48px;
    outline: none;
    font-size: 1rem;
}
#chat-ai-send {
    /*background: linear-gradient(90deg,rgba(109, 115, 120, 1) 10%, rgba(138, 147, 150, 1) 80%);*/
    background: linear-gradient(90deg,rgba(59, 81, 89, 1) 10%, rgba(108, 154, 166, 1) 80%);
    position: relative;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: -14px;
    border-radius: 24px;
    cursor: pointer;
}

#chat-ai-send:hover {
    border: 2px solid rgb(97, 102, 105);
    padding: 10px 13px;
    background: linear-gradient(90deg,rgba(59, 81, 89, 1) 10%, rgba(135, 190, 204, 1) 80%);
}

/* chat circle bubble */
#chat-ai-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg,rgb(105, 135, 146) 10%, rgb(156, 196, 206) 80%);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 30%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


/* show loading message from Arthur after user send a msg */
.typing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 18px;
    max-width: 60px; /* Ou ajuste para o tamanho do indicador */
    height: 30px;
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: #fff; /* Cor dos pontos */
    border-radius: 50%;
    margin: 0 2px;
    animation: bounce 1.4s infinite ease-in-out both;
    display: inline-block; /* Garante que o width e height sejam respeitados */
}

.typing-indicator .dot:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator .dot:nth-child(2) { animation-delay: -0.16s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes l10 {
    100% {background-position: -20px 0,20px 0}
}

/* Pagina FORMS */
@media (min-width: 768px) {
    .userForm {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .titleForm h1{
        font-size: 1.7rem;
    }
    .userForm {
        width: 70%;
    }
}

.titleForm{
    display: flex;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 32px;
}
.userForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(238, 230, 224);
  border-radius: 10px;
  border: 2px solid rgb(153, 152, 152);
  padding: 18px;
}

#myForm{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    position: relative;
}

.form-field{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    padding: 10px 0 10px 0;
    border-radius: 20px;

    input{
        width: 60%;
        height: 40px;
        text-align: center;
        border-radius: 20px;
        background-color: #131316; /* Cor de fundo inicial do menu */
        color: white;
        border: solid 1px #2d2d35;
        padding-left: 10px;
        box-shadow: rgba(127, 125, 125, 0.25) 0px 14px 28px, rgba(132, 130, 130, 0.22) 0px 10px 10px;
    }
}
.select-field{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px 0 10px 20px;
    border-radius: 10px;
    background-color: #dedee2;

    select{
        width: 40%;
        height: 40px;
        border-radius: 20px;
        background-color: #131316; /* Cor de fundo inicial do menu */
        color: white;
        border: solid 1px #2d2d35;
        padding-left: 10px;
        box-shadow: rgba(127, 125, 125, 0.25) 0px 14px 28px, rgba(132, 130, 130, 0.22) 0px 10px 10px;
    }
}

/* CAROUSEL in the Solutions Section */
.asutec-solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0 90px 0; /* 32px 26px 90px 26px */
    justify-content: center;
}
.carousel-main {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    font-family: 'Poppins', sans-serif;
    box-shadow: rgba(127, 125, 125, 0.25) 0px 14px 28px, rgba(132, 130, 130, 0.22) 0px 10px 10px;
    
    margin: 0;
    grid-template-rows: 50vh 5vh; /*500px 50px*/
    grid-template-columns: 1fr 7vh 7vh 7vh 7vh 7vh 7vh 1fr;
} /*60px 60px 60px 60px 60px*/

#maximize-icon {
    position: absolute;
    top: 86%;
    right: 20px;
    cursor: pointer;
    z-index: 55; /* Garante que o ícone fique acima de outros elementos */
}
#maximize-icon img{
    width: 24px;
    height: 24px;
}
#maximize-icon img:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}


input[type="radio"] {
    display: none;
}
.carousel-dot {
    height: 20px;
    width: 19px;
    border-radius: 50%;
    background-color: #ccc; /* Cinza claro */
    cursor: pointer; 
    
    /* Adiciona margem se necessário e transição para o efeito suave */
    margin: 0 10px;
    transition: background-color 0.3s, transform 0.3s;
    
    /* Se você estiver usando Grid, use Flexbox para centralizar os dots */
    /* Talvez seja melhor colocar os dots em uma linha separada do Grid */

    pointer-events: auto;
    position: relative;
    /*position: relative; /* Pode ajudar no empilhamento se tiver problemas */
    z-index: 20; /* Z-index mais alto que o main#carousel */
}

main#carousel {
    grid-row: 1 / 2;
    grid-column: 1 / 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 700px;
    --items: 6;
    --middle: 6 / 2 + 0.5; /* número de itens dividido por 2 + 0.5 */
    --position: 1;
    /*pointer-events: none;*/
    
    height: 80vh; /*480px ; 510px*/
    margin-left: -11px;
    margin-right: 11px;
}
div.item {
    text-align: center;
    padding: 7px; /*20*/
    /*border: 2px solid rgb(182, 181, 181);*/
    border-radius: 20px;
    position: absolute;
    background-color: transparent;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r)); /* valor absoluto */
    transition: all 0.25s linear;
    transform: rotateY(calc(-10deg * var(--r)))
    translateX(calc(-430px * var(--r)));
    z-index: calc((var(--position) - var(--abs)));
    pointer-events: auto;
}
.item img {
    border-radius: 17px; /*-10px 20px*/
    display: block;
}

/* Definição da nova classe que substitui os estilos JS */
/*.item.item-modo-detalhe {}  <<------- ATIVO NAS MEDIA QUERIES */
    /* Inclua também o estilo para os <p> se eles forem sempre ocultos neste modo */
    
/* Exemplo para o carousel-main */
.carousel-main.modo-detalhe {
    padding-top: 0px !important; 
    /* Pode ser necessário o !important aqui ou aumentar a especificidade */
}
/* E os outros elementos, como as labels */
.carousel-main.modo-detalhe label {
    margin-top: 0px;
}

.img-container {
    position: relative;
    width: 100%;
    background-color: rgb(211, 204, 204);
    background-image: url('./images/itablet4-.png');
    padding: 8px;
    border-radius: 17px;
    overflow: hidden;
    cursor: pointer;
}
.img-container:hover {
    box-shadow: rgba(0, 0, 0, 0.55) 0px 5px 15px;
}
.img-container:active {
    /* Efeito de "afundamento" */
    transform: scale(0.98); /* Diminui ligeiramente o tamanho */
    box-shadow: rgba(0, 0, 0, 0.55) 0px 2px 5px; /* Diminui a sombra (parece mais próximo) */
    background-color: rgb(180, 180, 180); /* Mude sutilmente a cor de fundo */
}

.hidden-section {
    /*display: none;*/
    margin: 30px 0 0 0;
}
.dintext {
    font-family: 'Montserrat', sans-serif;
    color: #222121;
    padding-left: 25px;
}


.h-img {
    position: absolute;
    top: 6%;
    left: 28%;
    transform: translateX(-20%);
    font-size: clamp(1rem, 1.8vw, 28px);
    /* 1.2 1.4 2.1 */

    background-color: rgba(0, 0, 0, 0.2); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    padding: 10px 33px 15px 33px; /* Preenchimento interno */
    border-radius: 30px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0; /* Remove margens padrão do <p> */
    font-family: 'Michroma', monospace;
}
.p-img {
    position: absolute;
    font-size: clamp(0.9rem, 1.3vw, 20px);

    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    border-radius: 5px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0; /* Remove margens padrão do <p> */
    font-family: 'Play', sans-serif;
    text-align: left;
    letter-spacing: 2px;
}

.h2-img {
    position: absolute;
    font-size: clamp(1.2rem, 1.8vw, 28px);
    /* 1.2 1.4 2.1 */
    background-color: rgba(0, 0, 0, 0.3); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    border-radius: 5px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0; /* Remove margens padrão do <p> */
    font-family: 'Montserrat', sans-serif;
}
.p2-img {
    position: absolute;
    transform: translateX(-7%);
    font-size: clamp(0.9rem, 1.3vw, 20px);

    background-color: rgba(0, 0, 0, 0.7); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    border-radius: 13px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0; /*25px Remove margens padrão do <p> */
    font-family: 'Play', sans-serif;
    text-align: left;
    letter-spacing: 2px;
}

.h3-img {
    position: absolute;
    transform: translateX(-18%);
    font-size: clamp(1.2rem, 1.8vw, 28px);
    /* 1.2 1.4 2.1 */
    background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    border-radius: 5px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0; /* Remove margens padrão do <p> */
    font-family: 'Montserrat', sans-serif;
}
.h0-img {
    position: absolute;
    font-size: clamp(1.2rem, 1.8vw, 28px);
    /* 1.2 1.4 2.1 */
    background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    padding: 10px 12px 8px 12px; /* Preenchimento interno */
    border-radius: 5px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0; /* Remove margens padrão do <p> */
    font-family: 'Montserrat', sans-serif;
}


.p4-img {
    position: absolute;
    font-size: clamp(0.8rem, 1.4vw, 25px);

    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    border-radius: 5px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0 0 0 10px; /* Remove margens padrão do <p> */
    padding: 6px 5px 6px 25px;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    letter-spacing: 2px;
}
.p5-img {
    position: absolute;
    font-size: clamp(0.8rem, 1.4vw, 25px);

    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
    color: white; /* Cor do texto */
    border-radius: 5px; /* Bordas arredondadas */
    z-index: 10; /* Garante que o texto fique acima da imagem */
    margin: 0 0 0 10px; /* Remove margens padrão do <p> */
    padding: 6px 5px 6px 25px;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    letter-spacing: 2px;
}
#dinamic-text h2 {
    margin-top: 25px;
    padding: 0 25px;
}

div.item:nth-of-type(1) {
    --offset: 1;
}
div.item:nth-of-type(2) {
    --offset: 2;
}
div.item:nth-of-type(3) {
    --offset: 3;
}
div.item:nth-of-type(4) {
    --offset: 4;
}
div.item:nth-of-type(5) {
    --offset: 5;
}
div.item:nth-of-type(6) {
    --offset: 6;
}


/* Troca o Slide */
input:nth-of-type(1):checked + .carousel-dot ~ main#carousel {
    --position: 1;
}/* Troca o Slide */
input:nth-of-type(2):checked + .carousel-dot ~ main#carousel {
    --position: 2;
}/* Troca o Slide */
input:nth-of-type(3):checked + .carousel-dot ~ main#carousel {
    --position: 3;
}/* Troca o Slide */
input:nth-of-type(4):checked + .carousel-dot ~ main#carousel {
    --position: 4;
}/* Troca o Slide */
input:nth-of-type(5):checked + .carousel-dot ~ main#carousel {
    --position: 5;
}
input:nth-of-type(6):checked + .carousel-dot ~ main#carousel {
    --position: 6;
}

.carousel-dot:nth-of-type(1) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
#s1:checked ~ label[for="s1"] { /* Seleciona o label correspondente ao rádio checked */
    background-color: #007bff;
    transform: scale(1.2); 
}

.carousel-dot:nth-of-type(2) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
#s2:checked ~ label[for="s2"] {
    background-color: #007bff;
    transform: scale(1.2); 
}

.carousel-dot:nth-of-type(3) {
    grid-column: 4 /5;
    grid-row: 2 / 3;
}
#s3:checked ~ label[for="s3"] {
    background-color: #007bff;
    transform: scale(1.2); 
}

.carousel-dot:nth-of-type(4) {
    grid-column: 5 /6;
    grid-row: 2 / 3;
}
#s4:checked ~ label[for="s4"] {
    background-color: #007bff;
    transform: scale(1.2); 
}

.carousel-dot:nth-of-type(5) {
    grid-column: 6 /7;
    grid-row: 2 / 3;
}
#s5:checked ~ label[for="s5"] {
    background-color: #007bff;
    transform: scale(1.2); 
}

.carousel-dot:nth-of-type(6) {
    grid-column: 7 /8;
    grid-row: 2 / 3;
}
#s6:checked ~ label[for="s6"] {
    background-color: #007bff;
    transform: scale(1.2); 
}
