/* =========================================================
   STYLE.CSS LIMPO — EDER MAIA BARBEARIA
   Paleta premium: preto / grafite / dourado
   ========================================================= */

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: #ffffff;
  --cream: #ffffff;
  --text: #151515;
  --muted: #6f6f6f;
  --white: #ffffff;

  --gold: #dcdcdc; /* cinza claro */
  --gold-dark: #dadada; /* cinza médio */
  --gold-soft: #ffffff; /* branco */

  --border-gold: rgba(209, 180, 114, 0.28);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.35);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --transition: all 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  margin: 0;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}

.btn,
.btn:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

/* TÍTULOS */

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-weight: 800;
  color: #121212;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.heading_container h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-soft)
  );
}

.heading_container.heading_center h2::after {
  margin-left: auto;
  margin-right: auto;
}

.heading_container p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-kicker,
.hero-kicker,
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff; /* preto */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-kicker::before,
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #111, #ffffff, #e5e5e5);
}

.card-tag {
  margin-bottom: 8px;
  font-size: 10px;
  color: var(--gold-dark);
}

/* HEADER / HERO */

.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
  background: var(--bg);
}

.hero_area .hero_bg_box {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
  transition: transform 0.7s ease;
  will-change: transform;
}

.hero_area:hover .hero_bg_box img {
  transform: scale(1.06);
}

.hero_area .hero_bg_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(209, 180, 114, 0.18),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.76) 45%,
      rgba(0, 0, 0, 0.42) 100%
    );
  z-index: 1;
}

.header_section {
  position: relative;
  z-index: 5;
  padding: 18px 0;
}

.header_section .container-fluid {
  padding-right: 30px;
  padding-left: 30px;
}

.custom_nav-container {
  padding: 10px 18px;
  border: 1px solid rgba(209, 180, 114, 0.22);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.logo-header {
  width: 138px;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.navbar-brand {
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--gold);
}

.navbar-brand:hover {
  color: var(--white);
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 9px 17px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  text-transform: uppercase;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: var(--transition);
}

.custom_nav-container .navbar-nav .nav-item .nav-link i {
  margin-right: 5px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link,
.nav-login {
  color: #111 !important;
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--gold),
    var(--gold-dark)
  );
  font-weight: 800;
}

.nav-icon {
  font-size: 17px !important;
}

.nav-icon.whatsapp {
  color: var(--gold) !important;
  background: transparent !important;
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 38px;
  height: 42px;
  transition: var(--transition);
  border: 0;
}

.custom_nav-container .navbar-toggler span,
.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  display: block;
  width: 35px;
  height: 3px;
  background-color: var(--white);
  border-radius: 99px;
  transition: var(--transition);
  position: relative;
}

.custom_nav-container .navbar-toggler span {
  margin: 7px 0;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
}

.custom_nav-container .navbar-toggler span::before {
  top: -10px;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* SLIDER */

.slider_section {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 55px;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  max-width: 650px;
  color: var(--white);
}

.hero-content {
  max-width: 620px;
}

.hero-logo-box {
  width: 360px;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo-box img {
  width: 100%;
  height: auto;
  display: block;
}

.slider_section .detail-box h1 {
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -2px;
  line-height: 1.05;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.slider_section .detail-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 30px;
}

.slider_section .detail-box a,
.btn-box2 a,
.botao_editar a,
.product_section .box .detail-box a,
.product_section .btn-box a,
.about_section .detail-box a,
.contact_section .form_container button,
.footer_section .footer_form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 34px;
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--gold),
    var(--gold-dark)
  );
  color: #171717;
  border-radius: 999px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(114, 79, 33, 0.38);
}

