/**
* Template Name: Constructo
* Template URL: https://bootstrapmade.com/constructo-bootstrap-construction-template/
* Updated: Aug 30 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f9fafb; /* Background color for the entire website, including individual sections */
  --default-color: #333333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #102a49; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #14529d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #333333;  /* The default color of the main navmenu links */
  --nav-hover-color: #14529d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #333333; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #14529d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #eff1f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #14529d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #b73935;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #b73935;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #af4037;
  width: 40px;
  height: 40px;
	border: solid 0.5px #fff;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #000;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


/* ============================================
   TESTIMONIALS - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #fff | #f8f7f5
   ============================================ */

.testimonials {
  position: relative;
  background: #f8f7f5;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* ============================================
   BORDA MODERNA - SEPARADOR
   ============================================ */

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.05) 15%,
    #b03a33 40%,
    #b03a33 60%,
    rgba(176, 58, 51, 0.05) 85%,
    transparent 100%
  );
  z-index: 1;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #b03a33;
  box-shadow: 0 0 20px rgba(176, 58, 51, 0.3), 0 0 60px rgba(176, 58, 51, 0.1);
  z-index: 2;
  animation: testimonialBorderGlow 3s ease-in-out infinite;
}

@keyframes testimonialBorderGlow {
  0%, 100% {
    width: 120px;
    opacity: 1;
  }
  50% {
    width: 180px;
    opacity: 0.6;
  }
}

/* ============================================
   HEADER DA SEÇÃO
   ============================================ */

.testimonials__header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 14px;
}

.testimonials__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

.testimonials__title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.testimonials__title span {
  color: #b03a33;
}

.testimonials__description {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(26, 26, 26, 0.55);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SLIDER - MANTER CLASSES ORIGINAIS
   ============================================ */

.testimonials .testimonials-slider {
  max-width: auto;
  margin: 0 auto;
  position: relative;
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

/* ============================================
   CARDS - MODERNIZADOS
   ============================================ */

.testimonials .testimonial-slide {
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(176, 58, 51, 0.06);
  border-top: 4px solid #b03a33;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.testimonials .testimonial-slide:hover {
  box-shadow: 0 20px 60px rgba(176, 58, 51, 0.08);
  transform: translateY(-4px);
}

/* ============================================
   HEADER DO CARD
   ============================================ */

.testimonials .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonials .stars-rating {
  display: flex;
  gap: 0.4rem;
}

.testimonials .stars-rating i {
  color: #fbb853;
  font-size: 1.1rem;
}

.testimonials .quote-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #b03a33, #8f2e28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.2);
}

.testimonials .quote-icon i {
  color: #fff;
  font-size: 1.3rem;
}

/* ============================================
   CORPO DO DEPOIMENTO
   ============================================ */

.testimonials .testimonial-body {
  margin: 2rem 0;
}

.testimonials .testimonial-body p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  color: #1a1a1a;
  margin: 0;
  position: relative;
}

/* ============================================
   RODAPÉ - AUTOR
   ============================================ */

.testimonials .testimonial-footer {
  margin-top: 2rem;
}

.testimonials .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials .author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b03a33;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.15);
}

.testimonials .author-details {
  text-align: left;
}

.testimonials .author-details h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.testimonials .author-details .role {
  display: block;
  font-size: 0.95rem;
  color: #b03a33;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.testimonials .author-details .company {
  display: block;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.5);
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

