:root {
    --verdebonuito: #589C25;
    --cinza: #F3F3F0;
}

/* Utilitário */
.PLACEHOLDERDOG {
    width: 35px;
    height: 35px;
    background-color: var(--verdebonuito);
}

/* Estrutura Principal */
body {
    font-family: 'Georgia', serif;
    background: #F5F5F5;
    margin: 0;
    padding: 0;
}

/* Container (não utilizado no HTML fornecido, mas mantido para possível uso futuro) */
.container {
    margin: 10px auto;
    max-width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px 8px #0001;
}

/* BANNER */
header {
    position: relative;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    border: 3px solid #4ea43b;
    border-radius: 3px;
    margin: 8px;
    background: #d6eec1;
}

.bancontent {
    position: relative;
    z-index: 2;
    width: 60%;
    color: #fff;
    padding: 20px 0 0 20px;
    font-size: 1.23em;
    text-shadow: 0 2px 8px #0006;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bancontent h2 {
    margin: 0 0 15px 0;
    font-weight: normal;
    line-height: 1.2;
    font-size: 1.5em;
}

.bancontent button {
    background: var(--verdebonuito);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 2px 4px #0002;
    transition: background 0.2s;
}
.bancontent button:hover {
    background: #357a25;
}

.banner-img {
    scale: 100%;
    position: absolute;
    top: 0; right: 0; bottom: 0;
    object-fit: cover;
    height: 100%;
    z-index: 9;
}

.banner-fundo {
    width: 100%;
    position: absolute;
    top: 0; right: 0; bottom: 0;
    object-fit: cover;
    height: 180px;
    z-index: 1;
}

/* CÃES PERDIDOS & ENCONTRADOS */
.vercaes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 24px 10px 0 10px;
    gap: 12px;
}

.caesperdidos,
.caesadocao {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caesperdidos > button,
.caesadocao > button {
    background: #7ba257;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 5px 7px;
    margin-bottom: 8px;
    font-size: 0.97em;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 2px 4px #0001;
}

/* Mantém a cor diferente para .caesadocao se quiser customizar */
.caesadocao > button.recent-btn {
    background: #7ba257;
}

.dogs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.dog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.97em;
    margin-bottom: 3px;
}

.imgdog {
    width: 70px;
    height: 70px;
    background: #c7d7b6;
    border-radius: 5px;
    border: 2px solid #c7d7b6;
    margin-bottom: 3px;
}

.nome {
    display: block;
    font-size: 1em;
    margin-bottom: 1px;
}

.bairro {
    font-size: 0.92em;
    color: #444;
    margin-bottom: 5px;
}

/* BUSCA */
.busca {
    background: #eaf6d0;
    margin-top: 25px;
    padding: 23px 8px 28px 8px;
    text-align: left;
}

.busca h3 {
    font-family: Georgia, serif;
    font-weight: normal;
    margin-bottom: 18px;
    font-size: 1.33em;
    color: #222;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: center;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-bottom: 0;
    width: 100%;
}

.form input[type="text"],
.form select,
.form input[type="date"] {
    background: #fff;
    border: 1px solid #c7d7b6;
    border-radius: 20px;
    padding: 7px 13px;
    font-size: 1em;
    width: 100%;
    margin-bottom: 0;
    outline: none;
}

.form select {
    min-width: 80px;
}

.datanome{
    white-space: nowrap;
    align-content:center
}

.form button,
.search-btn {
    margin-top: 10px;
    background: #7ba257;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 25px;
    font-size: 1em;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 2px 4px #0001;
    transition: background 0.2s;
}
.form button:hover,
.search-btn:hover {
    background: #4ea43b;
}

/* FOOTER (não presente no HTML fornecido, mas mantido para uso futuro) */
footer {
    background: #5ba63a;
    padding: 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 13px 18px 10px 13px;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
}

.map-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-right: 2px;
}

.footer-title {
    font-size: 1.12em;
    font-weight: bold;
    color: #fff;
    letter-spacing: .5px;
}

.footer-subtitle {
    font-size: 0.95em;
    color: #eaf6d0;
}

.footer-icons {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-end;
}

.footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 0.98em;
    gap: 2px;
}

.footer-icon .icon {
    font-size: 1.3em;
    margin-bottom: 1px;
}
















/* RESPONSIVO */
@media (max-width: 480px) {
    .container {
        max-width: 100vw;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-icons {
        gap: 14px;
    }
}