@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #FF4B1F;
  --primary-dark: #D43913;
  --primary-light: #FFF0ED;
  --accent: #FFB800;
  --accent-dark: #E5A500;
  --accent-light: #FFF8E6;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #FF4B1F 0%, #D43913 100%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04), 0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04), 0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04), 0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04), 0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08), 0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a, button, a:hover, a:focus, input:focus, textarea:focus, button:focus {
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1, .h1 { font-size: 2.75em; line-height: 1.25; }
h2, .h2 { font-size: 2.25em; line-height: 1.25; }
h3, .h3 { font-size: 1.75em; line-height: 1.25; }
h4, .h4 { font-size: 1.5em; line-height: 1.25; }
h5, .h5 { font-size: 1.25em; line-height: 1.25; }
h6, .h6 { font-size: 0.875em; line-height: 1.25; }

.display-1 { font-size: 5.5em; line-height: 1.25; }
.display-2 { font-size: 4.75em; line-height: 1.25; }
.display-3 { font-size: 4em; line-height: 1.25; }
.display-4 { font-size: 3.25em; line-height: 1.25; }
.display-5 { font-size: 2.5em; line-height: 1.25; } /* Adicionado pois é usado no HTML */

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small { font-size: 0.875em; line-height: 1.5; }
.text-lg { font-size: 1.15em; line-height: 1.5; }

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover { color: inherit; }
.btn:focus { box-shadow: none; outline: none; }
.btn.btn-lg { font-size: 1.15em; padding: 16px 24px; }
.btn.btn-sm { padding: 8px 16px; }
.btn.square { border-radius: 0px; }
.btn.semi-rounded { border-radius: 12px; }
.btn.rounded-full { border-radius: 50px; }

.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}

/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}
.scroll-top:hover {
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}


/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five { margin-bottom: 45px; }
}
@media (max-width: 767px) {
  .section-title-five { margin-bottom: 35px; }
}
.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}
.section-title-five h2 { margin-bottom: 15px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 { font-size: 2rem; line-height: 2.8rem; }
}
@media (max-width: 767px) {
  .section-title-five h2 { font-size: 1.5rem; line-height: 1.9rem; }
}
.section-title-five p { color: var(--dark-3); }


/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus { box-shadow: none; }

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--primary);
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.sticky {
  position: fixed !important;
  z-index: 99 !important;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine { padding: 10px 0; }
}
.navbar-area.navbar-nine .navbar-brand { margin: 0; }
.navbar-area.navbar-nine .navbar { position: relative; padding: 0; }
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 8;
    padding: 10px 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav { margin-left: 80px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav { margin-right: 0; }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item { position: relative; }
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-out 0s;
  margin: 14px 0;
  opacity: 0.7;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover { opacity: 1; }
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active { opacity: 1; }

.navbar-area.navbar-nine .navbar .navbar-btn { margin-top: 6px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}
.sidebar-left.open { transform: translateX(0); }
@media (max-width: 767px) {
  .sidebar-left { width: 250px; }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover { transform: rotate(90deg); }
.sidebar-left .sidebar-content { padding: 0px 30px; }
.sidebar-left .sidebar-content .text { margin-top: 20px; }
.sidebar-left .sidebar-content .sidebar-social { margin-top: 30px; }
.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child { margin: 0; }
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}
.overlay-left.open { display: block; }


/* ===== Header Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding: 160px 0 100px 0;
  background: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight { padding: 130px 0 80px 0; }
}
@media (max-width: 767px) {
  .header-eight { padding: 100px 0 60px 0; }
}
.header-eight .header-image img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-image { margin-top: 40px; }
}
.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}
.header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1  { font-size: 35px; line-height: 45px; }
}
@media (max-width: 767px) {
  .header-eight .header-content h1  { font-size: 30px; line-height: 42px; }
}
.header-eight .header-content h1 span { display: block; }
.header-eight .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.8;
}
.header-eight .button { margin-top: 40px; }
.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}
.header-eight .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

/*===========================
  services css 
===========================*/
.services-eight {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight { padding: 80px 0 50px 0; }
}
@media (max-width: 767px) {
  .services-eight { padding: 60px 0 30px 0; }
}

/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action { padding: 80px; }
}
@media (max-width: 767px) {
  .call-action { padding: 60px 0; }
}
.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.call-action .inner-content { text-align: center; }
.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}
.call-action .inner-content p { color: var(--white); }
.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.call-action .cta-box {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white );
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}
.call-action .cta-box:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area { padding: 80px; }
}
@media (max-width: 767px) {
  .latest-news-area { padding: 60px 0; }
}

