﻿<style>
/* =========================================================
   BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================
   MENU
   ========================================================= */

/* Header Wrapper */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Top Bar */
.header-top-bar {
  background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
  color: #b2bec3;
}

.top-info i {
  color: #F5B427;
  margin-right: 5px;
}

.mini-cta {
  background: #F5B427;
  color: #2d3436;
  padding: 5px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mini-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 180, 39, 0.3);
}

/* Main Header */
.main-header {
  background: #ffffff;
  padding: 15px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.navbar-brand {
  flex-shrink: 0;
  padding-top: 20px;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 2003;
}

.toggle-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #2d3436;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Navigation */
.nav-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  color: #2d3436;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(245, 180, 39, 0.1);
  color: #F5B427;
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 20px;
  animation: slideDown 0.3s ease;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.mega-column h4 {
  font-size: 16px;
  color: #2d3436;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.mega-column h4 i {
  color: #F5B427;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-links li {
  margin-bottom: 10px;
}

.mega-links a {
  color: #636e72;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.mega-links a:hover {
  color: #F5B427;
  padding-left: 10px;
}

/* Featured Card */
.featured-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e3e6ea 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.featured-card i {
  font-size: 30px;
  color: #F5B427;
  margin-bottom: 10px;
}

.featured-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2d3436;
}

.featured-card p {
  font-size: 13px;
  color: #636e72;
  margin-bottom: 15px;
}

.featured-link {
  color: #F5B427;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 20px;
  animation: slideDown 0.3s ease;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-links li {
  margin-bottom: 10px;
}

.dropdown-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #636e72;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dropdown-links a:hover {
  background: rgba(245, 180, 39, 0.1);
  color: #F5B427;
  transform: translateX(5px);
}

.dropdown-links i {
  color: #F5B427;
  width: 20px;
  text-align: center;
}

/* Cities Menu */
.cities-menu {
  width: 500px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.city-group h5 {
  font-size: 14px;
  color: #2d3436;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}

.city-group h5 i {
  color: #F5B427;
}

.city-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-group li {
  margin-bottom: 8px;
}

.city-group a {
  color: #636e72;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.city-group a:hover {
  color: #F5B427;
  padding-left: 5px;
}

/* CTA Button */
.nav-cta {
  background: rgba(245, 180, 39, 0.1);
  color: #F5B427 !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: #F5B427;
  color: #ffffff !important;
}

/* Header CTA */
.header-cta {
  margin-left: 20px;
}

.btn-header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5B427;
  color: #2d3436;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 180, 39, 0.2);
}

.btn-header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 180, 39, 0.3);
}

/* Mobile Social */
.mobile-social {
  display: none;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}

.mobile-social a {
  width: 40px;
  height: 40px;
  background: rgba(245, 180, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5B427;
  transition: all 0.3s ease;
}

.mobile-social a:hover {
  background: #F5B427;
  color: #ffffff;
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1999;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Scroll Effect */
.header-wrapper.scrolled {
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.header-wrapper.scrolled .main-header {
  padding: 10px 0;
}

/* Loading State */
.nav-link.loading {
  pointer-events: none;
  opacity: 0.6;
}

.nav-link.loading::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #F5B427;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Responsive Menu */
@media (max-width: 1024px) {
  .header-top-bar {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 2002;
  }

  .nav-wrapper.active {
    right: 0;
  }

  .mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    width: 100%;
    padding: 15px 0;
    border-radius: 0;
    justify-content: space-between;
  }

  .mega-menu,
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0;
    padding: 15px;
    border-radius: 0;
    display: none;
    animation: none;
  }

  .nav-item.active .mega-menu,
  .nav-item.active .dropdown-menu {
    display: block;
  }

  .nav-item.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-card {
    display: none;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .mobile-social {
    display: flex;
  }
}

/* Animations */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* =========================================================
   BANNER
   ========================================================= */

.banner_area {
  position: relative;
  background: #f2f2f2;
  padding: 180px 0 70px;
  overflow: hidden;
}

.banner_area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12) 0px,
    rgba(255, 255, 255, 0.12) 2px,
    transparent 2px,
    transparent 80px
  );
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

/* Decorative Elements */
.banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  top: -150px;
  right: -50px;
}

.decoration-2 {
  width: 200px;
  height: 200px;
  background: #e17055;
  bottom: -100px;
  left: 10%;
}

/* Content */
.banner-content,
.banner-badge,
.banner-cta {
  position: relative;
  z-index: 2;
}

.banner-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 112, 85, 0.2);
  border: 1px solid rgba(225, 112, 85, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.badge-icon { font-size: 16px; }

.badge-text {
  color: #e17055;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-title .highlight {
  background: none !important;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #F5B427;
  color: #F5B427;
}

.banner-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #b2bec3;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 700px;

  margin-left: auto;
  margin-right: auto;
}

.text-accent {
  color: #ffffff;
  font-weight: 600;
}

.banner-cta {
  display: flex;
  justify-content: center;
}

.btn-primary {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(225, 112, 85, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(225, 112, 85, 0.4);
}

@media (max-width: 768px) {
  .banner_area {
    padding-top: 250px;
    padding-right: 20px;
    padding-bottom: 180px;
    padding-left: 20px;
  }
  
  .banner-title { font-size: 28px; }

  .banner-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .banner-badge {
    padding: 6px 16px;
    margin-bottom: 15px;
  }
  
  .badge-text { font-size: 11px; }

  .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
  }
}


