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;
}

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

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

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

.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;
}

/* section */

section {
  background-color: white;
  border-radius: 15px 15px 15px 15px;
  border: solid 2px #060606fe;
  margin: 0 10%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10%;
}

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);
}

.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;
}
