html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    background-color: #ffffff;
    background-image: linear-gradient(#e0e0e0 1px, transparent 1px), linear-gradient(90deg, #e0e0e0 1px, transparent 1px);
    background-size: 60px 60px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.logo{
    width:60px;
    border-radius:10px;
    
}
.navbar .nav-link {
    position: relative;
    transition: 0.3s;
}

    /* Linha animada */
    .navbar .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        left: 0;
        bottom: 0;
        background-color: #ffcc00;
        transition: 0.3s;
    }

    /* Hover */
    .navbar .nav-link:hover {
        color: #ffcc00 !important; 
    }

    .navbar .nav-link:hover::after {
            width: 100%;
    }


.formulariocontroles {
    border: 10px;
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    color: white;
    display: flex;
    width:240px;
    background-color: black;
    flex-direction: column;
}


.containercontroles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#btnSelecionar {
    background-color: #ffcc00;
    color: black;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

#btnSelecionar:hover {
        background-color: #e6b800;
}

.preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.preview-card {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

    .preview-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ffcc00;
    color: white;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-weight: bold;
}

.botaoselecionar{
    height:90px;
    font-size: 20px;
}

.icone_btn{
    margin: 20px,0px,0px,0px;
}

.drop-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .drop-overlay.active {
        display: flex;
    }

.btn_submit{
    padding:10px;
    margin-top:10px;
    border-radius:10px;
    width:100%;

}
.input_formulario {
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

.lbl_formulario {
    margin-top: 10px;
}

.select_formulario {
    border-radius: 10px;
    padding: 10px;
}

.erro_formulario{
    text-decoration:none;
    color: red;
}

.titulo_privacy{
    margin-top:10px;
}

.hero {
    padding: 80px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        color: #666;
    }

.hero-buttons a {
    margin: 10px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
}

.btn-primary {
    background: #ffcc00;
    color: #000;
}

.btn-secondary {
    background: #333;
    color: #fff;
}

.tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.tool-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #fff;
}