.testimonials .swiper-navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .swiper-pagination {
  position: static !important;
  margin: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(176, 58, 51, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b03a33;
  transform: scale(1.2);
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static !important;
  width: 48px;
  height: 48px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: #b03a33;
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: #8f2e28;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.3);
}

.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 991.98px) {
  .testimonials {
    padding: 60px 0 80px;
  }

  .testimonials .testimonial-slide {
    padding: 2.5rem 2rem;
    min-height: 340px;
  }

  .testimonials .testimonial-body p {
    font-size: 1.1rem;
  }

  .testimonials .author-avatar {
    width: 64px;
    height: 64px;
  }

  .testimonials .author-details h2 {
    font-size: 1.15rem;
  }

  .testimonials .quote-icon {
    width: 48px;
    height: 48px;
  }

  .testimonials .quote-icon i {
    font-size: 1.1rem;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 42px;
    height: 42px;
  }

  .testimonials::after {
    width: 100px;
  }

  @keyframes testimonialBorderGlow {
    0%, 100% {
      width: 100px;
      opacity: 1;
    }
    50% {
      width: 140px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 767.98px) {
  .testimonials__header {
    margin-bottom: 35px;
  }

  .testimonials .testimonial-slide {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .testimonials .testimonial-header {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .testimonials .testimonial-body {
    margin: 1.5rem 0;
  }

  .testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonials .author-info {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .testimonials .author-details {
    text-align: center;
  }

  .testimonials .author-details h2 {
    font-size: 1.05rem;
  }

  .testimonials .author-details .role {
    font-size: 0.9rem;
  }

  .testimonials .author-details .company {
    font-size: 0.85rem;
  }

  .testimonials .swiper-navigation-wrapper {
    gap: 1.2rem;
    margin-top: 1.8rem;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 0.9rem;
  }

  .testimonials::after {
    width: 80px;
  }

  @keyframes testimonialBorderGlow {
    0%, 100% {
      width: 80px;
      opacity: 1;
    }
    50% {
      width: 110px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 480px) {
  .testimonials__title {
    font-size: 26px;
  }

  .testimonials__description {
    font-size: 14px;
  }

  .testimonials .testimonial-slide {
    padding: 1.5rem 1.2rem;
    min-height: 240px;
  }

  .testimonials .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .author-avatar {
    width: 56px;
    height: 56px;
    border-width: 2px;
  }

  .testimonials::after {
    width: 60px;
  }

  @keyframes testimonialBorderGlow {
    0%, 100% {
      width: 60px;
      opacity: 1;
    }
    50% {
      width: 85px;
      opacity: 0.6;
    }
  }
}



/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

	

.top-bar {
    background-color: #b03a33; /* Cor de fundo */
    color: #fff; /* Cor do texto */
    display: flex;
    justify-content: space-between; /* Distribui itens nos extremos */
    padding: 10px 20px; /* EspaÃ§amento interno */
    border-bottom: solid 1px #575757;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px; /* EspaÃ§amento entre os itens */
}
.top-bar i {
    margin-right: 8px; /* EspaÃ§amento entre o Ã­cone e o texto */
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center; /* Centraliza verticalmente os itens */
}
.top-bar-left .top-bar-item {
    display: flex;
    align-items: center;
}
.top-bar-right .top-bar-item {
    margin-left: 10px; /* EspaÃ§amento entre Ã­cones do lado direito */
}
.text {
    display: inline; /* Exibe os textos no desktop */
}

/* Responsividade geral para dispositivos mÃ³veis */
@media (max-width: 1240px) {
.top-bar .text {
    display: none; /* Oculta textos no mobile */
}
/* Ajuste da barra superior para caber em telas menores */
.top-bar {
    flex-direction: column; /* Altera o layout para coluna */
    text-align: center; /* Centraliza o conteÃºdo */
    padding: 5px 10px; /* Reduz o padding */
}
.top-bar-left {
    justify-content: center; /* Centraliza os itens */
    margin: 5px 0; /* Ajusta o espaÃ§amento entre os grupos */
}
.top-bar-right {
    display: none; /* Oculta Ã­cones do lado direito em telas menores */
}
}

@media (max-width: 1024px) {
.top-bar .text {
    display: none; /* Oculta textos no mobile */
}
/* Ajuste da barra superior para caber em telas menores */
.top-bar {
    flex-direction: column; /* Altera o layout para coluna */
    text-align: center; /* Centraliza o conteÃºdo */
    padding: 5px 10px; /* Reduz o padding */
}
.top-bar-left {
    justify-content: center; /* Centraliza os itens */
    margin: 5px 0; /* Ajusta o espaÃ§amento entre os grupos */
}
.top-bar-right {
    display: none; /* Oculta Ã­cones do lado direito em telas menores */
}
}

@media (max-width: 768px) {
.top-bar .text {
    display: none; /* Oculta textos no mobile */
}
/* Ajuste da barra superior para caber em telas menores */
.top-bar {
    flex-direction: column; /* Altera o layout para coluna */
    text-align: center; /* Centraliza o conteÃºdo */
    padding: 5px 10px; /* Reduz o padding */
}
.top-bar-left {
    justify-content: center; /* Centraliza os itens */
    margin: 5px 0; /* Ajusta o espaÃ§amento entre os grupos */
}
.top-bar-right {
    display: none; /* Oculta Ã­cones do lado direito em telas menores */
}
}

@media (max-width: 500px) {
.top-bar-left {
    justify-content: center; /* Alinha Ã­cones Ã  esquerda ao centro */
}
.top-bar-right {
    display: none; /* Oculta Ã­cones do lado direito em telas menores */
}
}

/* Responsividade adicional para telas extra pequenas */
@media (max-width: 320px) {
.top-bar {
    padding: 3px 5px; /* Reduz ainda mais o padding */
}
.top-bar-left .top-bar-item {
    margin-right: 5px; /* Diminui o espaÃ§amento entre itens Ã  esquerda */
}
}

	

		.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.close-tooltip {
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}

/* Container fixo no canto inferior direito */
.floating-tooltip {
  position: fixed;
  bottom: 100px;
  right: 10px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

/* Tooltip visÃƒÆ’Ã‚Â­vel */
.floating-tooltip .tooltip-text {
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Ocultar suavemente */
.floating-tooltip .tooltip-text.hidden {
  opacity: 0;
  pointer-events: none;
}

/* BotÃƒÆ’Ã‚Â£o de fechar o tooltip */
.close-tooltip {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #080808;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.close-tooltip:hover {
  background: #fff;
	color: #000;
}

/* BotÃƒÆ’Ã‚Â£o de chat */


.chat-btn {
  background: #33bd31;
  color: #fff;
  font-size: 24px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

.chat-btn i {
  color: #fff;
  font-size: 2.5rem;
}

.chat-btn:hover {
  transform: scale(1.1);
  background: #33bd31;
  color: #fff;
}


	
	


/* ========================================
   HERO SECTION - DEMOLIDORA MACIÇO
   Cores: #635448 | #716f68 | #000 | #fff
   ======================================== */

.hero-macico {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* ========================================
   IMAGEM DE FUNDO
   ======================================== */

.hero-macico__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/demolidora-hero-02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay principal - preto com transparência */
.hero-macico__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.60) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

/* Overlay de destaque - marrom sutil */
.hero-macico__background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(99, 84, 72, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(99, 84, 72, 0.08) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* ========================================
   CONTEÚDO DA HERO
   ======================================== */

.hero-macico__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  animation: heroFadeIn 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

/* Linha decorativa superior - #635448 */
.hero-macico__line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #635448;
  border-radius: 4px;
  margin-bottom: 30px;
  animation: lineExpand 1s ease forwards;
}

/* Badge */
.hero-macico__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 22px 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.70);
}

.hero-macico__badge-dot {
  width: 15px;
  height: 15px;
  background: #635448;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Título principal */
.hero-macico__title {
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-macico__title .highlight-primary {
  color: #b1332f;
  position: relative;
  display: inline-block;
}

.hero-macico__title .highlight-primary::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(99, 84, 72, 0.30);
  border-radius: 4px;
  z-index: -1;
}

.hero-macico__title .highlight-secondary {
  color: #b1332f;
  position: relative;
  display: inline-block;
}

.hero-macico__title .highlight-secondary::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(113, 111, 104, 0.30);
  border-radius: 4px;
  z-index: -1;
}

/* Subtítulo */
.hero-macico__subtitle {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* ========================================
   BOTÕES
   ======================================== */

.hero-macico__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Botão Saiba Mais - Primário (#635448) */
.hero-macico__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  background: #b03a33;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 30px rgba(99, 84, 72, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-macico__btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b03a33;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.hero-macico__btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(99, 84, 72, 0.45);
  color: #ffffff;
}

.hero-macico__btn-primary:hover::before {
  opacity: 1;
}

.hero-macico__btn-primary span {
  position: relative;
  z-index: 1;
}

.hero-macico__btn-primary i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-macico__btn-primary:hover i {
  transform: translateY(4px);
}

/* Botão WhatsApp - Secundário (#716f68) */
.hero-macico__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(113, 111, 104, 0.30);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

.hero-macico__btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(113, 111, 104, 0.20);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.hero-macico__btn-secondary:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 111, 104, 0.60);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.30);
  color: #ffffff;
}

.hero-macico__btn-secondary:hover::before {
  opacity: 1;
}

.hero-macico__btn-secondary i {
  font-size: 1.2rem;
  color: #25D366;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-macico__btn-secondary:hover i {
  transform: scale(1.1);
}

.hero-macico__btn-secondary span {
  position: relative;
  z-index: 1;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

/* ========================================
   RESPONSIVO
   ======================================== */

@media (max-width: 991px) {
  .hero-macico {
    min-height: 90vh;
  }
  
  .hero-macico__title {
    font-size: clamp(34px, 6vw, 52px);
  }
  
  .hero-macico__buttons {
    gap: 14px;
  }
  
  .hero-macico__btn-primary,
  .hero-macico__btn-secondary {
    padding: 14px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .hero-macico {
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  
  .hero-macico__title {
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: -1px;
  }
  
  .hero-macico__title .highlight-primary::after,
  .hero-macico__title .highlight-secondary::after {
    bottom: 4px;
    height: 6px;
  }
  
  .hero-macico__subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .hero-macico__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .hero-macico__btn-primary,
  .hero-macico__btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  
  .hero-macico__badge {
    font-size: 0.65rem;
    padding: 6px 16px 6px 14px;
  }
}

@media (max-width: 480px) {
  .hero-macico__title {
    font-size: clamp(24px, 7vw, 30px);
  }
  
  .hero-macico__subtitle {
    font-size: 0.9rem;
  }
  
  .hero-macico__btn-primary,
  .hero-macico__btn-secondary {
    padding: 14px 20px;
    font-size: 0.85rem;
  }
}



	
	/* ============================================
   ABOUT PREMIUM - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #fff
   ============================================ */

.about-premium {
  position: relative;
  padding: 100px 0 80px;
  background-color: #f8f7f5;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Container */
.about-premium__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Row */
.about-premium__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ============================================
   COLUNA ESQUERDA - CONTEÚDO
   ============================================ */

.about-premium__col-content {
  position: relative;
  z-index: 2;
}

.about-premium__content {
  max-width: 580px;
}

/* Subtítulo */
.about-premium__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 18px;
}

.about-premium__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

/* Título */
.about-premium__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.about-premium__highlight {
  color: #b03a33;
  position: relative;
  display: inline-block;
}

.about-premium__highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(176, 58, 51, 0.20);
  border-radius: 3px;
  z-index: -1;
}

/* Descrição */
.about-premium__description {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  max-width: 520px;
}

.about-premium__description strong {
  color: #b03a33;
  font-weight: 700;
}

/* ============================================
   BOTÕES
   ============================================ */

.about-premium__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Botão Primário - #b03a33 */
.about-premium__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #b03a33;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.25);
}

.about-premium__btn-primary:hover {
  background: #8f2e28;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(176, 58, 51, 0.35);
}

.about-premium__btn-primary i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.about-premium__btn-primary:hover i {
  transform: translateX(4px);
}

/* Botão Secundário - Outline */
.about-premium__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid #ddd;
  transition: all 0.35s ease;
  cursor: pointer;
}

.about-premium__btn-secondary:hover {
  border-color: #b03a33;
  color: #b03a33;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-premium__btn-secondary i {
  font-size: 1.2rem;
  color: #25D366;
}

.about-premium__btn-secondary:hover i {
  color: #1ebe5d;
}

/* ============================================
   TRUST BADGES
   ============================================ */

.about-premium__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-premium__badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-premium__badge-item i {
  font-size: 28px;
  color: #b03a33;
}

.about-premium__badge-text {
  display: flex;
  flex-direction: column;
}

.about-premium__badge-count {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}

.about-premium__badge-label {
  font-size: 13px;
  color: #888;
}

/* ============================================
   COLUNA DIREITA - IMAGEM
   ============================================ */

.about-premium__col-image {
  position: relative;
}

.about-premium__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-premium__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-premium__image-wrapper:hover .about-premium__image {
  transform: scale(1.03);
}

/* Image Badge */
.about-premium__image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-premium__image-badge span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.about-premium__image-badge p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .about-premium {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .about-premium__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-premium__content {
    max-width: 100%;
  }

  .about-premium__title {
    font-size: clamp(32px, 4.5vw, 42px);
  }

  .about-premium__image-badge {
    bottom: 18px;
    left: 18px;
    padding: 12px 18px;
  }

  .about-premium__image-badge span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding: 100px 0 50px;
  }

  .about-premium__title {
    font-size: clamp(28px, 5vw, 34px);
  }

  .about-premium__description {
    font-size: 15px;
  }

  .about-premium__buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-premium__btn-primary,
  .about-premium__btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .about-premium__badges {
    gap: 20px;
  }

  .about-premium__badge-item i {
    font-size: 22px;
  }

  .about-premium__badge-count {
    font-size: 18px;
  }

  .about-premium__badge-label {
    font-size: 12px;
  }

  .about-premium__image-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
  }

  .about-premium__image-badge span {
    font-size: 13px;
  }

  .about-premium__image-badge p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .about-premium__title {
    font-size: clamp(24px, 4.5vw, 28px);
    letter-spacing: -0.5px;
  }

  .about-premium__highlight::after {
    bottom: 2px;
    height: 4px;
  }

  .about-premium__description {
    font-size: 14px;
  }

  .about-premium__badges {
    flex-direction: column;
    gap: 14px;
  }

  .about-premium__image-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 14px;
    border-radius: 8px;
  }

  .about-premium__image-badge span {
    font-size: 12px;
  }

  .about-premium__image-badge p {
    font-size: 10px;
  }
}
	
	
	
	
	/* ============================================
   CLIENTES PREMIUM - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #f8f7f5
   ============================================ */

.clientes-premium {
  background: #f8f7f5;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* ============================================
   BORDA MODERNA - SEPARADOR
   ============================================ */

.clientes-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.05) 15%,
    #b03a33 40%,
    #b03a33 60%,
    rgba(176, 58, 51, 0.05) 85%,
    transparent 100%
  );
  z-index: 1;
}

.clientes-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #b03a33;
  box-shadow: 0 0 20px rgba(176, 58, 51, 0.3), 0 0 60px rgba(176, 58, 51, 0.1);
  z-index: 2;
  animation: clientesBorderGlow 3s ease-in-out infinite;
}

