/* ==========================================================================
   Base Styles
   ========================================================================== */
:root {
  --primary-color: #11868f;
  --primary-dark: #0d6e76;
  --primary-light: #14a3ad;
  --secondary-color: #f8c537;
  --secondary-dark: #e6b42e;
  --dark-color: #2a2a2a;
  --dark-gray: #4a4a4a;
  --medium-gray: #6c757d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --body-font: 'Poppins', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --container-width: 1200px;
}

[data-theme="dark"] {
  --dark-color: #f8f9fa;
  --dark-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --light-gray: #212529;
  --white: #2a2a2a;
  --black: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-icon {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark-color);
}

.btn-light {
  background-color: var(--white);
  color: var(--dark-color);
}

.btn-light:hover {
  background-color: var(--light-gray);
  color: var(--dark-color);
}

.btn-link {
  color: var(--primary-color);
  padding: 0;
  position: relative;
}

.btn-link:hover {
  color: var(--primary-dark);
  transform: none;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.btn-link:hover::after {
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--medium-gray);
}

.bg-light {
  background-color: var(--light-gray);
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header-scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle, .mobile-menu {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--dark-color);
  transition: var(--transition);
}

.theme-toggle:hover, .mobile-menu:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  z-index: 1001;
}

.mobile-menu i {
  font-size: 1.25rem;
}

.main-nav ul {
  transition: var(--transition);
}

@media (max-width: 992px) {
  .mobile-menu {
    display: flex;
  }
  
  .main-nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .main-nav ul.active {
    right: 0;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-clients {
  margin-top: 3rem;
}

.hero-clients .small {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 0rem;
  flex-wrap: wrap;
}

.client-logos img {
  height: 40px;
  border-radius: 50%;
  width: auto;
  opacity: 0.6;
  transition: var(--transition);
}

.client-logos img:hover {
  opacity: 1;
}

.hero-image {
  position: absolute;
  top: 10%;
  right: 0;
  transform: translateY(-50%);
  max-width: 50%;
}
.hero-clients h4{
  padding-left: 1px;
  padding-top: 30px;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(17, 134, 143, 0.1);
  z-index: -1;
}

.hero-shape.shape-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
}

.hero-shape.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
}

.hero-shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 20%;
}

