﻿@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --primary: #00483d;
    --secondary: #228b22;
    --light: #f8f9fa;
    --dark: #212529;
    --whatsapp: #25D366;
    --radius: 12px;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #f9fafb;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease-in-out;
}
    a:hover {
        color: var(--secondary);
    }

::selection {
    background-color: var(--primary);
    color: #fff;
}

#linha-superior {
    margin: 0 auto;
    width: max-content;
    overflow: hidden;
    padding: 5px 15px;
    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-bottomleft: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

    #linha-superior a {
        display: inline-block;
        color: #fff;
        padding: 0 5px;
        transition: opacity 0.2s;
    }

    #linha-superior a:hover {
        opacity: 0.75;
        color: #fff;
    }

    #linha-superior .logo {
        width: 80px;
    }


.blinkme {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    10% {
        opacity: 0;
    }

    60% {
        opacity: 100;
    }

    100% {
        opacity: 100;
    }
}

.busca-topo {
    display: inline-block;
    position: relative;
    width: 98%;
}

    .busca-topo #texto-busca {
        height: 50px;
        background-color: var(--light);
        border: 1px solid gainsboro;
        border-radius: 25px;
        padding-left: 20px;
        width: 80%;
        transition: all 0.3s ease;
    }

    .busca-topo #texto-busca:focus {
        outline: none;
        border-color: var(--secondary);
        box-shadow: var(--shadow);
    }

    .busca-topo #buscar {
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 25px;
        background-color: var(--secondary);
        color: #fff;
        margin-left: -50px;
        transition: transform 0.2s;
    }

    .busca-topo #buscar:hover {
        transform: scale(1.1);
    }

.area-restrita {
}

    .area-restrita a {
        color: var(--dark);
        text-decoration: none;
        font-weight: 600;
    }

#menu {
    background-color: var(--primary);
    box-shadow: var(--shadow);
}

    #menu .nav-item .nav-link {
        color: #fff;
        font-weight: 600;
        font-size: 17px;
        padding: 10px 20px;
        transition: opacity 0.2s;
        letter-spacing: 0.3px;
    }

    #menu .nav-item .nav-link:hover {
        opacity: 0.8;
    }


