/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #333;
    line-height: 1.6;
}

.container-logo,
.container-other {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.container-other {
    color: #000000;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.navbar-brand {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Conteúdo Principal */
.content {
    background-color: #000000;
    padding: 30px 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px auto;
    max-width: 90%;
}

.content h2 {
    margin-top: 0;
    color: #ffd000;
    font-size: 20px;
    text-align: center;
}

.input-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* Alinha os itens à esquerda */
    margin: 15px auto;
    width: 100%;
    max-width: 800px;
    /* Controla a largura máxima da área do campo */
}

.input-group label {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
    width: 60%;
    text-align: left;
    /* Alinha o texto do label à esquerda */
}

.input-group input[type="text"],
.input-group input[type="date"],
.input-group select,
.input-group textarea,
.input-group button {
    width: 100%;
    /* Ocupa toda a largura do .input-group */
    padding: 12px;
    border: 1px solid #fffb0073;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #ffffff44;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease;
}

.input-group select {
    margin-left: -10px;
}

.input-group select option {
   background-color: #333333a9;
}

.input-group textarea {
    resize: vertical;
    min-height: 40px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #ffd000;
    box-shadow: 0 0 5px rgba(255, 208, 0, 0.5);
}

/* Botão */
.input-group button {
    background-color: #ffd000;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.input-group button:hover {
    background-color: #e6bf00;
    transform: scale(1.03);
}

.hidden {
    display: none !important;
}

.show {
    display: flex !important;
    flex-direction: row;
    align-items: flex-start;
    /* Alinha os itens à esquerda */
    margin: 15px auto;
    width: 100%;
    max-width: 800px;
    /* Controla a largura máxima da área do campo */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slideshow .img-wrapper {
    height: 55vh;
    justify-content: flex-start;
    align-items: flex-start;
}

.slideshow .img-wrapper img {
    height: 100%;
    object-fit: cover;
    /* Changed to cover for larger screens as per original intent */
    width: 100%;
}

.slideshow .dots {
    max-width: 600px;
    margin: auto;
    padding: 0;
}

.slideshow .dots>.dot {
    height: 5px;
    width: auto;
    margin: -1.4em 3vw;
    flex-grow: 1;
}

/* Esconde os inputs e labels de "Outro" inicialmente */
#outroCliente,
#outroBarco,
#outroClienteLabel,
#outroBarcoLabel {
    display: none;
}

/* Quando exibidos via JS */
#outroCliente.show,
#outroBarco.show,
#outroClienteLabel.show,
#outroBarcoLabel.show {
    display: block;
}