.slider_section .detail-box a:hover,
.btn-box2 a:hover,
.botao_editar a:hover,
.product_section .box .detail-box a:hover,
.product_section .btn-box a:hover,
.about_section .detail-box a:hover,
.contact_section .form_container button:hover,
.footer_section .footer_form button:hover {
  transform: translateY(-3px);
  color: #111;
  box-shadow: 0 20px 45px rgba(114, 79, 33, 0.48);
  filter: brightness(1.05);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-actions a {
  min-width: 190px;
}

.btn-outline-gold {
  color: #111 !important; /* deixa o texto preto */
  border: 1px solid rgba(209, 180, 114, 0.6);
  background: rgba(0, 0, 0, 0.34);
}

.btn-outline-gold:hover {
  color: #111 !important;
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--gold),
    var(--gold-dark)
  );
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-trust div {
  padding: 16px;
  border: 1px solid rgba(209, 180, 114, 0.25);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.hero-trust strong {
  display: block;
  color: var(--gold-soft);
  font-size: 14px;
  margin-bottom: 3px;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.slider_section .carousel_btn-box {
  display: flex;
  margin: 50px auto 0 auto;
}

.slider_section .carousel_btn-box a {
  position: unset;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  opacity: 1;
  color: var(--white);
  font-size: 14px;
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 5px;
  border: 1px solid rgba(209, 180, 114, 0.28);
}

.slider_section .carousel_btn-box a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
}

/* SERVIÇOS / PRODUTOS */

.product_section,
.services_section,
.products_showcase,
.contact_section,
.client_section {
  background:
    radial-gradient(
      circle at top left,
      rgba(209, 180, 114, 0.12),
      transparent 28%
    ),
    var(--cream);
}

.product_section .heading_container {
  margin-bottom: 42px;
}

.product_container {
  max-width: 1180px;
  margin: 0 auto;
}

.product_section .box {
  height: 100%;
  min-height: 390px;
  color: var(--text);
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  max-width: 300px;
  margin: 18px auto;
  border: 1px solid rgba(209, 180, 114, 0.22);
  overflow: hidden;
}

.product_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.17);
}

.product_section .box .img-box {
  height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
}

.product_section .box .img-box img {
  width: 100%;
  height: 100%;
  max-height: unset;
  border-radius: 22px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product_section .box:hover .img-box img {
  transform: scale(1.08);
}

.product_section .box .detail-box {
  padding: 18px 8px 4px;
}

.product_section .box .detail-box h4,
.product_section .box .detail-box h5 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
  color: #151515;
}

.product_section .box .detail-box .new_price {
  font-weight: 900;
  font-size: 18px;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: block;
}

.product_section .box .detail-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
  min-height: 60px;
}

.product_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  padding: 14px 44px;
  font-size: 15px;
}

.product_section .owl-carousel {
  position: relative;
}

.product_section .owl-carousel .owl-nav,
.product_section .owl-carousel .owl-dots {
  display: none !important;
}

/* SOBRE */

.about_section {
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(209, 180, 114, 0.12),
      transparent 28%
    ),
    linear-gradient(135deg, #101010 0%, #1b1b1b 100%);
  color: var(--white);
  padding: 90px 0;
}

.about_section .row {
  display: flex;
  align-items: center;
}

.about_section .img-box {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-dark);
}

.about_section .img-box img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about_section .img-box:hover img {
  transform: scale(1.05);
}

.about_section .detail-box {
  padding: 35px 15px 35px 45px;
  max-width: 610px;
}

.about_section .heading_container h2 {
  color: var(--white);
}

.about_section .detail-box p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.9;
}

.about_section .detail-box a {
  margin-top: 28px;
}

.about-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.about-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.about-highlights i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--gold),
    var(--gold-dark)
  );
  color: #111;
  font-size: 12px;
}

/* CONTATO */

.contact_section {
  position: relative;
  padding: 90px 0;
  color: var(--text);
}

.contact_section .heading_container {
  margin-bottom: 35px;
}

.contact_section .form_container {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card {
  height: 100%;
}

.contact_section .form_container input,
.contact_section .form_container textarea.message-box {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.07);
  height: 54px;
  margin-bottom: 18px;
  padding: 0 20px;
  background-color: #c5c3bd;
  outline: none;
  color: #222;
  border-radius: 16px;
  font-size: 15px;
  transition: var(--transition);
  resize: none;
}

.contact_section .form_container textarea.message-box {
  height: 135px;
  padding-top: 16px;
}

.contact_section .form_container input::placeholder,
.contact_section .form_container textarea::placeholder {
  color: #8b8b8b;
}

.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus {
  background-color: #fff;
  border-color: rgba(209, 180, 114, 0.9);
  box-shadow: 0 0 0 4px rgba(209, 180, 114, 0.18);
}

.contact_section .form_container button {
  width: auto;
  min-width: 180px;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.contact_section .map_container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #fff;
  margin-top: 0;
}

.contact_section .map_container iframe,
.contact_section .map_container #googleMap {
  height: 100% !important;
  width: 100% !important;
  border: 0;
}

/* DEPOIMENTOS */

.client_section {
  padding-top: 80px;
}

.client_section .heading_container h2 {
  color: #111;
}

.client_section .client_container {
  margin-top: 45px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 35px 12px 15px;
}

.client_section .box .img-box {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: -42px;
  margin-left: 28px;
  z-index: 2;
}

