﻿body {
    margin: 0;
}

/* Container principal */
.home-container {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    border: solid 6px #0F5C4A;
    min-height:90vh;
}

/* Imagem esquerda */
.img1 {
    width: 30%;
    max-width: 200px;
    min-width: 150px;
    position: absolute;
    top: -1px;
    left: -4px;
}


/* Logo */
.imglogo {
    width: 20%;
    max-width: 200px;
    min-width: 120px;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Título */
.titulo-container {
    margin-top: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.imgtitulo {
    width: 90%;
    max-width: 700px;
    margin: 100px auto 0;
}

/* 📱 Telemóveis */
@media (max-width: 768px) {
    .imglogo {
        position: fixed;
        margin-top: 20px;
        right: 50px;
    }

    .img1 {
        width: 0%;
        max-width: 180px;
    }

    .imgtitulo {
        position: static;
        margin-top: 120px;
        max-width: 100%;
    }
}

.form-label {
    font-size: 18px;
    height: 25px;
   /* font-weight: bold;*/
}

.form-control {
    height: 27px;
    background-color: mediumaquamarine;
}

.Width140 {
    max-width: 140px;
}

.Width70
{
    max-width:70px;
}

.Width60 {
    max-width: 60px;
}

.btnCartoes {
    width: 150px;
    height: 60px;
    background-color: #0F5C4A;
    border: solid 6px lightgray;
    color: white;
    font-size: 14px;
    font-weight: bolder;
    text-align: center;
    letter-spacing:0px;
}

    .btnCartoes:hover {
        background-color: #0F6C4A;
        color: white;
        border: solid 6px mediumaquamarine;
    }

.circle-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #0F5C4A;
    color: white;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.tooltip-img {
    display: none;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    z-index: 1000;
}

    .tooltip-img img {
        max-width: 550px;
        min-width: 550px;
        max-height: 300px
    }

.circle-info:hover .tooltip-img {
    display: block;
}