@keyframes clientesBorderGlow {
  0%, 100% {
    width: 120px;
    opacity: 1;
  }
  50% {
    width: 180px;
    opacity: 0.6;
  }
}

/* ============================================
   CONTAINER
   ============================================ */

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

/* ============================================
   HEADER DA SEÇÃO
   ============================================ */

.clientes-premium__header {
  text-align: center;
  margin-bottom: 50px;
}

.clientes-premium__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 14px;
}

.clientes-premium__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

.clientes-premium__title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.clientes-premium__title span {
  color: #b03a33;
}

.clientes-premium__description {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(26, 26, 26, 0.55);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   GRID DE CLIENTES
   ============================================ */

.clientes-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

/* ============================================
   ITEM DO CLIENTE
   ============================================ */

.clientes-premium__item {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

.clientes-premium__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176, 58, 51, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.clientes-premium__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: rgba(176, 58, 51, 0.12);
}

.clientes-premium__item:hover::before {
  opacity: 1;
}

/* ============================================
   IMAGEM DO CLIENTE
   ============================================ */

.clientes-premium__image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clientes-premium__image {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.5s ease;
  object-fit: contain;
}

.clientes-premium__item:hover .clientes-premium__image {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .clientes-premium {
    padding: 60px 0 80px;
  }

  .clientes-premium__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .clientes-premium__item {
    padding: 28px 20px;
    min-height: 100px;
  }

  .clientes-premium__image {
    max-height: 60px;
  }

  .clientes-premium::after {
    width: 100px;
  }

  @keyframes clientesBorderGlow {
    0%, 100% {
      width: 100px;
      opacity: 1;
    }
    50% {
      width: 140px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 768px) {
  .clientes-premium {
    padding: 40px 0 60px;
  }

  .clientes-premium__header {
    margin-bottom: 35px;
  }

  .clientes-premium__title {
    font-size: 28px;
  }

  .clientes-premium__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .clientes-premium__item {
    padding: 20px 16px;
    min-height: 80px;
    border-radius: 12px;
  }

  .clientes-premium__image {
    max-height: 50px;
  }

  .clientes-premium__description {
    font-size: 14px;
  }

  .clientes-premium::after {
    width: 80px;
  }

  @keyframes clientesBorderGlow {
    0%, 100% {
      width: 80px;
      opacity: 1;
    }
    50% {
      width: 110px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 480px) {
  .clientes-premium {
    padding: 30px 0 50px;
  }

  .clientes-premium__title {
    font-size: 24px;
  }

  .clientes-premium__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .clientes-premium__item {
    padding: 16px 12px;
    min-height: 70px;
    border-radius: 10px;
  }

  .clientes-premium__image {
    max-height: 40px;
  }

  .clientes-premium__subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .clientes-premium__description {
    font-size: 13px;
  }

  .clientes-premium::after {
    width: 60px;
  }

  @keyframes clientesBorderGlow {
    0%, 100% {
      width: 60px;
      opacity: 1;
    }
    50% {
      width: 85px;
      opacity: 0.6;
    }
  }
}
	
	

	/* ============================================
   SERVICES PREMIUM - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #fff
   ============================================ */

.services-premium {
  background: #0d0d0d;
  padding: 80px 0 100px;
  position: relative;
}

/* ============================================
   HEADER
   ============================================ */

.services-premium__header {
  text-align: center;
  margin-bottom: 60px;
}

.services-premium__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 14px;
}

.services-premium__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

.services-premium__title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.services-premium__title span {
  color: #b03a33;
}

.services-premium__description {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CONTAINER E GRID
   ============================================ */

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

.services-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   CARDS DE SERVIÇOS
   ============================================ */

.services-premium__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-premium__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176, 58, 51, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-premium__card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 58, 51, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.services-premium__card:hover::before {
  opacity: 1;
}

/* Card Destaque */
.services-premium__card--featured {
  border-color: rgba(176, 58, 51, 0.35);
}

.services-premium__card--featured .services-premium__card-icon {
  background: rgba(176, 58, 51, 0.15);
}

.services-premium__card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #b03a33;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 0 16px 0 12px;
}

/* Ícone */
.services-premium__card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 58, 51, 0.08);
  margin: 0 auto 18px;
  transition: all 0.4s ease;
}

.services-premium__card:hover .services-premium__card-icon {
  background: rgba(176, 58, 51, 0.18);
  transform: scale(1.05);
}

.services-premium__card-icon i {
  font-size: 30px;
  color: #b03a33;
  transition: transform 0.4s ease;
}

.services-premium__card:hover .services-premium__card-icon i {
  transform: scale(1.05);
}

/* Título */
.services-premium__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

/* Texto - Sem features, apenas texto corrido */
.services-premium__card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 22px;
  text-align: center;
  flex: 1;
}

/* ============================================
   BOTÃO "SAIBA MAIS" - HOVER INVERTIDO
   ============================================ */

.services-premium__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  background: #b03a33;
  border: 1.5px solid #b03a33;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  margin-top: auto;
  position: relative;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.25);
}