@media (max-width: 1200px) {
  .hero-image {
    max-width: 45%;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 8rem 0 4rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-clients {
    text-align: center;
  }
  
  .client-logos {
    justify-content: center;
  }
  
  .hero-image {
    position: relative;
    max-width: 100%;
    transform: none;
    margin: 0 auto;
  }
  
  .hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-image img {
  display: block; /* garante que o filtro abarque toda a imagem */
}


.about-badge {
  position: absolute;
  top: -80px;
  right: -10px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.about-badge span {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(17, 134, 143, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--medium-gray);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    width: 100%;
  }
  
  .about-image {
    margin-top: 3rem;
  }
}
/* ==========================================================================
   Services Section - 3D Cards
   ========================================================================== */
.services {
  padding: 5rem 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.service-card-3d {
  perspective: 1000px;
  height: 320px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.service-card-3d:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--black);
}

.card-back h3 {
  color: var(--black);
  margin-bottom: 1.5rem;
}

.card-back .service-features li i {
  color: #a5f3fc;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(17, 134, 143, 0.1) 0%, rgba(13, 110, 122, 0.1) 100%);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.card-front:hover .service-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(17, 134, 143, 0.2);
}

.service-card-3d h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.card-back h3 {
  color: var(--black);
}

.service-card-3d p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-back p {
  color: rgba(255, 255, 255, 0.8);
}

.service-features {
  margin: 1rem 0;
  text-align: left;
  width: 100%;
}

.service-features li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.card-back .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.flip-btn {
  margin-top: auto;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-back .btn-link {
  margin-top: auto;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: fit-content;
}
.card-back h3{
  color: white;
}

.card-back .btn-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--black);
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .service-card-3d {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .card-front {
  background: var(--white); /* Corrigido para usar a cor do tema */
  color: var(--dark-color);
}

[data-theme="dark"] .service-card-3d h3 {
  color: var(--dark-color);
}

[data-theme="dark"] .service-card-3d p {
  color: var(--medium-gray);
}

[data-theme="dark"] .service-icon {
  background: linear-gradient(135deg, rgba(17, 134, 143, 0.2) 0%, rgba(13, 110, 122, 0.2) 100%);
}

[data-theme="dark"] .flip-btn {
  color: var(--primary-light);
}

/* Responsividade */
@media (max-width: 992px) {
  .services-container {
    display: block;
  }
}

@media (max-width: 768px) {
  .service-card-3d {
    height: 350px;
  }
  
  .card-front, .card-back {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .services-container {
    display: block;
  }
  
  .service-card-3d {
    height: 350px;
    margin-bottom: 20px;
    max-width: 350px;
  }
}
/* ==========================================================================
   Process Section
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.process-step {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(17, 134, 143, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
  counter-increment: step-counter;
}

.step-number::before {
  content: counter(step-counter, decimal-leading-zero);
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--medium-gray);
  border-radius: 50px;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 134, 143, 0.9);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-category {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-title {
  margin-bottom: 1rem;
  color: var(--white);
}

.portfolio-link {
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.portfolio-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.portfolio-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-slider {
  padding: 2rem 0;
}

.testimonial-slide {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial-content::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(17, 134, 143, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.rating {
  color: var(--secondary-color);
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--medium-gray);
  opacity: 0.5;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1;
}
/* ==========================================================================
   Pricing Section - Updated for 4 plans with Dark Mode
   ========================================================================== */
.pricing-01 {
  padding: 5rem 0;
  background-color: var(--light-gray);
  transition: var(--transition);
}

.pricing-grid-01 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 0px;
  margin-bottom: 3rem;
}

.pricing-card-01 {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color, #e1e5ee);
  display: flex;
  flex-direction: column;
}

.pricing-card-01:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card-01.featured {
  border: 2px solid var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge-01 {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-header-01 {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color, #f0f2f7);
}

.pricing-header-01 h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.price-01 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency-01 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.3rem;
  margin-right: 0.2rem;
  color: var(--dark-color);
}

.amount-01 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark-color);
}

.period-01 {
  font-size: 0.9rem;
  color: var(--medium-gray);
  align-self: flex-end;
  margin-bottom: 0.5rem;
  margin-left: 0.2rem;
}

.pricing-header-01 p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pricing-features-01 {
  padding: 1.5rem;
  margin: 0;
  flex-grow: 1;
}

.pricing-features-01 li {
  list-style: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--dark-color);
  display: flex;
  align-items: flex-start;
}

.pricing-features-01 li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.btn-block-01 {
  display: block;
  width: calc(100% - 3rem);
  margin: 1.0rem;
  text-align: center;
}

.pricing-custom-01 {
  max-width: 100%;
  margin-top: 3rem;
}

.custom-card-01 {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed var(--primary-color);
}

.custom-card-01 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.custom-card-01 p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .pricing-01 {
  background-color: var(--dark-bg);
}

[data-theme="dark"] .pricing-card-01 {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

[data-theme="dark"] .pricing-header-01 {
  border-bottom-color: var(--dark-border);
}

[data-theme="dark"] .custom-card-01 {
  background: var(--dark-card);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .pricing-grid-01 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card-01.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-grid-01 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .custom-card-01 {
    flex-direction: column;
    text-align: center;
  }
  
  .custom-card-01 a {
    margin-top: 1.5rem;
  }
}


/* ==========================================================================
   Pricing Section - Updated for 4 plans with Dark Mode
   ========================================================================== */
.pricing {
  padding: 5rem 0;
  background-color: var(--light-gray);
  transition: var(--transition);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color, #e1e5ee);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color, #f0f2f7);
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.3rem;
  margin-right: 0.2rem;
  color: var(--dark-color);
}

.amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark-color);
}

