@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    height: 100vh;
    display: block;
    background-color: #fff;
}

.nav-bar {
    padding: 0 0rem;
}

#navbar1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}

.home {
    width: 100%;
    display: flex;
    margin-top: 40px;
}

.left {
    padding: 20px;
    width: 45%;
    display: block;
}

.right {
    margin: 20px;
    width: 55%;
    background: url(/static/pos3/img/papel_parede_ia.png);
    background-repeat: round;
    height: 500px;
    border-radius: 10px;
}

/* background-size: 600px; */
.home-title {
    text-align: justify;
    font-size: 40px;
    color: #032b2e;
    font-weight: 700;
    line-height: 52px;
}

.home-description {
    text-align: justify;
    font-size: 16px;
    color: #032b2e;
    font-weight: 500;
}

#next-button {
    transition: .5s;
    font-weight: 400;
    line-height: 1.5;
    color: #00CB81;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid #00CB81;
    padding: .675rem .75rem;
    font-size: 18px;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#next-button:hover {
    background-color: #00CB81;
    color: white;
    border-color: #00CB81;
}

.home-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.container10 {
    width: 100%;
}

.service-wrapper {
    padding: 5% 8%;
}

.service {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#our-services-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    -webkit-text-stroke-color: transparent;
    letter-spacing: 4px;
    background-color: #032b2e;
    -webkit-text-fill-color: transparent;
    position: relative;
}

#our-services-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    height: 8%;
    width: 80%;
    background-color: rgb(255, 255, 255, 0.05);
}

#our-services-title span {
    position: absolute;
    top: 100%;
    left: 10%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #00CB81;
    animation: anim 5s linear infinite;
}

@keyframes anim {
    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        left: 88%;
    }
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    margin-top: 80px;
}

.card {
    height: fit-content;
    width: 370px;
    background-color: #ffffff;
    padding: 10% 8%;
    border: 0.2px solid #00CB81;
    border-radius: 8px;
    transition: 0.6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card:after {
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #fff;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.card:hover:after {
    width: 225%;
    top: -100%;
}

.card i {
    color: #00CB81;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 4.8rem;
}

.card h2 {
    color: #00715A;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.card p {
    width: 100%;
    margin: 12px 0;
    color: #032b2e;
}

.card:hover p {
    color: #032b2e;
}

.card:hover .line {
    background-color: #032b2e;
}

.card:hover h2 {
    color: #032b2e;
}

.card li {
    width: 100%;
    color: #032b2e;
}

.card:hover {
    background-color: transparent;
    transform: translateY(-8px);
    border-color: #032b2e;
    background-color: rgb(255, 255, 255);
}

.card:hover i {
    color: #00CB81;
}

@media screen and (max-width: 1200px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-wrapper {
        padding: 20px;
    }

    .card {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .cards {
        grid-template-columns: repeat(1, 1fr);
    }

    h1 {
        font-size: 3.5rem;
    }
}

.line {
    background-color: #032b2e;
    height: 0.5px;
    width: 100%;
}

.custom-list {
    margin: 12px 0;
    list-style-type: disc;
}

ul {
    padding-left: 1rem;
    margin-bottom: 0rem;
}

.contact {
    width: 100%;
    padding: 20px;
    padding-bottom: 40px;
    display: flex;
}

.location {
    width: 55%;
    border: 0.2px solid #00CB81;
    border-radius: 10px;
    height: fit-content;
}

.contacts {
    width: 45%;
    padding: 20px;
}

iframe {
    border: 0.2px solid #00CB81;
    border-radius: 10px;
}

#contact-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    -webkit-text-stroke-color: transparent;
    letter-spacing: 1px;
    background-color: #032b2e;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 40px;
}

.contactInfo .iconGroup {
    display: flex;
    align-items: center;
    margin: 25px 0px;
}

.iconGroup .ico {
    min-width: 45px;
    min-height: 45px;
    border: 2px solid #00CB80;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.iconGroup .ico i {
    font-size: 20px;
    color: #00cb81;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iconGroup .details span {
    display: block;
    color: #032b2e;
    font-size: 18px;
}

.iconGroup .details span:nth-child(1) {
    text-transform: uppercase;
    color: #032b2e;
}

#coll {
    margin-right: auto;
}

#navbar-mobile {
    width: 100%;
    display: flex;
}

#coll-mobile {
    display: none;
}

@media (max-width: 768px) {
    #coll {
        display: none;
    }

    #coll-mobile {
        display: block;
        text-align: center;
        color: #032b2e;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 1200px) {
    .left {
        width: 50%;
    }

    .right {
        width: 50%;
        height: 500px;
    }
}

@media (max-width: 1000px) {
    .left {
        width: 100%;
    }

    #our-services-title {
        margin-bottom: -20px;
    }

    .right {
        width: auto;
    }

    .home {
        flex-direction: column-reverse;
    }

    .contact {
        flex-direction: column;
    }

    .location {
        width: 100%;
    }

    .contacts {
        width: 100%;
    }

    iframe {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .right {
        height: 300px;
    }

    iframe {
        height: 400px;
    }
}

@media (max-width: 400px) {
    .right {
        height: 200px;
    }

    iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .home-title {
        font-size: 2em;
        line-height: normal;
    }

    #our-services-title {
        font-size: 2.5em;
    }

    #contact-title {
        font-size: 2.5em;
        margin-top: 20px;
    }

}

@media (max-width: 450px) {
    .home-title {
        font-size: 1.5em;
    }

    #our-services-title {
        font-size: 2em;
        letter-spacing: normal;
    }
}

/* Segunda Customização */
/* Ajustes exclusivos para celular */
@media (max-width: 768px) {

    /* --- Layout vira uma coluna --- */
    #box {
        flex-direction: column !important;
        display: flex !important;
        width: 100% !important;
        padding: 20px !important;
    }

    .right {
        display: none !important;   /* remove imagem e coluna direita */
        background-image: none !important;
    }

    .left {
        width: 100% !important;
        text-align: center !important;
    }

    /* --- Imagens menores --- */
    .left img {
        width: 30vw !important;
        max-width: 120px !important;  /* evita ficar grande demais */
    }

    /* --- AUMENTAR FONTE — AGORA COM !important --- */
    #login-title {
        font-size: 32px !important;
    }

    #login-description {
        font-size: 18px !important;
        line-height: 1.3;
    }

    /* Labels maiores */
    .field3 label {
        font-size: 18px !important;
    }

    /* Inputs maiores e proporcionais ao celular */
    .field3 input {
        width: 100% !important;
        font-size: 18px !important;
        padding: 12px !important;
    }

    /* Botão maior e adequado ao dedo */
    .activate-camera {
        width: 100% !important;
        font-size: 20px !important;
        padding: 14px !important;
    }
}

/* Mais uma customização */
/* Aumentar fontes em qualquer celular */
@media (max-width: 768px) {
    body, input, textarea, select, button {
        font-size: 18px !important; /* tamanho base maior para todo o texto */
    }

    h1, h2, h3, h4, h5, h6 {
        font-size: 2em !important; /* títulos maiores */
    }

    p, span, li, a, label {
        font-size: 1.2em !important; /* textos normais maiores */
    }

    .home-title {
        font-size: 2em !important;
    }

    #our-services-title {
        font-size: 2.5em !important;
    }

    #contact-title {
        font-size: 2.5em !important;
    }

    /* inputs e botões maiores */
    input, textarea, button {
        font-size: 18px !important;
        padding: 12px !important;
    }
}