.client_section .box .img-box img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--gold);
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.client_section .box .detail-box {
  min-height: 190px;
  border: 1px solid rgba(114, 79, 33, 0.18);
  padding: 62px 25px 25px;
  margin-bottom: 25px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.client_section .box .detail-box h5 {
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.client_section .box .detail-box p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}

.client_section .carousel-wrap .active + .active .box {
  margin-top: 35px;
}

.client_section .owl-carousel .owl-nav {
  margin-top: 20px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 48px;
  height: 48px;
  margin: 20px 8px 0 0;
  outline: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border-radius: 50%;
  color: #111 !important;
  box-shadow: 0 14px 30px rgba(114, 79, 33, 0.28);
  transition: var(--transition);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  transform: translateY(-3px);
}

.btn-box2,
.botao_editar {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.btn-box2 a {
  min-width: 220px;
  text-align: center;
}

/* MODAL */

.modal-premium {
  border: 1px solid rgba(209, 180, 114, 0.28);
  border-radius: 24px;
  overflow: hidden;
}

.modal-premium .modal-header {
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(209, 180, 114, 0.28);
}

.btn-modal-gold {
  background: linear-gradient(
    135deg,
    var(--gold-soft),
    var(--gold),
    var(--gold-dark)
  ) !important;
  border: 0 !important;
  color: #111 !important;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 28px;
}

/* FOOTER */

.footer_section {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(209, 180, 114, 0.14),
      transparent 32%
    ),
    #080808;
  position: relative;
  color: var(--white);
}

.footer_section .footer_content {
  padding: 70px 0 22px;
}

.footer_section .footer-col {
  margin-bottom: 40px;
}

.footer_section h4 {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.7px;
}

.footer_section h4::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.footer_section .contact_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer_section .contact_nav a {
  flex: 1;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}

.footer_section .contact_nav a i {
  font-size: 21px;
  margin-right: 10px;
  color: var(--gold);
}

.footer_section .contact_nav a:hover {
  color: var(--gold);
}

.footer_section .social_box {
  display: flex;
  gap: 10px;
}

.footer_section .social_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(209, 180, 114, 0.45);
  color: var(--gold);
  font-size: 18px;
  margin-left: 0;
  transition: var(--transition);
}

.footer_section .social_box a:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer_section .footer_form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 48px;
  margin-bottom: 15px;
  padding-left: 18px;
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
  color: var(--white);
  border-radius: 14px;
}

.footer_section .footer_form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer_section .footer-info {
  background-color: #050505;
  border-top: 1px solid rgba(209, 180, 114, 0.15);
}

.footer_section .footer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer_section .footer-info p a {
  color: inherit;
}

.footer_section .footer-info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_section .footer-info-box p,
.footer_section .footer-info-box .social_box {
  margin: 15px 0;
}

.ocultar {
  display: none;
}

/* RESPONSIVO */

@media (max-width: 991px) {
  .layout_padding,
  .layout_padding-top,
  .layout_padding-bottom {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .header_section .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }

  .custom_nav-container {
    border-radius: 22px;
  }

  .custom_nav-container .navbar-collapse {
    padding-top: 15px;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    margin: 4px 0;
  }

  .slider_section {
    padding: 70px 0 45px;
  }

  .about_section .detail-box {
    padding: 35px 25px;
  }

  .about_section .img-box,
  .about_section .img-box img {
    min-height: 360px;
    border-radius: var(--radius-lg);
  }

  .contact_section .map_container {
    margin-top: 28px;
    height: 330px;
  }
}