.services-premium__card-link span {
  position: relative;
  z-index: 1;
}

.services-premium__card-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

/* HOVER - Torna o botão outline */
.services-premium__card-link:hover {
  background: transparent;
  color: #b03a33;
  border-color: rgba(176, 58, 51, 0.4);
  gap: 14px;
  transform: translateY(-2px);
  box-shadow: none;
}

.services-premium__card-link:hover i {
  transform: translateX(4px);

}

/* ============================================
   CTA
   ============================================ */

.services-premium__cta {
  margin-top: 60px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
}

.services-premium__cta-title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.services-premium__cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.services-premium__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: #b03a33;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.25);
  border: 1.5px solid #b03a33;
}

.services-premium__cta-btn:hover {
  background: transparent;
  color: #b03a33;
  transform: translateY(-3px);
  box-shadow: none;
}

.services-premium__cta-btn i {
  font-size: 20px;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .services-premium__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-premium__cta {
    padding: 36px 28px;
  }

  .services-premium__card-text {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .services-premium {
    padding: 60px 0 80px;
  }

  .services-premium__header {
    margin-bottom: 40px;
  }

  .services-premium__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-premium__card {
    padding: 28px 20px 24px;
  }

  .services-premium__card-text {
    font-size: 13px;
  }

  .services-premium__cta {
    padding: 28px 20px;
    margin-top: 40px;
  }

  .services-premium__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .services-premium__card-link {
    width: 100%;
    justify-content: center;
  }
}
	

	

	/* ============================================
   PROJECTS CTA - DEMOLIDORA MACIÇO
   Versão Clara - Fundo #f8f7f5
   Cores: #b03a33 | #1a1a1a
   ============================================ */

.projects-cta {
  background: #f4f3f1;
  padding: 80px 0 100px;
  position: relative;
}

/* ============================================
   BORDA MODERNA - SEPARADOR
   ============================================ */

/* Borda superior com gradiente e efeito de luz */
.projects-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.05) 15%,
    #b03a33 40%,
    #b03a33 60%,
    rgba(176, 58, 51, 0.05) 85%,
    transparent 100%
  );
  z-index: 1;
}