.imagem-responsiva {
    width: 100%;
    position: relative;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
}

    .imagem-responsiva div, .imagem-responsiva img, .imagem-responsiva iframe {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .imagem-responsiva img, .imagem-responsiva iframe {
        object-fit: cover;
    }

    .imagem-responsiva.imagem-1x1 {
        padding-bottom: 100%;
    }

    .imagem-responsiva.imagem-3x4 {
        padding-bottom: 133.3%;
    }

    .imagem-responsiva.imagem-4x3 {
        padding-bottom: 75%;
    }

    .imagem-responsiva.imagem-16x9 {
        padding-bottom: 56.25%;
    }

    .imagem-responsiva.imagem-9x16 {
        padding-bottom: 177%;
    }

    .imagem-responsiva.imagem-21x9 {
        padding-bottom: 42.86%;
    }


    .imagem-responsiva.imagem-centraliza {
        background-position: center;
    }

    .imagem-responsiva.imagem-redonda {
        border-radius: 50%;
        overflow: hidden;
    }

    .imagem-responsiva.imagem-lote-home {
        padding-bottom: 63.75%;
    }

.fit-contain {
    object-fit: contain !important;
}

.fit-cover {
    object-fit: cover !important;
}

.carousel-setas {
}

    .carousel-setas .carousel-control-next, .carousel-setas .carousel-control-prev {
        opacity: .8;
    }


    .carousel-setas .carousel-control-next-icon, .carousel-setas .carousel-control-prev-icon {
        background-color: #253d5f;
        background-size: 70%;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
    }


.menu-final {
    background-color: var(--primary);
    box-shadow: var(--shadow);
    padding: 4px 0;
}

    .menu-final a {
        transition: opacity 0.2s;
    }

    .menu-final a:hover {
        opacity: 0.75;
        color: #fff;
    }

.titulo-padrao {
    position: relative;
    background-color: var(--primary);
    color: #fff;
    padding: 4px 30px 7.5px 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 35px;
    height: auto;
    display: inline-block;
    border-radius: 4px 0 0 4px;
    box-shadow: var(--shadow);
}

    .titulo-padrao:after {
        border-width: 0px 45px 54px 0px;
        border-color: transparent transparent var(--primary) transparent;
        right: -44.9px;
        content: " ";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        top: 0px;
    }

.campo-filtrar {
    position: relative;
}

    .campo-filtrar .campo {
        display: block;
        width: 100%;
        border: 1px solid silver;
        padding: 12px 15px 12px 45px;
        border-radius: var(--radius);
        transition: border-color 0.2s;
    }

    .campo-filtrar .campo:focus {
        outline: none;
        border-color: var(--secondary);
    }

    .campo-filtrar .filtrar {
        display: block;
        position: absolute;
        font-size: 20px;
        left: 10px;
        top: 10px;
    }

    .campo-filtrar .limpar {
        display: block;
        position: absolute;
        font-size: 20px;
        right: 15px;
        top: 10px;
    }

.breadcrumb-padrao {
    padding: 8px 0;
    background: transparent;
    font-size: 14px;
}

    .breadcrumb-padrao .breadcrumb-item a {
        color: var(--primary);
        font-weight: 500;
        transition: color 0.2s;
    }

    .breadcrumb-padrao .breadcrumb-item + .breadcrumb-item::before {
        color: #adb5bd;
    }

.ck-produto-carrinho {
    position: absolute;
    left: 5%;
    top: 5%;
    z-index: 9;
}


.genealogia {
    width: 100%;
    font-weight: bold;
    border-right: solid 1px silver;
}

    .genealogia .avoh {
        vertical-align: text-top;
    }

    .genealogia .avo {
        vertical-align: bottom;
    }

    .genealogia .braco {
        font-size: 70px;
        vertical-align: middle;
        font-weight: 100;
        padding-bottom: 5px;
    }

.dados-produto .informacao-produto {
}

    .dados-produto .informacao-produto span {
        font-weight: bold;
    }


.interno-2.titulo-padrao {
    margin-top: -65px;
    max-height: 53px;
}


.bx-pager-item {
    display: flex;
    align-items: center;
    height: 34px;
    flex: 0 25%;
    background-color: #9ed96a;
    position: relative;
}

    .bx-pager-item .bx-pager-link {
        flex: 1;
        padding-left: 16px;
    }

    .bx-pager-item .arrow {
        display: inline-block;
        padding: 9px;
        transform: translateY(15.5px) rotate(-45deg) skew(-15deg, -15deg) translateX(18px);
        background-color: #9ed96a;
    }

    .bx-pager-item.esquerda .arrow {
        position: relative;
        margin-left: -19px;
    }

.informaca-leilao {
    margin: 5px 0px;
}


    .informaca-leilao span {
        color: #000;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 1.3rem;
    }

    .informaca-leilao label {
        color: #808080;
        font-size: 1rem;
    }

        .informaca-leilao label i {
            display: inline-block;
            margin-right: 10px;
        }


.timer-regressivo {
    overflow: auto;
    display: block;
    text-align: center;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4766281512605042) 50%, rgba(0,0,0,0) 100%);
}

    .timer-regressivo .countdown-row {
        display: inline-block;
        overflow: auto;
        width: 100%;
        float: left;
    }

        .timer-regressivo .countdown-row .countdown-section {
            display: inline-block;
            text-align: center;
            /*  float: left;*/
            width: 75px;
            background-color: #fff;
            /* max-width: 22%;*/
            margin: 1%;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
        }

            .timer-regressivo .countdown-row .countdown-section + .countdown-section {
                margin-left: 2%;
            }

            .timer-regressivo .countdown-row .countdown-section .countdown-amount {
                display: block;
                text-align: center;
                font-weight: 800;
                font-size: 20px;
            }

            .timer-regressivo .countdown-row .countdown-section .countdown-period {
                display: block;
                text-align: center;
                text-transform: uppercase;
                font-size: 9.5px;
            }

.timer-lote {
    margin-bottom: inherit;
    bottom: inherit;
}

    .timer-lote.timer-regressivo {
        background: transparent !important;
    }

        .timer-lote.timer-regressivo .countdown-row {
            background-color: rgba(183, 183, 183, 7%);
        }

            .timer-lote.timer-regressivo .countdown-row .countdown-section {
                width: 60px !important;
            }

                .timer-lote.timer-regressivo .countdown-row .countdown-section .countdown-amount {
                    font-size: 19px !important;
                    font-weight: 600 !important;
                    line-height: 18px;
                    padding-top: 3px;
                }

                .timer-lote.timer-regressivo .countdown-row .countdown-section .countdown-period {
                    font-size: 8.5px !important;
                }

