/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    line-height: 1.6;
    font-family: 'Aileron_Regular', sans-serif;
    font-weight: 500;
    color: var(--cor-primaria);
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    margin-bottom: 15px;
    font-family: 'Aileron_Bold', sans-serif;
}

p {
    margin-bottom: 20px;
}

a {
    color: #FFFFFF;
}

:root {
    --cor-primaria: #461907;
    --cor-secundaria: #add249;
    -cor-terciaria: #f1f1f1;
    --padding-pequeno: 50px;
    --padding-medio: 100px;
    --padding-grande: 150px;
}

.espacamento-pequeno {
    padding: var(--padding-pequeno) 0;
}

.espacamento-medio {
    padding: var(--padding-medio) 0;
}

.espacamento-grande {
    padding: var(--padding-grande) 0;
}


/* Header */

.logo {
    position: absolute;
    z-index: 999;
}

.logo img {
    display: block;
    width: 300px;
}

.banner {
    position: relative;
    top: 0;
    width: 100%;
    height: 550px;
    background-image: url('../images/banner-fachada.png');
    background-repeat: no-repeat;
    background-position: right;
    background-color: #f1f1f1;
    z-index: 1;

    & .detalhe-fachada {

    }

    & .detalhe-gato {
        position: relative;
        width: 100%;
        height: 550px;
        overflow: hidden;

        & img {
            width: 80%;
            pointer-events: none;
            position: relative;
            top: 30px;
        }
    }

    & .bloco-texto {
        padding-top: 200px;

        & h1 {
            font-size: 60px;
            font-weight: bold;
            line-height: 60px;
            color: var(--cor-secundaria);
        }

        & p {
            color: var(--cor-primaria);
            font-size: 20px;
            font-weight: 500;
            line-height: 22px;
        }
    }
}

.porque-escolher {
    padding: var(--padding-medio) 0;
    overflow: hidden;

    & .btn-whatsapp {
        width: 450px;
        height: 50px;
        transform: scale(1);
        transition: 0.5s ease;

        & img {
            width: 100%;
            object-fit: cover;
        }
    }

    & .btn-whatsapp:hover {
        transform: scale(1.05);
        transition: 0.5s ease;
    }

    & .bloco-texto {


        & h2 {
            font-size: 60px;
            font-weight: bold;
            line-height: 60px;
            color: var(--cor-primaria);
        }

        & p {
            color: var(--cor-primaria);
            font-size: 16px;
            font-weight: 500;
            line-height: 20px;
        }

        & .chegar {
            display: flex;
            gap: 20px;
            align-items: center;

            & a {
                color: var(--cor-secundaria);
                font-weight: bold;
                font-size: 20px;
            }

            & img {
                width: 40px;
            }
        }

    }

    & .image-empresario img {
        width: 100%;
        object-fit: cover;
    }

    & .image-loja img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    & .lista-racao {
        padding: 20px 0px 20px 0px;


        & .lista {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        & img {
            width: 40px;
            object-fit: contain;

            & .lista {
                display: flex;
            }
        }
    }

    & .destaque-verde {
        color: var(--cor-secundaria);
        font-size: 40px;
        font-weight: bold;
        line-height: 40px;
        text-align: center;
        padding-top: 50px;
    }

    & .clientes {
        padding-top: 50px;
        display: flex;
        gap: 20px;
        align-items: center;

        & img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
        }
    }
}

.contato {
    padding-bottom: 100px;

    .gato-contato {
        & img {
            width: 100%;
            padding-top: 50px;
        }
    }

    & form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        border-radius: 8px;
        padding-top: 100px;

        & h3 {
            color: var(--cor-primaria);
            font-weight: bold;
            font-size: 30px;
        }

        & .form-control {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            font-size: 16px;
            box-sizing: border-box;
            border: 2px solid var(--cor-primaria);
            border-radius: 10px;
            display: flex;
            justify-content: end;
        }

        &.form-control:focus {
            outline: none;
            border: none;
        }

        & .btn-primary {
            background-color: var(--cor-primaria);
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;

        }

        & .btn-primary:hover {
            background: #5c2411;
        }

        & .botao {
            width: 100%;
            display: flex;
            justify-content: end;
        }
    }
}

.porque {
    padding-top: var(--padding-medio) 0;
}

footer {
    & .circulo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--cor-secundaria);
        display: flex;
        justify-content: center;
        align-items: center;

        & img {
            width: 25px;
            height: 25px;

        }
    }
}

.banner-mobile {
    display: none;
}

.espacamento {
    padding: var(--padding-medio) 0;
}

/* Responsivo */


@media (max-width: 1200px) {
    .banner {
        display: none;

    }
.logo {
    display: flex;
    width: 100%;
    justify-content: center;
}
    .logo img {
        width: 250px;
        position: relative;
        left: -15px;
    }

    .banner-mobile {
        display: block;
        background-image: url('../images/banner.png');
        background-repeat: no-repeat;
        background-position: bottom;
        width: 100%;
        height: 700px;
        background-color: #f1f1f1;

        & .bloco-texto {
            padding-top: 180px;

            & h1 {
                color: var(--cor-secundaria);
                font-weight: bold;
                font-size: 35px;
                line-height: 35px;
            }

            & p {
                color: var(--cor-primaria);

            }
        }
    }

    .porque-escolher {
        padding: var(--padding-pequeno) 0;
    }

    .porque {
        padding-top: var(--padding-pequeno) 0;
    }

    .espacamento {
        padding: var(--padding-pequeno) 0;
    }

    .revert-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    iframe {
        padding-bottom: 50px;
    }

    .rvt-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .rvt-mobile .bloco-texto {
        padding-bottom: 30px;
    }

    .btn-whatsapp img {
        width: 100%;
    }

    .gato-contato {
        & img {
            width: 100%;

        }
    }

    .footer {
        flex-direction: column;
    }

    body {
        text-align: center;
    }

    .chegar {
        justify-content: center;
    }

    .detalhe-gato {
        & img {
            display: none;
        }
    }

    .contato {
        padding-bottom: 50px;
    }

    .contato form {
        padding: 0;
        padding-top: 50px;
    }

    .bloco-texto h1 {
        font-size: 45px !important;
        line-height: 45px !important;
    }

    .bloco-texto h2 {
        font-size: 40px !important;
        line-height: 40px !important;
    }
    .porque-escolher .lista-racao .lista {
        display: block;
    }
}
#resposta {
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

#resposta.success {
    background-color: #28a745;
    color: white;
    border: 1px solid #218838;
}

#resposta.error {
    background-color: #dc3545;
    color: white;
    border: 1px solid #c82333;
}