/* Efeito de luz pulsante na borda */
.projects-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #b03a33;
  box-shadow: 
    0 0 20px rgba(176, 58, 51, 0.3),
    0 0 60px rgba(176, 58, 51, 0.1);
  z-index: 2;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    width: 120px;
    opacity: 1;
  }
  50% {
    width: 180px;
    opacity: 0.6;
  }
}

/* ============================================
   CONTEÚDO
   ============================================ */

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

.projects-cta__content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

/* Subtítulo */
.projects-cta__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 14px;
}

.projects-cta__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

/* Título */
.projects-cta__title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.projects-cta__title span {
  color: #b03a33;
}

/* Texto */
.projects-cta__text {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ============================================
   BOTÕES
   ============================================ */

.projects-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Botão base */
.projects-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.projects-cta__btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.projects-cta__btn span {
  position: relative;
  z-index: 1;
}

/* Efeito de brilho nos botões */
.projects-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.projects-cta__btn:hover::before {
  transform: translateX(100%);
}

/* Botão - Galeria de Vídeos (Vermelho) */
.projects-cta__btn--video {
  background: #b03a33;
  color: #fff;
  border: 1.5px solid #b03a33;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.25);
}

.projects-cta__btn--video:hover {
  background: transparent;
  color: #b03a33;
  transform: translateY(-3px);
  box-shadow: none;
}

.projects-cta__btn--video:hover i {
  transform: scale(1.1);
}

/* Botão - Galeria de Imagens (Outline) */
.projects-cta__btn--images {
  background: transparent;
  color: #1a1a1a;
  border: 1.5px solid rgba(26, 26, 26, 0.15);
}

.projects-cta__btn--images:hover {
  background: rgba(176, 58, 51, 0.08);
  border-color: #b03a33;
  color: #b03a33;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.12);
}

.projects-cta__btn--images:hover i {
  transform: scale(1.1);
}

/* ============================================
   ÍCONES ESPECÍFICOS
   ============================================ */

.projects-cta__btn--video i {
  color: #fff;
}

.projects-cta__btn--video:hover i {
  color: #b03a33;
}

.projects-cta__btn--images i {
  color: rgba(26, 26, 26, 0.4);
}

.projects-cta__btn--images:hover i {
  color: #b03a33;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 768px) {
  .projects-cta {
    padding: 60px 0 80px;
  }

  .projects-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .projects-cta__btn {
    width: 100%;
    max-width: 380px;
    justify-content: center;
    padding: 14px 24px;
  }

  .projects-cta__text {
    font-size: 15px;
  }

  /* Ajuste da borda no mobile */
  .projects-cta::after {
    width: 80px;
  }

  @keyframes borderGlow {
    0%, 100% {
      width: 80px;
      opacity: 1;
    }
    50% {
      width: 120px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 480px) {
  .projects-cta__title {
    font-size: 26px;
  }

  .projects-cta__btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .projects-cta__btn i {
    font-size: 18px;
  }

  .projects-cta::after {
    width: 60px;
  }

  @keyframes borderGlow {
    0%, 100% {
      width: 60px;
      opacity: 1;
    }
    50% {
      width: 90px;
      opacity: 0.6;
    }
  }
}
	

	/* ============================================
   AMBIENTE PREMIUM - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #fff | #f8f7f5
   ============================================ */

.ambiente-premium {
  position: relative;
  padding: 100px 0 80px;
  background-color: #fbfbfb;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* ============================================
   BORDA MODERNA - SEPARADOR
   ============================================ */

/* Borda superior com gradiente e efeito de luz */
.ambiente-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.05) 15%,
    #b03a33 40%,
    #b03a33 60%,
    rgba(176, 58, 51, 0.05) 85%,
    transparent 100%
  );
  z-index: 1;
}

/* Efeito de luz pulsante na borda */
.ambiente-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #b03a33;
  box-shadow: 
    0 0 20px rgba(176, 58, 51, 0.3),
    0 0 60px rgba(176, 58, 51, 0.1);
  z-index: 2;
  animation: ambienteBorderGlow 3s ease-in-out infinite;
}

@keyframes ambienteBorderGlow {
  0%, 100% {
    width: 120px;
    opacity: 1;
  }
  50% {
    width: 180px;
    opacity: 0.6;
  }
}

/* ============================================
   CONTAINER
   ============================================ */

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

/* Row */
.ambiente-premium__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ============================================
   COLUNA ESQUERDA - CONTEÚDO
   ============================================ */

.ambiente-premium__col-content {
  position: relative;
  z-index: 2;
}

.ambiente-premium__content {
  max-width: 580px;
}

/* Subtítulo */
.ambiente-premium__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 18px;
}

.ambiente-premium__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

/* Título */
.ambiente-premium__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.ambiente-premium__highlight {
  color: #b03a33;
  position: relative;
  display: inline-block;
}

.ambiente-premium__highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(176, 58, 51, 0.20);
  border-radius: 3px;
  z-index: -1;
}

/* Descrição */
.ambiente-premium__description {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  max-width: 520px;
}

.ambiente-premium__description strong {
  color: #b03a33;
  font-weight: 700;
}

/* ============================================
   BOTÕES
   ============================================ */

.ambiente-premium__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

/* Botão Primário - #b03a33 */
.ambiente-premium__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #b03a33;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.25);
}

.ambiente-premium__btn-primary:hover {
  background: #8f2e28;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(176, 58, 51, 0.35);
}

.ambiente-premium__btn-primary i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.ambiente-premium__btn-primary:hover i {
  transform: translateX(4px);
}

/* Botão Secundário - Outline */
.ambiente-premium__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid #ddd;
  transition: all 0.35s ease;
  cursor: pointer;
}