/* =========================================================
   ABOUT
   ========================================================= */

.about_us_area {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.about_us_area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 36px;
  color: #2d3436;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #e17055;
  border-radius: 2px;
}

.section-header h3 {
  font-size: 20px;
  color: #636e72;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

/* Hero Question */
.hero-question {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.hero-question h2 {
  font-size: 20px;
  color: #2d3436;
  font-weight: 600;
  margin: 0 0 30px 0;
  position: relative;
  padding-bottom: 20px;
}

.hero-question h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e17055;
  border-radius: 2px;
}

/* Image Container */
.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover .feature-image {
  transform: scale(1.05);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Services Showcase */
.services-showcase { padding-left: 30px; }

.services-title {
  font-size: 30px;
  color: #2d3436;
  font-weight: 700;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  position: relative;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #e17055;
  border-radius: 2px;
}

/* Escopado para não conflitar com outros ícones */
.services-title .title-icon {
  font-size: 28px;
  margin-right: 15px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(225,112,85,0.15);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.service-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-item:hover .service-number {
  transform: rotate(360deg);
}

.service-content h4 {
  font-size: 22px;
  color: #2d3436;
  font-weight: 600;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.service-item:hover .service-content h4 {
  color: #e17055;
}

.service-content p {
  font-size: 16px;
  color: #636e72;
  line-height: 1.6;
  margin: 0;
}

.service-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225,112,85,0.1), transparent);
  transition: left 0.6s ease;
}

.service-item:hover .service-hover-effect {
  left: 100%;
}

.cta-wrapper {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Video Showcase */
.video-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-pulse {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: pulse-animation 2s ease-out infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Content Box */
.content-box { padding-left: 40px; }

.content-title {
  font-size: 30px;
  color: #2d3436;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  position: relative;
}

/* Escopado para não conflitar com .services-title .title-icon */
.content-title .title-icon {
  font-size: 28px;
  margin-right: 15px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Highlight Card */
.highlight-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-left: 4px solid #e17055;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(225,112,85,0.15);
}

.highlight-icon { font-size: 40px; flex-shrink: 0; }

.highlight-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #2d3436;
}

/* Benefits */
.benefits-list { margin-bottom: 30px; }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon span { font-size: 24px; }

.benefit-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.benefit-content strong {
  color: #2d3436;
  font-weight: 600;
}

/* CTA Message */
.cta-message {
  background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(225,112,85,0.25);
  position: relative;
  overflow: hidden;
}

.cta-message::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.cta-message p {
  margin: 0 0 10px 0;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.cta-highlight {
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.5); }
  50% { text-shadow: 0 0 20px rgba(255,255,255,0.8); }
}

.button-wrapper {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Entrada */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive About */
@media (max-width: 768px) {
  .about_us_area { padding: 60px 0; }

  .section-header h2 { font-size: 28px; }
  .section-header h3 { font-size: 18px; }

  .hero-question { padding: 30px 20px; }
  .hero-question h2 { font-size: 24px; }

  .services-showcase {
    padding-left: 0;
    margin-top: 40px;
  }

  .services-title { font-size: 26px; }

  .service-item { padding: 20px; }

  .service-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .service-content h4 { font-size: 20px; }
  .service-content p { font-size: 15px; }

  .service-item:hover {
    transform: translateX(0) translateY(-5px);
  }

  .content-box {
    padding-left: 0;
    margin-top: 40px;
  }

  .content-title { font-size: 26px; }

  .highlight-card {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item { padding: 15px; }

  .benefit-item:hover {
    transform: translateX(0) translateY(-5px);
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .benefit-icon span { font-size: 20px; }

  .cta-message { padding: 25px 20px; }
  .cta-message p { font-size: 16px; }
  .cta-highlight { font-size: 20px; }
}



/* =========================================================
   INTEGRAÇÃO HERO, ISOLADA NO BANNER
   Aplique adicionando a classe hero-background em .banner_area
   ========================================================= */

/* 1) Fundo escuro somente neste banner */
.banner_area.hero-background {
  background: #241413;
}

/* 2) Reaproveita o padrão que você já tem em .banner_area::before
      e apenas adiciona a animação "respiração" nesse modo */
.banner_area.hero-background::before {
  animation: pulsePattern 25s infinite ease-in-out;
}

/* 3) Se existir um elemento .hero-pattern dentro do banner,
      ele pode duplicar o padrão, então desativamos somente aqui */
.banner_area.hero-background .hero-pattern {
  display: none;
}

/* 4) Se você estiver usando classes hero, elas ficam escopadas ao banner
      e não impactam outros lugares do site */
.banner_area.hero-background .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.banner_area.hero-background .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 180, 39, 0.2);
  border: 1px solid rgba(245, 180, 39, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 30px;
  color: #F5B427;
  font-weight: 600;
  font-size: 14px;
}

.banner_area.hero-background .hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.banner_area.hero-background .hero-subtitle {
  font-size: 20px;
  color: #b2bec3;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* 5) Animação do padrão */
@keyframes pulsePattern {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}




</style>