/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
  background: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area { padding: 80px; }
}
@media (max-width: 767px) {
  .brand-area { padding: 60px 0; }
}
.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}
.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  transform: translateY(-5px);
}
.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* Footer eleven css */
.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white);
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget { margin-top: 40px; }
}
@media (max-width: 767px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
    text-align: center;
  }
}
.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven .footer-widget h5 { margin-bottom: 25px; }
}
.footer-eleven .f-about { padding-right: 30px; }
@media (max-width: 767px) {
  .footer-eleven .f-about { padding: 0; }
}
.footer-eleven .f-about p {
  color: var(--dark-3);
  margin-top: 20px;
}
.footer-eleven .f-about .copyright-text {
  color: var(--dark-3);
  margin-top: 40px;
}
.footer-eleven .f-about .copyright-text span { display: block; }
@media (max-width: 767px) {
  .footer-eleven .f-about .copyright-text { margin-top: 20px; }
}
.footer-eleven .f-about .copyright-text a { color: var(--primary); }
.footer-eleven .f-about .copyright-text a:hover { color: var(--primary-dark); }


/*===========================
  Atuação Local Cards Custom
===========================*/
.local-presence-area {
  background-color: var(--light-3);
  padding: 100px 0;
}

.text-highlight {
  color: var(--primary);
  background: var(--primary-light);
  padding: 0 5px;
  border-radius: 4px;
}

/* Estilo do Card */
.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid var(--gray-4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-6);
  border-color: var(--primary-light);
}

/* Wrapper do Ícone */
.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.feature-card:hover .icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* Tipografia dos Cards */
.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
}
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-3);
  margin: 0;
}

/* Variações de cores */
.bg-success-custom { background-color: var(--success-light); color: var(--success); }
.feature-card:hover .bg-success-custom { background-color: var(--success); color: var(--white); }

.bg-caution-custom { background-color: var(--caution-light); color: var(--caution-dark); }
.feature-card:hover .bg-caution-custom { background-color: var(--caution-dark); color: var(--white); }

.bg-info-custom { background-color: var(--info-light); color: var(--info); }
.feature-card:hover .bg-info-custom { background-color: var(--info); color: var(--white); }

/* Custom Services Section */
.services-image-wrapper {
  position: relative;
  display: inline-block;
}

.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: var(--gradient-1);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  line-height: 1;
}
.experience-badge .h2 {
  font-size: 2rem;
  line-height: 1;
}
.experience-badge span { letter-spacing: 1px; }

.icon-simple {
  min-width: 45px;
  height: 45px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}

.services-list .d-flex:hover .icon-simple {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.services-list h6 {
  font-size: 1rem;
  color: var(--dark-2);
}

.services-area .section-title-five { max-width: 100%; }

/* Card principal */
.brand-card-large {
  background: var(--white);
  border: 1px solid var(--gray-4);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.brand-card-large:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Wrapper da Logo */
.brand-logo-wrapper {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #fff;
  overflow: hidden;
}

.brand-logo-wrapper img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-card-large:hover .brand-logo-wrapper img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Seção Atacado Dark */
.wholesale-area {
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}

.bg-dark-soft {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Cards de Benefícios Minimalistas */
.wholesale-card {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.wholesale-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--caution);
}

.wholesale-card .icon-box {
  min-width: 50px;
  height: 50px;
  background-color: rgba(255, 184, 0, 0.15);
  color: var(--caution);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
}

/* Botão Warning */
.btn-warning {
  background-color: var(--caution);
  color: #000;
  border: none;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-warning:hover {
  background-color: var(--caution-dark);
  color: #fff;
}

/* Seção Simples de Entrega */
.simple-box {
  background-color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.simple-box:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Seção de Pagamento Clean */
.ls-2 { letter-spacing: 2px; }

.icon-payment-simple {
  font-size: 2.5rem;
  width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.payment-item { transition: padding 0.3s ease; }
.payment-item:hover { padding-left: 10px; }

@media (max-width: 991px) {
  .payment-item {
    flex-direction: column;
    text-align: center;
  }
  .icon-payment-simple {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
}