.ambiente-premium__btn-secondary:hover {
  border-color: #b03a33;
  color: #b03a33;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.ambiente-premium__btn-secondary i {
  font-size: 1.2rem;
  color: #25D366;
}

.ambiente-premium__btn-secondary:hover i {
  color: #1ebe5d;
}

/* ============================================
   COLUNA DIREITA - IMAGEM
   ============================================ */

.ambiente-premium__col-image {
  position: relative;
}

.ambiente-premium__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ambiente-premium__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.ambiente-premium__image-wrapper:hover .ambiente-premium__image {
  transform: scale(1.03);
}

/* Image Badge */
.ambiente-premium__image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ambiente-premium__image-badge span {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.ambiente-premium__image-badge p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .ambiente-premium {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .ambiente-premium__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ambiente-premium__content {
    max-width: 100%;
  }

  .ambiente-premium__title {
    font-size: clamp(32px, 4.5vw, 42px);
  }

  .ambiente-premium__image-badge {
    bottom: 18px;
    left: 18px;
    padding: 12px 18px;
  }

  .ambiente-premium__image-badge span {
    font-size: 14px;
  }

  /* Ajuste da borda no tablet */
  .ambiente-premium::after {
    width: 100px;
  }

  @keyframes ambienteBorderGlow {
    0%, 100% {
      width: 100px;
      opacity: 1;
    }
    50% {
      width: 140px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 768px) {
  .ambiente-premium {
    padding: 100px 0 50px;
  }

  .ambiente-premium__title {
    font-size: clamp(28px, 5vw, 34px);
  }

  .ambiente-premium__description {
    font-size: 15px;
  }

  .ambiente-premium__buttons {
    flex-direction: column;
    width: 100%;
  }

  .ambiente-premium__btn-primary,
  .ambiente-premium__btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .ambiente-premium__image-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
  }

  .ambiente-premium__image-badge span {
    font-size: 13px;
  }

  .ambiente-premium__image-badge p {
    font-size: 11px;
  }

  /* Ajuste da borda no mobile */
  .ambiente-premium::after {
    width: 80px;
  }

  @keyframes ambienteBorderGlow {
    0%, 100% {
      width: 80px;
      opacity: 1;
    }
    50% {
      width: 120px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 480px) {
  .ambiente-premium__title {
    font-size: clamp(24px, 4.5vw, 28px);
    letter-spacing: -0.5px;
  }

  .ambiente-premium__highlight::after {
    bottom: 2px;
    height: 4px;
  }

  .ambiente-premium__description {
    font-size: 14px;
  }

  .ambiente-premium__image-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 14px;
    border-radius: 8px;
  }

  .ambiente-premium__image-badge span {
    font-size: 12px;
  }

  .ambiente-premium__image-badge p {
    font-size: 10px;
  }

  .ambiente-premium::after {
    width: 60px;
  }

  @keyframes ambienteBorderGlow {
    0%, 100% {
      width: 60px;
      opacity: 1;
    }
    50% {
      width: 90px;
      opacity: 0.6;
    }
  }
}
	
	
	
	/* ============================================
   FAQ PREMIUM - DEMOLIDORA MACIÇO
   Fundo Escuro: #0d0d0d
   Cores: #b03a33 | #fff
   ============================================ */

.faq-premium {
  background: #0d0d0d;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* ============================================
   BORDA MODERNA - SEPARADOR
   ============================================ */

.faq-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.05) 15%,
    #b03a33 40%,
    #b03a33 60%,
    rgba(176, 58, 51, 0.05) 85%,
    transparent 100%
  );
  z-index: 1;
}

.faq-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #b03a33;
  box-shadow: 0 0 20px rgba(176, 58, 51, 0.3), 0 0 60px rgba(176, 58, 51, 0.1);
  z-index: 2;
  animation: faqBorderGlow 3s ease-in-out infinite;
}

@keyframes faqBorderGlow {
  0%, 100% {
    width: 120px;
    opacity: 1;
  }
  50% {
    width: 180px;
    opacity: 0.6;
  }
}

/* ============================================
   SECTION TITLE
   ============================================ */

.section-title-premium {
  text-align: center;
  margin-bottom: 50px;
}

.faq-premium__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 14px;
}

.faq-premium__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

.faq-premium__title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.faq-premium__title span {
  color: #b03a33;
}

.faq-premium__description {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   FAQ WRAPPER
   ============================================ */

.faq-premium__wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

/* ============================================
   FAQ ITEM
   ============================================ */

.faq-premium__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease-in-out;
}

.faq-premium__item:last-child {
  border-bottom: none;
}

.faq-premium__item.active {
  background: rgba(176, 58, 51, 0.04);
}

.faq-premium__item.active .faq-premium__header h4 {
  color: #b03a33;
}

.faq-premium__item.active .faq-premium__icon {
  background: rgba(176, 58, 51, 0.15);
  color: #b03a33;
}

.faq-premium__item.active .faq-premium__icon i {
  transform: rotate(180deg);
}

.faq-premium__item.active .faq-premium__content {
  display: block;
}

/* ============================================
   FAQ HEADER
   ============================================ */

.faq-premium__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-premium__header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-premium__header h4 {
  flex: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  line-height: 1.6;
}

/* ============================================
   FAQ ICON
   ============================================ */

.faq-premium__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-premium__icon i {
  transition: transform 0.3s ease;
}

.faq-premium__header:hover .faq-premium__icon {
  background: rgba(176, 58, 51, 0.1);
  color: #b03a33;
}

/* ============================================
   FAQ CONTENT
   ============================================ */

.faq-premium__content {
  display: none;
  padding: 0 28px 24px 28px;
}