.timer-detalheslote {
    margin-bottom: inherit;
    bottom: inherit;
}

    .timer-detalheslote.timer-regressivo {
        background: transparent !important;
    }

        .timer-detalheslote.timer-regressivo .countdown-row {
            background-color: rgba(183, 183, 183, 7%);
        }

            .timer-detalheslote.timer-regressivo .countdown-row .countdown-section {
                /*width: 60px !important;*/
            }

                .timer-detalheslote.timer-regressivo .countdown-row .countdown-section .countdown-amount {
                    font-size: 25px !important;
                    font-weight: 600 !important;
                    line-height: 18px;
                    padding-top: 10px;
                }

                .timer-detalheslote.timer-regressivo .countdown-row .countdown-section .countdown-period {
                    /* font-size: 8.5px !important;*/
                    padding-top: 5px;
                }


.lote-popover.popover {
    border-radius: 15px;
    overflow: hidden;
    max-width: inherit;
}

.lote-popover .popover-body {
    padding: 0;
}


.leilao-lote {
    color: var(--dark);
    display: block;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border: 1px solid rgba(0,0,0,0.05);
}

    .leilao-lote:hover {
        color: var(--dark);
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

    .leilao-lote h4 {
        font-size: 16px;
        font-weight: 600;
    }

    .leilao-lote .texto-lance {
        display: block;
        font-size: 12px;
        font-weight: 600;
        line-height: 10px;
        color: #767676;
    }

    .leilao-lote .lote-habilitese {
        border-radius: 50rem;
        text-align: center;
        font-size: .875em;
        background-color: rgba(13, 202,240, 11%);
        display: none;
        border: solid 1px #0dcaf0;
        margin-top: 10px;
    }

    .leilao-lote .vencedor-atual {
        font-weight: 500;
        font-size: 12px;
        color: #767676;
    }

    .leilao-lote .lance-atual {
        font-size: 20px;
    }

    .leilao-lote .progress-lote {
        height: 5px;
    }

        .leilao-lote .progress-lote .progress-bar-striped {
            background-image: linear-gradient( 45deg,rgba(255,255,255,0.9) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.9) 50%,rgba(255,255,255,.9) 75%,transparent 75%,transparent);
        }


    .leilao-lote .alert {
        padding: 2px 0px !important;
        text-align: center;
    }


    .leilao-lote .lote-arrematado-imagem {
        position: absolute;
    }


.habilitese-grande {
    position: relative;
    padding: 12px 20px;
    text-align: center;
    border: none;
    display: block;
    border-radius: 30px;
    background-color: #e57400;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 10px rgba(229, 116, 0, 0.3);
    transition: all 0.2s ease;
}

    .habilitese-grande:hover {
        color: #fff;
        transform: scale(1.02);
        background-color: #dc6f00;
        box-shadow: 0 6px 15px rgba(229, 116, 0, 0.4);
    }

    .habilitese-grande:before {
        content: 'Situação do seu cadastro:';
        font-weight: 400;
        font-size: 11px;
        display: block;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }


.botao-lance {
    display: block;
    border: none;
    text-align: center;
    background-color: orange;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(255, 165, 0, 0.2);
    transition: all .2s ease-in;
}

    .botao-lance:hover {
        background-color: #ef6c00;
        transform: translateY(-1px);
    }

.botao-compra {
    background-color: #d32f2f;
}

    .botao-compra:hover {
        background-color: #b71c1c;
    }

#dados-lance-atual {
}


.dados-lance-lote strong {
    font-weight: 600;
    letter-spacing: -.6px;
    color: #546e7a;
}

.dados-lance-lote .lanceAtual {
    color: var(--secondary);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
}

.dados-lance-lote .apelidoVencedor {
    color: #d84315;
    font-weight: 500;
    letter-spacing: -1px;
}

.dados-lance-lote #dar-lance-box {
    color: #4caf50;
    font-weight: 600;
    letter-spacing: -1px;
}


