body {
    margin: 0;
    background-color: #1a1a1a;
    padding-top: 120px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    z-index: -1;
    background: radial-gradient(circle at center,
            #ffc000 0%,
            #ff9933 25%,
            #ff6b4a 50%,
            #be3626 75%,
            #be3626 100%);
    background-size: 200% 200%;
    animation: pulseGradient 15s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes pulseGradient {
    0% {
        background-position: 0% 0%;

    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

:root {
    --site-font: 'Franklin Gothic', sans-serif;
}

* {
    font-family: var(--site-font) !important;
}

footer {
    margin-top: 10%;
    position: relative;
    width: 100%;
    bottom: 0;
    background-color: #be3626;
    color: #fff;
    padding: 20px 0 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.07);

}

.navbar-brand img {
    height: 60px;
}

.navbar-brand:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}

.footer hr {
    border: 1px solid #333;
    margin: 10px 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer .devs h5,
.footer .footercotaprice h5,
.footer .precisadeajuda h5,
.footer .DESTAQUES h5,
.footer .socialmedia h5,
.footer .footer-bottom .rede h5 {
    color: #ffc400;
}

.footer .devs p,
.footer .footercotaprice p,
.footer .footer-bottom .rede p {
    color: #fff;
    margin: 0;
}

.footer .DESTAQUES p {
    color: #fff;
    margin: 0;
    padding: 2px 0;
    text-align: center;
}

.footer .DESTAQUES p:hover {
    color: #85d121;
    cursor: pointer;
    transition: 0.5s;
}

.footer .socialmedia .social-icons {
    margin-top: 10px;
}

.footer .precisadeajuda .botao input {
    background-color: #ef5124 !important;
    border-color: #be3626 !important;
    color: #fff !important;
}

.footer .socialmedia .social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer .socialmedia .social-icons a:hover {
    color: #ffc400;
}


.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    background-color: #be3626 !important;
    border-radius: 15px 15px 0 0;
}

.navbar-nav .nav-link {
    font-size: 1.1em;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff !important;
    border-radius: 8px;
    transition: background 0.2s;
    padding: 8px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: #ef5124;
    color: #fff !important;
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link svg {
    fill: #fff !important;
    color: #fff !important;
}

.dropdown-menu {
    background-color: #be3626 !important;
    border-radius: 10px;
    margin-top: 8px;
}

.dropdown-menu .dropdown-item {
    color: #fff;
    font-size: 1em;
    border-radius: 6px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #ef5124 !important;
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-nav {
        align-items: center;
        text-align: center;
    }

    .navbar-collapse {
        background: #ef5124;
        border-radius: 0 0 15px 15px;
        padding-bottom: 10px;
    }
}

.categorias .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2em;
    padding: 8px 16px;
    height: 48px;
}

.btn-secondary {
    background-color: #ef5124 !important;
    border-color: #be3626 !important;
    color: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span {
    font-family: var(--site-font) !important;
}

section {
    background-color: white;
    border-radius: 15px 15px 15px 15px;
    padding: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.containerformcontato {
    max-width: 900px;
    width: 90%;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center !important;
    align-content: center;
    align-items: center;

}

.containerformcontato h1 {
    color: #be3626;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 20px;
}

.containerformcontato form .form-control:focus {
    border-color: #be3626;
    box-shadow: 0 0 5px rgba(190, 54, 38, 0.5);
}

.containerformcontato form .btn-primary {
    background-color: #ef5124;
    border-color: #be3626;
}

.containerformcontato form .btn-primary:hover {
    background-color: #be3626;
    border-color: #ef5124;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.alert-danger {
    background-color: #ffcccc;
    color: #990000;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: bold;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: relative;
}

.alert-danger.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.alert-danger.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

.alert-danger.d-none {
    display: none;
}

.alert-danger p {
    margin: 0;
    font-size: 3;
}

.alert-success {
    background-color: #69e665;
    color: #037e13;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: bold;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: relative;
}

.alert-success.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.alert-success.fade-out {
    animation: fadeOut 0.5s ease-in-out forwards;
}

.alert-sucess d-none {
    display: none;
}

.alert-success p {
    margin: 0;
    font-size: 3;
}