.faq-premium__content .faq-premium__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 400;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .faq-premium {
    padding: 60px 0 80px;
  }

  .faq-premium::after {
    width: 100px;
  }

  @keyframes faqBorderGlow {
    0%, 100% {
      width: 100px;
      opacity: 1;
    }
    50% {
      width: 140px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 768px) {
  .faq-premium__header {
    padding: 18px 20px;
    gap: 14px;
  }

  .faq-premium__header h4 {
    font-size: 15px;
  }

  .faq-premium__icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .faq-premium__content {
    padding: 0 20px 18px 20px;
  }

  .faq-premium__content .faq-premium__inner p {
    font-size: 14px;
  }

  .faq-premium__wrapper {
    border-radius: 12px;
  }

  .section-title-premium {
    margin-bottom: 35px;
  }

  .faq-premium::after {
    width: 80px;
  }

  @keyframes faqBorderGlow {
    0%, 100% {
      width: 80px;
      opacity: 1;
    }
    50% {
      width: 110px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 576px) {
  .faq-premium {
    padding: 40px 0 60px;
  }

  .faq-premium__header {
    padding: 14px 16px;
    gap: 10px;
  }

  .faq-premium__header h4 {
    font-size: 14px;
  }

  .faq-premium__icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .faq-premium__content {
    padding: 0 16px 14px 16px;
  }

  .faq-premium__content .faq-premium__inner p {
    font-size: 13px;
  }

  .faq-premium__wrapper {
    border-radius: 10px;
  }

  .faq-premium__title {
    font-size: 26px;
  }

  .faq-premium::after {
    width: 60px;
  }

  @keyframes faqBorderGlow {
    0%, 100% {
      width: 60px;
      opacity: 1;
    }
    50% {
      width: 85px;
      opacity: 0.6;
    }
  }
}
	
	
	
	
	/* ============================================
   CONTACT PREMIUM - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #fff | #f8f7f5
   ============================================ */

.contact-premium {
  position: relative;
  background: #f8f7f5;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* ============================================
   BORDA MODERNA - SEPARADOR
   ============================================ */

.contact-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.05) 15%,
    #b03a33 40%,
    #b03a33 60%,
    rgba(176, 58, 51, 0.05) 85%,
    transparent 100%
  );
  z-index: 1;
}

.contact-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #b03a33;
  box-shadow: 0 0 20px rgba(176, 58, 51, 0.3), 0 0 60px rgba(176, 58, 51, 0.1);
  z-index: 2;
  animation: contactBorderGlow 3s ease-in-out infinite;
}

@keyframes contactBorderGlow {
  0%, 100% {
    width: 120px;
    opacity: 1;
  }
  50% {
    width: 180px;
    opacity: 0.6;
  }
}

/* ============================================
   SECTION TITLE
   ============================================ */

.section-title-premium {
  text-align: center;
  margin-bottom: 50px;
}

.contact-premium__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b03a33;
  margin-bottom: 14px;
}

.contact-premium__subtitle-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

.contact-premium__title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.contact-premium__title span {
  color: #b03a33;
}

.contact-premium__description {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(26, 26, 26, 0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   INFO PANEL - FUNDO ESCURO
   ============================================ */

.contact-premium__info-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: #0d0d0d;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-premium__info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(176, 58, 51, 0.05), transparent 60%);
  pointer-events: none;
}

.contact-premium__info-panel>* {
  position: relative;
  z-index: 1;
}

/* Badge */
.contact-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(176, 58, 51, 0.15);
  border: 1px solid rgba(176, 58, 51, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b03a33;
  margin-bottom: 24px;
}

.contact-premium__badge i {
  font-size: 14px;
}

/* Título */
.contact-premium__panel-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.5px;
}

.contact-premium__panel-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
}

/* ============================================
   MÉTODOS DE CONTATO
   ============================================ */

.contact-premium__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-premium__method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact-premium__method-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(176, 58, 51, 0.2);
  transform: translateX(6px);
}