.box-comprar-agora {
}

    .box-comprar-agora .titulo {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .box-comprar-agora .proximoLance {
        color: var(--secondary);
        font-weight: 700;
        font-size: 32px;
        letter-spacing: -1px;
    }

    .box-comprar-agora .proximoLanceQuantidade {
        color: dimgrey;
    }

        .box-comprar-agora .proximoLanceQuantidade .mquantidade {
            color: #546e7a;
            display: block;
            font-weight: 500;
            letter-spacing: 0px;
        }

        .box-comprar-agora .proximoLanceQuantidade .mtotal {
            display: block;
        }

            .box-comprar-agora .proximoLanceQuantidade .mtotal strong {
                font-size: 22px;
                color: var(--secondary);
            }


.menu-curto {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

    .menu-curto li {
        padding: 0;
        margin: 0;
        display: inline-block;
    }

        .menu-curto li a {
            display: inline-block;
            border: 2px solid var(--secondary);
            padding: 6px 18px;
            border-radius: 20px;
            color: var(--secondary);
            font-weight: 600;
            transition: all 0.2s;
        }

        .menu-curto li a:hover {
            background-color: var(--secondary);
            color: #fff;
        }

        .menu-curto li + li {
            margin-left: 10px;
        }


        .menu-curto li:last-child a {
            border-color: #d32f2f;
            color: #d32f2f;
        }

        .menu-curto li:last-child a:hover {
            background-color: #d32f2f;
            color: #fff;
        }

.jumbotron {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.linha-touro {
    background-position: center right;
    background-size: cover;
    background-image: url('/imagens/touro-do-dia-fundo.gif');
    position: relative;
}

.touro-do-dia {
    color: #fff;
}

    .touro-do-dia .valor-antigo {
        background-color: #082961;
        box-shadow: var(--shadow);
        z-index: 1;
        position: relative;
    }

        .touro-do-dia .valor-antigo small {
            font-size: 17px;
            font-weight: 400;
        }

        .touro-do-dia .valor-antigo span {
            display: inline-block;
            position: relative;
        }

            .touro-do-dia .valor-antigo span:after {
                content: ' ';
                width: 100%;
                height: 5px;
                background-color: red;
                position: absolute;
                left: 0;
                top: 50%;
            }


    .touro-do-dia .valor-novo {
        background-color: var(--secondary);
        z-index: 0;
        margin-top: -1rem !important;
        position: relative;
    }


        .touro-do-dia .valor-novo small {
            font-size: 17px;
            font-weight: 400;
        }

    .touro-do-dia .imagem-touro {
        box-shadow: var(--shadow-hover);
    }

    .touro-do-dia .linha-logo {
        height: 50px;
        overflow-y: visible;
    }

    .touro-do-dia .linha-grama {
        margin-top: -25px;
        z-index: 10;
        position: relative;
    }

.btn-whatsapp {
    border: 1px solid var(--whatsapp);
    background-color: #fff;
    border-radius: 30px;
    color: var(--whatsapp);
    padding: 6px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.bloco-atendimento {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

    .bloco-atendimento .btn-whatsapp {
        margin-bottom: 0;
    }

    .btn-whatsapp:hover {
        background-color: var(--whatsapp);
        color: #fff;
        box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    }


    .btn-whatsapp i {
        display: inline-block;
    }

    .btn-whatsapp span {
        display: inline-block;
    }


.fazenda-home {
    position: relative;
    padding-bottom: 50%;
    display: block;
    -webkit-transition: all .1s ease-in;
    -moz-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    -ms-transition: all .1s ease-in;
    transition: all .1s ease-in;
}

    .fazenda-home:hover {
        color: #000;
    }


        .fazenda-home:hover .fazenda-home-box {
            padding: 3%;
        }

            .fazenda-home:hover .fazenda-home-box .fazenda-home-interno {
                background-color: rgba(255, 255, 248, 90%);
                padding: 9%;
            }

    .fazenda-home .fazenda-home-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 6%;
        -webkit-transition: all .1s ease-in;
        -moz-transition: all .1s ease-in;
        -o-transition: all .1s ease-in;
        -ms-transition: all .1s ease-in;
        transition: all .1s ease-in;
    }

        .fazenda-home .fazenda-home-box .fazenda-home-interno {
            background-color: rgba(255, 255, 248, 85%);
            position: relative;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            padding: 6%;
            -webkit-transition: all .1s ease-in;
            -moz-transition: all .1s ease-in;
            -o-transition: all .1s ease-in;
            -ms-transition: all .1s ease-in;
            transition: all .1s ease-in;
        }


            .fazenda-home .fazenda-home-box .fazenda-home-interno .testeira {
                background-color: forestgreen;
                padding: 3px 12px;
                position: relative;
                margin: auto;
                display: inline-block;
                left: 50%;
                transform: translateX(-50%);
                color: #fff;
                font-weight: 500;
                margin-bottom: 5px;
            }

            .fazenda-home .fazenda-home-box .fazenda-home-interno .flutua {
                top: 50%;
                transform: translateY(-50%);
                position: relative;
            }

.lista-filtros {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .lista-filtros li {
        display: inline-block;
        font-weight: bold;
    }

        .lista-filtros li + li {
            margin-left: 15px;
        }

        .lista-filtros li input {
            margin-right: 3px;
        }

.zi-0 {
    z-index: 0;
}

.zi-1 {
    z-index: 1;
}

.zi-2 {
    z-index: 2;
}


@media (min-width: 576px) {
    .touro-do-dia .linha-grama {
        margin-top: -32px;
    }
}

@media (min-width: 768px) {
    .touro-do-dia-logo {
        margin-top: -35px;
    }

    .linha-touro {
        margin-left: -70px;
        padding-left: 15px;
        z-index: 1;
        position: relative;
    }
}

@media (min-width: 992px) {
    .touro-do-dia-logo {
        margin-top: -70px;
    }

    .linha-touro {
        margin-left: -100px;
        padding-left: 100px;
    }


    .touro-do-dia .linha-grama {
        margin-top: -30px;
    }

    .linha-botoes-pdf {
        position: relative;
        margin-bottom: -70px;
        z-index: 5;
    }
}


.compartilhamento {
    display: block;
    position: relative;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    .compartilhamento:after {
        content: ' ';
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        top: 50%;
        background-color: #e0e0e0;
        margin-top: -1px;
    }


    .compartilhamento a {
        display: inline-block;
        position: relative;
        background-color: #fff;
        z-index: 1;
        width: 50px;
        height: 50px;
        border: solid 2px #e0e0e0;
        padding-top: 3px;
        border-radius: 50%;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .compartilhamento a:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .compartilhamento a i {
            width: 40px;
            height: 40px;
            background-color: #0b3b61;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            text-align: center;
            padding-top: 10px;
        }

            .compartilhamento a i.fa-whatsapp {
                background-color: #25D366;
            }

            .compartilhamento a i.fa-telegram-plane {
                background-color: #0088cc;
            }

            .compartilhamento a i.fa-twitter {
                background-color: #1DA1F2;
            }

            .compartilhamento a i.fa-facebook-f {
                background-color: #4267B2;
            }


@media (min-width: 1200px) {
    .touro-do-dia-logo {
        margin-top: -70px;
    }



    .touro-do-dia .linha-grama {
        margin-top: -70px;
    }
}

@media (min-width: 1400px) {
    .touro-do-dia-logo {
        margin-top: -100px;
    }
}


@media (max-width: 575.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
    .touro-do-dia .linha-logo {
        height: inherit;
    }

    #abre-carrinho {
        position: fixed;
        bottom: 10%;
        right: 10%;
        background-color: #fff;
        width: 236px;
        border: solid 2px;
        border-radius: 20px;
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.19);
        -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.19);
        box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.19);
    }
}

@media (max-width: 1199.98px) {
    .interno-2.titulo-padrao {
        margin-top: inherit;
    }
}

@media (max-width: 1399.98px) {
}

/* ============================================================
   Modernização de layout — melhorias gerais
   ============================================================ */

/* Footer com fundo levemente diferenciado */
#footer {
    background-color: #f1f3f5;
    border-top: 3px solid var(--primary);
    margin-top: 2rem;
}

/* Formulário de contato */
.formulario {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

    .formulario h3 {
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    .formulario .form-group {
        margin-bottom: 1rem;
    }

/* Inputs com foco na cor da marca */
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.18);
}

/* Cards gerais */
.card {
    border-color: var(--border-color);
    border-radius: var(--radius);
}

/* Item de leilão na listagem */
.item-leilao {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .item-leilao:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

    .item-leilao img {
        border-radius: var(--radius);
    }

/* Logos no rodapé com transição suave */
#footer img {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#footer img:hover {
    opacity: 0.85;
    transform: scale(1.04);
}