.period {
  font-size: 0.9rem;
  color: var(--medium-gray);
  align-self: flex-end;
  margin-bottom: 0.5rem;
  margin-left: 0.2rem;
}

.pricing-header p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pricing-features {
  padding: 1.5rem;
  margin: 0;
  flex-grow: 1;
}

.pricing-features li {
  list-style: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--dark-color);
  display: flex;
  align-items: flex-start;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.btn-block {
  display: block;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  text-align: center;
}

.pricing-custom {
  max-width: 100%;
  margin-top: 3rem;
}

.custom-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed var(--primary-color);
}

.custom-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.custom-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .pricing {
  background-color: var(--light-gray);
}

[data-theme="dark"] .pricing-card {
  background: var(--white);
  border-color: var(--dark-gray);
}

[data-theme="dark"] .pricing-header {
  border-bottom-color: var(--dark-gray);
}

[data-theme="dark"] .custom-card {
  background: var(--white);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .custom-card {
    flex-direction: column;
    text-align: center;
  }
  
  .custom-card a {
    margin-top: 1.5rem;
  }
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-name {
  margin-bottom: 0.25rem;
}

.member-role {
  display: block;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-info p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  width: 36px;
  height: 36px;
  background-color: var(--light-gray);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.blog-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.blog-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.blog-meta i {
  margin-right: 0.25rem;
  color: var(--primary-color);
}

.blog-content h3 {
  margin-bottom: 1rem;
}

.blog-content h3 a {
  color: var(--dark-color);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}


/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
  height: 400px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(50%) invert(90%) contrast(90%) hue-rotate(180deg); /* Mantém o estilo dark do mapa */
}

/* ==========================================================================
   Footer - Dark Mode Permanente
   ========================================================================== */
.footer {
  background-color: #2a2a2a; /* --dark-color */
  color: #f8f9fa; /* --white */
  padding: 6rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #f8f9fa; /* --white */
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 600;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #11868f; /* --primary-color */
}

.footer-logo img {
  margin-bottom: 1.5rem;
  max-width: 180px;
  height: auto;
}

.footer-about p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f8f9fa; /* --white */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #11868f; /* --primary-color */
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f8f9fa; /* --white */
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact i {
  margin-top: 3px;
  color: #11868f; /* --primary-color */
  min-width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #f8f9fa; /* --white */
  text-decoration: underline;
}

/* Newsletter Form Styles */
#newsletterForm {
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 8px; /* --border-radius */
}

#newsletterForm .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

#newsletterForm input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px; /* --border-radius */
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: #f8f9fa; /* --white */
}

#newsletterForm input:focus {
  outline: none;
  border-color: #11868f; /* --primary-color */
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(17, 134, 143, 0.2);
}

#newsletterForm input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.btn-newsletter {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f8f9fa; /* --white */
  background-color: #11868f; /* --primary-color */
  border: none;
  border-radius: 8px; /* --border-radius */
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-newsletter:hover {
  background-color: #0d6e76; /* --primary-dark */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* --shadow-md */
}

.btn-newsletter:active {
  transform: translateY(0);
}

.btn-newsletter:disabled {
  background-color: #6c757d; /* --medium-gray */
  cursor: not-allowed;
  transform: none;
}

.success-message {
  display: none;
  text-align: center;
  color: #d1fae5;
  background-color: rgba(16, 185, 129, 0.2);
  padding: 1rem;
  border-radius: 8px; /* --border-radius */
  margin-top: 1rem;
  animation: fadeIn 0.5s ease-in-out;
}

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: #f8f9fa; /* --white */
  text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 768px) {
  .map-section {
    height: 300px;
  }
  .about-badge p {
  font-size: 0.7rem;
  margin-bottom: 0;
}

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: var(--white);
  transform: scale(1.1);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }


  .section-title {
    margin-bottom: 3rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .footer {
    padding: 4rem 0 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .section-title h2::after {
    bottom: -8px;
    height: 2px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    bottom: 20px;
    left: 20px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 110px;
    right: 20px;
  }
}