@media (max-width: 768px) {
  .hero_area {
    min-height: auto;
  }

  .hero_area .hero_bg_box img {
    object-position: center;
  }

  .hero_area .hero_bg_box::before {
    background:
      radial-gradient(
        circle at 50% 20%,
        rgba(209, 180, 114, 0.2),
        transparent 34%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.86) 50%,
        rgba(0, 0, 0, 0.96) 100%
      );
  }

  .slider_section {
    text-align: center;
    padding: 34px 0 35px;
  }

  .slider_section .detail-box {
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-logo-box {
    width: 255px;
    margin: 0 auto 22px;
    margin-bottom: 70px;
  }

  .hero-kicker {
    justify-content: center;
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero-kicker::before {
    width: 24px;
  }

  .slider_section .detail-box h1 {
    font-size: 30px !important;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -1px;
  }

  .slider_section .detail-box p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 330px;
    margin: 24px auto 0;
  }

  .hero-actions a {
    width: 100%;
    min-width: 0;
    padding: 13px 18px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    max-width: 330px;
    margin: 22px auto 0;
    gap: 10px;
  }

  .hero-trust div {
    padding: 13px 16px;
    text-align: left;
  }

  .custom_nav-container {
    border-radius: 18px;
  }

  .logo-header {
    width: 105px;
  }

  .product_section .box {
    max-width: 100%;
    min-height: 360px;
  }

  .product_section .box .img-box {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
  }

  .product_section .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about_section {
    padding: 70px 15px;
  }

  .about_section .row {
    gap: 0;
  }

  .about_section .detail-box {
    padding: 35px 0 0;
    text-align: left;
  }

  .contact_section {
    padding: 70px 0;
  }

  .contact_section .form_container {
    padding: 22px;
  }

  .client_section {
    padding-top: 58px;
  }

  .client_section .heading_container {
    text-align: center;
    align-items: center;
  }

  .client_section .box {
    margin: 35px 0 10px;
  }

  .client_section .box .detail-box {
    min-height: auto;
    padding: 62px 20px 22px;
  }

  .footer_section .footer-info-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .layout_padding,
  .layout_padding-top,
  .layout_padding-bottom {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .navbar-brand {
    font-size: 18px;
  }

  .custom_nav-container {
    padding: 10px 14px;
  }

  .slider_section .detail-box h1 {
    font-size: 30px !important;
  }

  .slider_section .detail-box a,
  .product_section .box .detail-box a,
  .product_section .btn-box a,
  .about_section .detail-box a,
  .contact_section .form_container button,
  .btn-box2 a {
    width: 100%;
    padding: 14px 22px;
  }

  .product_section .box {
    border-radius: 22px;
    padding: 14px;
  }

  .product_section .box .img-box {
    height: 175px;
    border-radius: 18px;
  }

  .product_section .box .img-box img {
    border-radius: 18px;
  }

  .contact_section .map_container {
    height: 280px;
    border-width: 5px;
  }

  .client_section .box .img-box {
    margin-left: 22px;
  }
}

@media (max-width: 768px) {
  .product_section .box .img-box {
    height: 280px;
  }
}
.product_section .box .detail-box a {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  border-radius: 999px;

  /* 👇 TROQUE ISSO */
  background: linear-gradient(135deg, #ffffff, #fffefe, #ffffff);

  color: #111 !important;
  font-weight: 800;

  border: 1px solid #ffffff;
  overflow: hidden;
}

.product_section .box.service-card,
.product_section .box.product-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.product_section .box.service-card .img-box,
.product_section .box.product-card .img-box {
  height: 245px;
  border-radius: 22px;
  background: #111;
}

.product_section .box.service-card .detail-box,
.product_section .box.product-card .detail-box {
  padding: 22px 10px 6px;
}

.product_section .box .detail-box .card-tag {
  color: #777;
  letter-spacing: 2.5px;
}

.product_section .box .detail-box h4,
.product_section .box .detail-box h5 {
  font-size: 20px;
  color: #111;
  margin-bottom: 8px;
}

.product_section .box .detail-box .new_price {
  color: #111 !important;
  font-size: 18px;
  margin-bottom: 18px;
}

.product_section .box .detail-box a {
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  box-shadow: none !important;
}

.product_section .box .detail-box a:hover {
  background: #fff !important;
  color: #111 !important;
}
.contact_section .form_container {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}

/* INPUTS */
.contact_section .form_container input,
.contact_section .form_container textarea {
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  color: #111;
  border-radius: 14px;
  height: 52px;
  padding: 0 18px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.contact_section .form_container textarea {
  height: 120px;
  padding-top: 15px;
}

/* PLACEHOLDER */
.contact_section .form_container input::placeholder,
.contact_section .form_container textarea::placeholder {
  color: #888;
}

/* FOCUS (quando clica) */
.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus {
  background: #fff;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* BOTÃO */
.contact_section .form_container button {
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* HOVER BOTÃO */
.contact_section .form_container button:hover {
  background: #fff;
  color: #111;
  border: 1px solid #111;
  transform: translateY(-2px);
}
.client_section .box {
  margin: 50px 12px 15px;
}

.client_section .box .img-box {
  width: 82px;
  height: 82px;
  margin-left: 24px;
  margin-bottom: -36px;
}

.client_section .box .img-box img {
  width: 82px;
  height: 82px;
  border: 4px solid #fff !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.client_section .box .detail-box {
  min-height: 150px;
  padding: 55px 22px 22px;
  border-radius: 22px;
  border: 1px solid #e5e5e5 !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06) !important;
}

.client_section .box .detail-box h5 {
  font-size: 17px;
  margin-bottom: 8px;
}

.client_section .box .detail-box p {
  font-size: 14px;
  color: #666;
}

.btn-box2 a {
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16) !important;
}

.btn-box2 a:hover {
  background: #fff !important;
  color: #111 !important;
}