.contact-premium__method-icon {
  width: 48px;
  height: 48px;
  background: rgba(176, 58, 51, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-premium__method-icon i {
  font-size: 20px;
  color: #b03a33;
}

.contact-premium__method-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-premium__method-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-premium__method-details a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-premium__method-details a:hover {
  color: #b03a33;
}

/* ============================================
   REDES SOCIAIS - CENTRALIZADAS
   ============================================ */

.contact-premium__social {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.contact-premium__social-icons {
  display: flex;
  gap: 16px;
}

.contact-premium__social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.contact-premium__social-link:hover {
  background: #b03a33;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.3);
  border-color: #b03a33;
}

/* ============================================
   FORMULÁRIO
   ============================================ */

.contact-premium__form-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* Header do Formulário */
.contact-premium__form-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-premium__form-icon {
  width: 60px;
  height: 60px;
  background: rgba(176, 58, 51, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-premium__form-icon i {
  font-size: 26px;
  color: #b03a33;
}

.contact-premium__form-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.contact-premium__form-text p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.55);
  margin: 0;
}

/* Inputs */
.contact-premium__input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-premium__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-premium__input-wrapper i {
  position: absolute;
  left: 16px;
  font-size: 18px;
  color: rgba(26, 26, 26, 0.3);
  transition: color 0.3s ease;
  z-index: 1;
}

.contact-premium__input-wrapper input,
.contact-premium__input-wrapper textarea {
  width: 100%;
  height: 54px;
  padding: 14px 16px 14px 48px;
  font-size: 15px;
  color: #1a1a1a;
  background: #f8f7f5;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-premium__input-wrapper input::placeholder,
.contact-premium__input-wrapper textarea::placeholder {
  color: rgba(26, 26, 26, 0.35);
}

.contact-premium__input-wrapper input:focus,
.contact-premium__input-wrapper textarea:focus {
  outline: none;
  background: #fff;
  border-color: #b03a33;
  box-shadow: 0 0 0 4px rgba(176, 58, 51, 0.08);
}

.contact-premium__input-wrapper input:focus + i,
.contact-premium__input-wrapper textarea:focus + i {
  color: #b03a33;
}

.contact-premium__input-wrapper--textarea {
  align-items: flex-start;
}

.contact-premium__input-wrapper--textarea i {
  top: 16px;
}

.contact-premium__input-wrapper--textarea textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

/* Botão Enviar */
.contact-premium__btn-submit {
  width: 100%;
  height: 56px;
  background: #b03a33;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.contact-premium__btn-submit:hover {
  background: #8f2e28;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(176, 58, 51, 0.3);
}

.contact-premium__btn-submit:hover i {
  transform: translateX(4px);
}

.contact-premium__btn-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Secure Note */
.contact-premium__secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.contact-premium__secure-note i {
  font-size: 14px;
  color: rgba(176, 58, 51, 0.6);
}

.contact-premium__secure-note span {
  font-size: 13px;

  color: rgba(26, 26, 26, 0.4);
}

/* Form Actions */
.contact-premium__form-actions {
  margin-top: 32px;
}

.contact-premium__form-actions .loading,
.contact-premium__form-actions .error-message,
.contact-premium__form-actions .sent-message {
  display: none;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .contact-premium {
    padding: 60px 0 80px;
  }

  .contact-premium__info-panel {
    padding: 36px;
  }

  .contact-premium__form-card {
    padding: 36px;
  }

  .contact-premium::after {
    width: 100px;
  }

  @keyframes contactBorderGlow {
    0%, 100% {
      width: 100px;
      opacity: 1;
    }
    50% {
      width: 140px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 768px) {
  .contact-premium__info-panel {
    padding: 28px 24px;
  }

  .contact-premium__panel-title {
    font-size: 24px;
  }

  .contact-premium__method-item {
    padding: 14px 16px;
  }

  .contact-premium__form-card {
    padding: 28px 24px;
  }

  .contact-premium__form-header {
    flex-direction: column;
    gap: 16px;
  }

  .contact-premium__form-icon {
    width: 52px;
    height: 52px;
  }

  .contact-premium__form-icon i {
    font-size: 22px;
  }

  .contact-premium__form-text h4 {
    font-size: 20px;
  }

  .contact-premium__social-link {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .contact-premium::after {
    width: 80px;
  }

  @keyframes contactBorderGlow {
    0%, 100% {
      width: 80px;
      opacity: 1;
    }
    50% {
      width: 110px;
      opacity: 0.6;
    }
  }
}

@media (max-width: 576px) {
  .contact-premium {
    padding: 40px 0 60px;
  }

  .contact-premium__info-panel {
    padding: 24px 18px;
  }

  .contact-premium__panel-title {
    font-size: 22px;
  }

  .contact-premium__panel-text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-premium__method-icon {
    width: 40px;
    height: 40px;
  }

  .contact-premium__method-icon i {
    font-size: 17px;
  }

  .contact-premium__method-details a {
    font-size: 14px;
  }

  .contact-premium__form-card {
    padding: 20px 16px;
  }

  .contact-premium__form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .contact-premium__input-wrapper input,
  .contact-premium__input-wrapper textarea {
    font-size: 16px;
    height: 50px;
    padding: 12px 14px 12px 44px;
  }

  .contact-premium__btn-submit {
    height: 50px;
    font-size: 15px;
  }

  .contact-premium__social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-premium__social-icons {
    gap: 12px;
  }

  .contact-premium__title {
    font-size: 26px;
  }

  .contact-premium::after {
    width: 60px;
  }

  @keyframes contactBorderGlow {
    0%, 100% {
      width: 60px;
      opacity: 1;
    }
    50% {
      width: 85px;
      opacity: 0.6;
    }
  }
}
	
	
	
	/* ============================================
   FOOTER PREMIUM - DEMOLIDORA MACIÇO
   Cores: #b03a33 | #0d0d0d | #f8f7f5
   ============================================ */

.footer-premium {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

/* Borda superior */
.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 58, 51, 0.3) 30%,
    #b03a33 50%,
    rgba(176, 58, 51, 0.3) 70%,
    transparent 100%
  );
}

/* ============================================
   CONTAINER
   ============================================ */

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

/* ============================================
   TOPO DO FOOTER
   ============================================ */

.footer-premium__top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-premium__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* ============================================
   COLUNAS
   ============================================ */

.footer-premium__col {
  display: flex;
  flex-direction: column;
}

/* ============================================
   LOGO
   ============================================ */

.footer-premium__logo {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-premium__logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-premium__logo-text strong {
  color: #b03a33;
}

/* ============================================
   TEXTO SOBRE
   ============================================ */

.footer-premium__about-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 20px;
}

/* ============================================
   REDES SOCIAIS
   ============================================ */

.footer-premium__social {
  display: flex;
  gap: 10px;
}

.footer-premium__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-premium__social-link:hover {
  background: #b03a33;
  color: #fff;
  border-color: #b03a33;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(176, 58, 51, 0.25);
}

/* ============================================
   TÍTULOS DAS COLUNAS
   ============================================ */

.footer-premium__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}

.footer-premium__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #b03a33;
}

/* ============================================
   LISTAS DE LINKS
   ============================================ */

.footer-premium__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-premium__list li {
  padding: 6px 0;
}

.footer-premium__list li:first-child {
  padding-top: 0;
}

.footer-premium__list a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
}

.footer-premium__list a:hover {
  color: #b03a33;
  transform: translateX(4px);
}

/* ============================================
   LISTA DE CONTATO
   ============================================ */

.footer-premium__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-premium__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-premium__contact-list li:first-child {
  padding-top: 0;
}

.footer-premium__contact-list i {
  color: #b03a33;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer-premium__contact-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-premium__contact-list a:hover {
  color: #b03a33;
}

.footer-premium__hours {
  margin-top: 4px;
}

.footer-premium__hours i {
  margin-top: 1px;
}

.footer-premium__hours span {
  line-height: 1.6;
}

/* ============================================
   RODAPÉ INFERIOR
   ============================================ */

.footer-premium__bottom {
  padding: 20px 0;
}

.footer-premium__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-premium__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer-premium__copyright strong {
  color: rgba(255, 255, 255, 0.6);
}

.footer-premium__credits {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  margin: 0;
}

.footer-premium__credits i {
  color: #b03a33;
  font-size: 12px;
}

.footer-premium__credits a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-premium__credits a:hover {
  color: #b03a33;
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 992px) {
  .footer-premium__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-premium__col--about {
    grid-column: 1 / -1;
  }

  .footer-premium__about-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-premium__top {
    padding: 40px 0 30px;
  }

  .footer-premium__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-premium__col--about {
    grid-column: auto;
  }

  .footer-premium__logo-text {
    font-size: 24px;
  }

  .footer-premium__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-premium__copyright {
    font-size: 12px;
  }

  .footer-premium__credits {
    font-size: 11px;
  }

  .footer-premium__contact-list li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-premium__top {
    padding: 30px 0 20px;
  }

  .footer-premium__logo-text {
    font-size: 22px;
  }

  .footer-premium__about-text {
    font-size: 13px;
  }

  .footer-premium__title {
    font-size: 15px;
  }

  .footer-premium__list a {
    font-size: 13px;
  }

  .footer-premium__social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
	



/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h2 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
	color: #2B2B2B;
}

.page-title .breadcrumbs ol li a {
  padding-left: 10px;
	color: #2B2B2B;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
	color: #af4037;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #000;
}