:root {
  --primary: #ffc221;
  --dark: #000000;
  --white: #fff;
  --gray: #f5f5f5;
  --text: #545454;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Garantir que todos os ícones Font Awesome funcionem */
.fas, .far, .fab, .fal, .fad, .fa, 
i[class*="fa-"], 
[class*="fa-"]:before,
.fa:before, 
.fas:before, 
.far:before, 
.fab:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  display: inline-block !important;
  font-size: inherit !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.far, .far:before {
  font-weight: 400 !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
}

.fab, .fab:before {
  font-weight: 400 !important;
  font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "Font Awesome 6 Free" !important;
}

/* Força específica para elementos com classe fa */
*[class^="fa-"]:before, 
*[class*=" fa-"]:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900 !important;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px;
}

header {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-btn {
  background: linear-gradient(135deg, #ffc221 0%, #ffb800 50%, #ffc221 100%);
  color: var(--dark) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  animation: gradientPulse 2.5s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
}

.demo-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 194, 33, 0.8) 0%, 
    rgba(255, 255, 255, 0.6) 25%, 
    rgba(255, 194, 33, 0.8) 50%, 
    rgba(255, 255, 255, 0.6) 75%, 
    rgba(255, 194, 33, 0.8) 100%);
  border-radius: 6px;
  z-index: -1;
  animation: borderFlow 3s linear infinite;
  opacity: 0.7;
}

.demo-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    transparent 100%);
  animation: shimmer 2s ease-in-out infinite;
  pointer-events: none;
}

.demo-btn:hover {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
}

@keyframes gradientPulse {
  0%, 100% {
    background: linear-gradient(135deg, #ffc221 0%, #ffb800 50%, #ffc221 100%);
    box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
  }
  50% {
    background: linear-gradient(135deg, #ffb800 0%, #ffc221 50%, #ffb800 100%);
    box-shadow: 0 6px 20px rgba(255, 194, 33, 0.5);
  }
}

@keyframes borderFlow {
  0% {
    background: linear-gradient(45deg, 
      rgba(255, 194, 33, 0.8) 0%, 
      rgba(255, 255, 255, 0.6) 25%, 
      rgba(255, 194, 33, 0.8) 50%, 
      rgba(255, 255, 255, 0.6) 75%, 
      rgba(255, 194, 33, 0.8) 100%);
  }
  50% {
    background: linear-gradient(45deg, 
      rgba(255, 255, 255, 0.6) 0%, 
      rgba(255, 194, 33, 0.8) 25%, 
      rgba(255, 255, 255, 0.6) 50%, 
      rgba(255, 194, 33, 0.8) 75%, 
      rgba(255, 255, 255, 0.6) 100%);
  }
  100% {
    background: linear-gradient(45deg, 
      rgba(255, 194, 33, 0.8) 0%, 
      rgba(255, 255, 255, 0.6) 25%, 
      rgba(255, 194, 33, 0.8) 50%, 
      rgba(255, 255, 255, 0.6) 75%, 
      rgba(255, 194, 33, 0.8) 100%);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.menu-item {
  position: relative;
}

.submenu {
  position: absolute;
  width: 100vw;
  left: calc(-50vw + 50%);
  top: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 0;
  z-index: 1000;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 1366px) {
  .submenu {
    width: 95vw;
    left: calc(-47.5vw + 50% - 150px);
    max-width: 95vw;
    margin: 0 2.5vw;
  }

  .submenu-content {
    max-width: 100%;
    padding: 30px 1.5% 30px 1.5%;
  }

  .submenu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow-x: hidden;
    padding: 0 1%;
  }
}

@media (max-width: 1200px) {
  .submenu {
    width: 92vw;
    left: calc(-46vw + 50% - 150px);
    max-width: 92vw;
    margin: 0 4vw;
  }

  .submenu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.submenu[data-js-active="true"] {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hover effect only on desktop (min-width: 769px) */
@media (min-width: 769px) and (hover: hover) {
  .menu-item:hover .submenu:not([data-js-active]) {
    opacity: 1;
    visibility: visible;
  }
}

.nav-links {
  position: relative;
}

.submenu-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 3% 30px 0.5%;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.menu-card {
  background: var(--white);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 85px;
  cursor: pointer;
}

.menu-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.menu-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card h3 {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.menu-card p {
  color: var(--text);
  font-size: 0.75rem;
  line-height: 1.3;
  margin: 0;
}

.menu-card.restricted {
  background: #1B8E3D;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 25px;
  text-align: left;
  height: 150px;
}

.menu-card.restricted h3,
.menu-card.restricted p {
  color: white;
  margin: 0;
  text-align: center;
}

.menu-card.restricted h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.menu-card.restricted p {
  font-size: 0.85rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.lock-icon {
  min-width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.lock-icon i {
  font-size: 1.5rem;
  color: #1B8E3D;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Destacar card Treinamentos com fundo amarelo claro */
.menu-card:first-child {
  background: #fffbf0;
  border: 1px solid rgba(255, 194, 33, 0.3);
}

.menu-card:first-child:hover {
  background: #fff8e1;
  border-color: rgba(255, 194, 33, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 194, 33, 0.2);
}



.card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.menu-card h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.menu-card p {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.submenu-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.cta-card {
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 8px;
}

.cta-card h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cta-card p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.cta-button-secondary {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.partner {
  background: var(--primary);
  color: var(--white);
}

.partner h3,
.partner p {
  color: var(--white);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 2rem 80px 2rem;
  min-height: 70vh;
  overflow: hidden;
}

#hero::before {
  display: none;
}

.hero-content {
  color: var(--dark);
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 194, 33, 0.1);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 194, 33, 0.2);
}

.hero-badge i {
  color: var(--primary);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.highlight-text {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  border: none;
}

.primary-btn {
  background: var(--primary);
  color: var(--dark);
}

.primary-btn:hover {
  background: var(--dark);
  color: var(--primary);
}

.secondary-btn {
  background: var(--primary);
  color: var(--dark);
}

.secondary-btn:hover {
  background: var(--dark);
  color: var(--primary);
}

/* Features Section */
#features {
  padding: 5rem 5%;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Solutions Section */
#solutions {
  padding: 5rem 5%;
}

#solutions h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.solution-box {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.solution-box:hover {
  transform: translateY(-5px);
}

.solution-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.solution-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.solution-box ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.solution-box ul li {
  padding: 0.5rem 0;
  color: var(--dark);
}

.solution-box a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Services Section */
#services {
  padding: 5rem 5%;
  background: var(--white);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-text h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-text p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Video Poster Styles */
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-poster {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poster-background {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.1);
}

.poster-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 2rem;
}

.poster-text {
  margin-bottom: 2.5rem;
}

.poster-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.play-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 194, 33, 0.3);
}

.play-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulse 2s infinite;
}

.play-icon i {
  font-size: 1.8rem;
  color: #000000;
  margin-left: 4px;
  transition: all 0.3s ease;
}

.play-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.video-container:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 194, 33, 0.4);
}

.video-container:hover .play-text {
  color: var(--primary);
}

/* Decorative Elements - Removidas para combinar com fundo branco */
.poster-decorations {
  display: none;
}

.decoration {
  display: none;
}

.decoration-1,
.decoration-2,
.decoration-3 {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-poster {
    height: 300px;
  }

  .poster-content {
    padding: 1.5rem;
  }

  .poster-text h3 {
    font-size: 1.5rem;
  }

  .play-icon {
    width: 60px;
    height: 60px;
  }

  .play-icon i {
    font-size: 1.4rem;
  }

  .play-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .video-poster {
    height: 250px;
  }

  .poster-content {
    padding: 1rem;
  }

  .poster-text h3 {
    font-size: 1.3rem;
  }

  .play-icon {
    width: 50px;
    height: 50px;
  }

  .play-icon i {
    font-size: 1.2rem;
  }

  .play-text {
    font-size: 0.8rem;
  }
}

.office-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 500px;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}



.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: 200px;
}

.gallery-item:first-child img {
  height: auto;
  max-height: 200px;
}

.certificate-badge {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.badge-circle {
  width: 80px;
  height: 80px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.badge-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.badge-line {
  width: 200px;
  height: 3px;
  background: var(--primary);
}

.certificate-mockup {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  text-align: center;
}

.certificate-header {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.certificate-header h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.certificate-header p {
  color: var(--text);
  font-size: 0.8rem;
  margin: 0;
}

.certificate-body h4 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.certificate-body p {
  color: var(--text);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  text-align: justify;
}

.certificate-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.signature-area {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.signature-area span {
  font-size: 0.7rem;
  color: var(--text);
  text-align: center;
  flex: 1;
}

/* Responsive Design for Services Section */
@media (max-width: 768px) {
  .services-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .services-text h2 {
    font-size: 2rem;
  }

  .services-text p {
    font-size: 1rem;
  }

  .office-gallery {
    max-width: 400px;
  }

  .gallery-item img {
    height: auto;
    max-height: 150px;
  }

  .gallery-item:first-child img {
    height: auto;
    max-height: 150px;
  }

  .certificate-badge {
    justify-content: center;
  }

  .badge-line {
    width: 150px;
  }

  .certificate-mockup {
    max-width: 350px;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-text h2 {
    font-size: 1.8rem;
  }

  .office-gallery {
    max-width: 320px;
    gap: 0.75rem;
  }

  .gallery-item img {
    height: auto;
    max-height: 120px;
  }

  .gallery-item:first-child img {
    height: auto;
    max-height: 120px;
  }

  .badge-circle {
    width: 60px;
    height: 60px;
  }

  .badge-text {
    font-size: 1rem;
  }

  .badge-line {
    width: 100px;
  }

  .certificate-mockup {
    max-width: 300px;
    padding: 1rem;
  }

  .certificate-body h4 {
    font-size: 1.1rem;
  }
}

/* Solutions Grid Section */
#solutions-grid {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solutions-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

.solutions-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 194, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900 !important;
  display: block;
}

.solution-icon i:before {
  display: block !important;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
}

.solution-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.solution-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* Responsive Design for Solutions Grid */
@media (max-width: 768px) {
  .solutions-header h2 {
    font-size: 2rem;
  }

  .solutions-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem 1.5rem;
  }

  .solution-card h3 {
    font-size: 1.2rem;
  }

  .solution-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .solutions-header h2 {
    font-size: 1.8rem;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .solution-icon {
    width: 50px;
    height: 50px;
  }

  .solution-icon i {
    font-size: 1.5rem;
  }
}

/* Statistics Section */
#statistics {
  padding: 5rem 5%;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/imagens/background-hero.png') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statistics-header {
  text-align: center;
  margin-bottom: 4rem;
}

.statistics-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.statistics-header p {
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 194, 33, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 194, 33, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 194, 33, 0.3);
  background: rgba(255, 194, 33, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 194, 33, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.stat-card:hover .stat-icon i {
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
  display: inline-block;
  min-height: 3rem;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  display: inline-block;
  margin-left: 0.25rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--primary);
  line-height: 1.4;
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card.animate .stat-number {
  animation: countUp 0.6s ease-out;
}

/* Responsive Design for Statistics */
@media (max-width: 768px) {
  #statistics {
    padding: 4rem 1rem;
  }

  .statistics-header h2 {
    font-size: 2rem;
  }

  .statistics-header p {
    font-size: 1rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-suffix {
    font-size: 1.2rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }
}

/* Services Grid Section */
#services-grid {
  padding: 5rem 5%;
  background: var(--white);
}

.services-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

.services-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
  background: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
}

.service-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(27, 142, 61, 0.3);
}

.service-card.featured img {
  filter: brightness(0) invert(1);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.service-card.featured .service-icon i {
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #FFD700;
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Services Grid */
@media (max-width: 768px) {
  .services-grid-header h2 {
    font-size: 2rem;
  }

  .services-grid-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .service-icon i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-grid-header h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 30px;
    height: 30px;
  }

  .service-icon i {
    font-size: 0.9rem;
  }

  .featured-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* SIPAT Calendar Styles */
.calendar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.calendar-day {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.calendar-day:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.calendar-day:nth-child(1) {
  border-top: 4px solid #e74c3c;
}

.calendar-day:nth-child(2) {
  border-top: 4px solid #f39c12;
}

.calendar-day:nth-child(3) {
  border-top: 4px solid #2ecc71;
}

.calendar-day:nth-child(4) {
  border-top: 4px solid #3498db;
}

.calendar-day:nth-child(5) {
  border-top: 4px solid #9b59b6;
}

.day-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.day-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
}

.day-info h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin: 0 0 0.25rem 0;
  font-weight: 700;
}

.day-info span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.day-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.topic-item:hover {
  background: rgba(255, 194, 33, 0.1);
  border-left-color: var(--primary);
  transform: translateX(5px);
}

.topic-item i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 24px;
  text-align: center;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.topic-item div {
  flex: 1;
}

.topic-item h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  line-height: 1.3;
}

.topic-item p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Calendar */
@media (max-width: 1200px) {
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .calendar-container {
    padding: 1rem 0;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .day-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .day-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .day-info h3 {
    font-size: 1.5rem;
  }

  .day-info span {
    font-size: 0.8rem;
  }

  .day-content {
    padding: 1.5rem;
    gap: 1rem;
  }

  .topic-item {
    padding: 0.75rem;
  }

  .topic-item h4 {
    font-size: 1rem;
  }

  .topic-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .day-header {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .day-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .day-info h3 {
    font-size: 1.3rem;
  }

  .day-content {
    padding: 1rem;
  }

  .topic-item {
    padding: 0.5rem;
    gap: 0.75rem;
  }

  .topic-item i {
    font-size: 1rem;
  }

  .topic-item h4 {
    font-size: 0.9rem;
  }

  .topic-item p {
    font-size: 0.8rem;
  }
}

/* Service Models Section */
.service-models {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.models-container {
  max-width: 1200px;
  margin: 0 auto;
}

.models-header {
  text-align: center;
  margin-bottom: 4rem;
}

.models-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
}

.models-header p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 800px;
  margin: 1rem auto 0 auto;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.model-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid #f0f0f0;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 194, 33, 0.2);
}

.model-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 194, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.model-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900 !important;
}

.model-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.model-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* Responsive Design for Service Models */
@media (max-width: 768px) {
  .models-header h2 {
    font-size: 2rem;
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .model-card {
    padding: 2rem 1.5rem;
  }

  .model-card h3 {
    font-size: 1.2rem;
  }

  .model-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .service-models {
    padding: 3rem 1rem;
  }

  .models-header h2 {
    font-size: 1.8rem;
  }

  .model-card {
    padding: 1.5rem;
  }

  .model-icon {
    width: 50px;
    height: 50px;
  }

  .model-icon i {
    font-size: 1.5rem;
  }
}

/* Ocultar card Aculturamento de Segurança apenas no desktop na seção services-grid */
@media (min-width: 769px) {
  #services-grid .service-card:last-child {
    display: none;
  }
}

/* Catalog Preview Section */
#catalog-preview {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.catalog-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-preview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.catalog-preview-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.catalog-preview-header p {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.catalog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.catalog-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 194, 33, 0.2);
}

.catalog-card:hover::before {
  height: 5px;
}

.catalog-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 194, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.catalog-card:hover .catalog-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.catalog-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.catalog-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.catalog-card-count {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 194, 33, 0.1);
  color: var(--primary);
  display: inline-block;
  border: 1px solid rgba(255, 194, 33, 0.2);
}

.catalog-preview-cta {
  text-align: center;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
  border: 2px solid var(--primary);
}

.catalog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 194, 33, 0.4);
  background: var(--dark);
  color: var(--primary);
  border-color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .catalog-preview-header h2 {
    font-size: 2rem;
  }
  
  .catalog-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .catalog-card {
    padding: 1.5rem;
  }
  
  .catalog-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .catalog-preview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Platform Gallery Section */
.platform-gallery {
  padding: 5rem 5%;
  background: var(--white);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.gallery-header p {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.gallery-instruction {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-instruction::before {
  content: "👆";
  font-size: 1.2rem;
}

/* Platform Carousel */
.platform-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.carousel-slide img:hover {
  transform: scale(1.02);
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-btn i {
  font-size: 1.2rem;
  color: var(--dark);
  transition: color 0.3s ease;
}

.carousel-btn:hover i {
  color: var(--white);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  background: rgba(248, 249, 250, 0.8);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--primary);
  opacity: 0.7;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
}

.image-modal .modal-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-modal.show .modal-content {
  transform: scale(1);
}

.image-modal .modal-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10001;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.modal-caption {
  color: white;
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design for Platform Gallery */
@media (max-width: 768px) {
  .platform-gallery {
    padding: 3rem 1rem;
  }

  .gallery-header h2 {
    font-size: 2rem;
  }

  .gallery-header p {
    font-size: 1.2rem;
  }

  .gallery-instruction {
    font-size: 0.9rem;
  }

  .carousel-container {
    height: 400px;
  }

  .carousel-slide img {
    padding: 15px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 1rem;
  }

  .carousel-controls {
    padding: 0 15px;
  }

  .close-modal {
    top: -40px;
    font-size: 2rem;
    width: 35px;
    height: 35px;
  }

  .modal-caption {
    font-size: 1rem;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-header h2 {
    font-size: 1.8rem;
  }

  .gallery-header p {
    font-size: 1.1rem;
  }

  .carousel-container {
    height: 300px;
  }

  .carousel-slide img {
    padding: 10px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn i {
    font-size: 0.9rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators {
    gap: 8px;
    padding: 15px 0;
  }
}

/* Styles for solution pages */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #b8860b 100%);
  color: var(--white);
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/imagens/background-hero.png') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  color: var(--white);
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

.content-coming-soon {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-card {
  background: var(--white);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, #b8860b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.icon-wrapper i {
  font-size: 2.5rem;
  color: var(--white);
}

.coming-soon-card h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.coming-soon-card p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.coming-soon-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text);
}

.coming-soon-card li i {
  color: var(--primary);
  font-size: 0.9rem;
}

.cta-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.cta-section p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--dark);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 142, 61, 0.3);
}

.primary-btn:hover {
  background: #1a7b3e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 142, 61, 0.4);
}

/* Responsive Design for solution pages */
@media (max-width: 768px) {
  .page-hero {
    padding: 6rem 5% 3rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .coming-soon-card {
    padding: 3rem 2rem;
  }

  .coming-soon-card h2 {
    font-size: 2rem;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-wrapper i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 5rem 5% 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .coming-soon-card {
    padding: 2rem 1.5rem;
  }

  .coming-soon-card h2 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* Blog Section */
#blog {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Ocultar imagem de destaque dos posts na home */
#blog .blog-image {
  display: none;
}

.blog-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.blog-card:hover .blog-image img {
  transform: scale(1.02);
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-category {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-category.artigos {
  background: var(--dark);
  color: var(--white);
}

.blog-category.noticias {
  background: var(--dark);
  color: var(--white);
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.85rem;
}

.blog-date i {
  font-size: 0.8rem;
  color: var(--primary);
}

.blog-content h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.blog-content p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reading-time-info {
  flex: 1 0 100%;
  margin-top: 0.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info span {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #177232;
  transform: translateX(3px);
}

.blog-read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(3px);
}

/* Responsive Design for Blog Section */
@media (max-width: 1200px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #blog {
    padding: 3rem 1rem;
  }

  .blog-header h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .blog-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-card {
    margin: 0 auto;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
  }

  .blog-image {
    border-radius: 20px 20px 0 0;
    height: 200px;
    overflow: hidden;
  }

  .blog-image img {
    height: 200px;
    object-fit: cover;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .blog-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .blog-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .blog-category {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
  }

  .blog-date {
    font-size: 0.85rem;
  }

  .blog-author {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .author-info {
    gap: 0.75rem;
  }

  .author-avatar {
    width: 35px;
    height: 35px;
  }

  .author-info span {
    font-size: 0.9rem;
  }

  .blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .reading-time-info {
    flex: 0;
    margin-top: 0;
    order: 2;
  }
}

@media (max-width: 480px) {
  #blog {
    padding: 2.5rem 0.75rem;
  }

  .blog-header h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .blog-cards {
    gap: 1.5rem;
  }

  .blog-card {
    max-width: 100%;
    margin: 0;
    border-radius: 15px;
  }

  .blog-image {
    border-radius: 15px 15px 0 0;
    height: 180px;
  }

  .blog-image img {
    height: 180px;
  }

  .blog-content {
    padding: 1.25rem;
  }

  .blog-content h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .blog-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .blog-category {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: 12px;
  }

  .blog-date {
    font-size: 0.8rem;
  }

  .blog-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .author-info {
    gap: 0.5rem;
  }

  .author-avatar {
    width: 30px;
    height: 30px;
  }

  .author-info span {
    font-size: 0.85rem;
  }

  .blog-read-more {
    font-size: 0.85rem;
    align-self: flex-end;
  }

  .reading-time-info {
    align-self: flex-start;
    order: 0;
  }

  .reading-time-info span {
    font-size: 0.8rem;
  }
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}

/* Technological effects in footer */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 194, 33, 0.05) 0%, 
    rgba(0, 0, 0, 0) 25%,
    rgba(255, 194, 33, 0.03) 50%,
    rgba(0, 0, 0, 0) 75%,
    rgba(255, 194, 33, 0.05) 100%
  );
  animation: techGradient 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes techGradient {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Floating technological particles */
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 194, 33, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 194, 33, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 194, 33, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 194, 33, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 194, 33, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: floatingParticles 15s linear infinite;
  z-index: 1;
}

@keyframes floatingParticles {
  0% { 
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% { 
    transform: translateY(-20px) translateX(10px);
    opacity: 0;
  }
}

/* Floating educational icons */
.footer-tech-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.tech-icon {
  position: absolute;
  color: rgba(255, 194, 33, 0.15);
  font-size: 2rem;
  animation: floatIcon 12s ease-in-out infinite;
}

.tech-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.tech-icon:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: -2s;
  font-size: 1.5rem;
}

.tech-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: -4s;
  font-size: 1.8rem;
}

.tech-icon:nth-child(4) {
  bottom: 15%;
  right: 25%;
  animation-delay: -6s;
  font-size: 2.2rem;
}

.tech-icon:nth-child(5) {
  top: 50%;
  left: 50%;
  animation-delay: -8s;
  font-size: 1.3rem;
}

.tech-icon:nth-child(6) {
  top: 30%;
  left: 70%;
  animation-delay: -10s;
  font-size: 1.7rem;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Circuit effect */
.footer-circuit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 194, 33, 0.5) 20%, 
    rgba(255, 194, 33, 0.8) 40%, 
    rgba(255, 194, 33, 0.5) 60%, 
    transparent 100%
  );
  animation: circuitFlow 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes circuitFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Adjust z-index of footer content */
.footer-content {
  position: relative;
  z-index: 4;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-info img {
  height: 255px;
  margin-bottom: 1rem;
  filter: none !important;
  opacity: 1 !important;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social_links a:hover {
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .submenu {
    width: 90vw;
    left: calc(-45vw + 50% - 150px);
    max-width: 90vw;
    margin: 0 5vw;
  }

  .submenu-content {
    padding: 20px 1%;
    max-width: 100%;
  }

  .submenu-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    gap: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .menu-card {
    height: auto;
    min-height: 80px;
    padding: 10px;
    max-width: 100%;
  }

  .menu-card img {
    width: 45px;
    height: 45px;
  }

  .menu-card h3 {
    font-size: 0.8rem;
  }

  .menu-card p {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0;
  }

  .logo {
    padding: 0.5rem 0.75rem;
  }

  .logo img {
    height: 42px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .demo-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    border-bottom: none !important;
    display: block !important;
    background: var(--primary) !important;
    color: var(--dark) !important;
    border-radius: 4px;
    text-align: center;
    width: 80%;
    margin: 1rem auto 0 auto;
    box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
    font-weight: 600;
  }

  .submenu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 70px;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    background: var(--white);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-sizing: border-box;
    padding: 0;
  }

  .submenu.active {
    opacity: 1;
    visibility: visible;
  }

  .submenu-content {
    padding: 20px;
  }

  .submenu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-card {
    min-height: 100px;
    padding: 15px;
    gap: 12px;
  }

  .menu-card img {
    width: 60px;
    height: 60px;
  }

  .menu-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .menu-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .menu-card.restricted {
    grid-template-columns: auto 1fr;
    padding: 15px;
    min-height: 80px;
  }

  .lock-icon {
    min-width: 40px;
    height: 40px;
  }

  .lock-icon i {
    font-size: 1.2rem;
  }

  .menu-card.restricted h3 {
    font-size: 1.1rem;
  }

  .menu-card.restricted p {
    font-size: 0.8rem;
  }

  .menu-featured-badge {
    top: -6px;
    right: -6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.55rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.5rem;
  }

  .logo {
    padding: 0.4rem 0.6rem;
  }

  .submenu-content {
    padding: 3px;
  }

  .submenu-grid {
    padding: 3px;
    gap: 8px;
  }

  .menu-card {
    min-height: 90px;
    padding: 10px;
    gap: 10px;
  }

  .menu-card img {
    width: 50px;
    height: 50px;
  }

  .menu-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .menu-card p {
    font-size: 12px;
  }

  .menu-featured-badge {
    top: -4px;
    right: -4px;
    padding: 0.2rem 0.4rem;
    font-size: 0.5rem;
    border-radius: 8px;
  }

  .demo-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .primary-btn,
  .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {

  /* Hero Mobile Styles */
  #hero {
    padding: 0 0.5rem 3rem 0.5rem;
    padding-top: calc(100px + 1rem);
    min-height: calc(100vh - 100px);
    height: calc(100vh - 100px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }

  #hero::before {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {

  /* Hero Mobile Extra Small */
  #hero {
    padding: 0.5rem 0.75rem 2.5rem 0.75rem;
    min-height: calc(100vh - 100px);
    height: calc(100vh - 100px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  #hero::before {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* Article Page Styles */
.breadcrumb {
  background: var(--primary);
  padding: 1.5rem 5% 1rem 5%;
  padding-top: calc(70px + 1.5rem);
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.breadcrumb-link {
  color: #888;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.breadcrumb-link i {
  font-size: 0.8rem;
}

.breadcrumb-separator {
  color: #ccc;
  font-size: 0.7rem;
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: var(--dark);
  font-weight: 600;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-page {
  padding: 3rem 5% 5rem 5%;
  background: var(--white);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-page-header {
  margin-bottom: 3rem;
  text-align: left;
  position: static;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.article-category-wrapper {
  margin-bottom: 1.5rem;
}

.article-category {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.article-category.artigos {
  background: var(--dark);
  color: var(--white);
}

.article-category.noticias {
  background: var(--dark);
  color: var(--white);
}

.article-title {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.article-date-reading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text);
}

.article-date,
.reading-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-date i,
.reading-time i {
  color: var(--primary);
  font-size: 0.8rem;
}

.article-featured-image {
  margin-bottom: 3rem;
  border-radius: 15px;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Newsletter CTA */
.newsletter-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #e6ae1e 100%);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  color: var(--dark);
  text-align: center;
}

.newsletter-content h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: white;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  color: var(--dark);
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
  background: var(--dark);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Article Body */
.article-body {
  line-height: 1.8;
}

.article-content {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.article-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.article-content h2,
.article-content h3 {
  color: var(--primary);
  margin: 2rem 0 1rem 0;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Article Gallery */
.article-gallery {
  margin: 3rem 0;
}

.article-gallery h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.article-gallery .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* Related Articles */
.related-articles {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  margin-top: 3rem;
}

.related-articles h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.related-links {
  list-style: none;
  margin-bottom: 2rem;
}

.related-links li {
  margin-bottom: 0.75rem;
}

.related-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.related-link:hover {
  border-bottom-color: var(--primary);
  padding-left: 0.5rem;
}

.related-description,
.related-conclusion {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
}

/* Articles Filter Styles */
.articles-filter {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 5%;
  border-bottom: 1px solid rgba(27, 142, 61, 0.1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.articles-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.filter-buttons {
  display: flex;
  gap: 1.25rem;
  background: white;
  padding: 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #177232 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.filter-btn:hover::before {
  opacity: 0.1;
}

.filter-btn.active::before {
  opacity: 1;
}

.filter-btn:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #177232 100%);
  box-shadow: 0 6px 20px rgba(27, 142, 61, 0.3);
}

.filter-btn i,
.filter-btn span {
  position: relative;
  z-index: 1;
}

.filter-btn i {
  font-size: 0.85rem;
}

.articles-count {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

/* Articles Page Styles */
.articles-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #177232 100%);
  padding: 8rem 5% 5rem 5%;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.articles-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/imagens/background-hero.png') center/cover;
  opacity: 0.2;
  z-index: 0;
}

.articles-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.articles-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.articles-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.articles-filter {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 5%;
  border-bottom: 1px solid rgba(27, 142, 61, 0.1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.articles-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.filter-buttons {
  display: flex;
  gap: 1.25rem;
  background: white;
  padding: 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #177232 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.filter-btn:hover::before {
  opacity: 0.1;
}

.filter-btn.active::before {
  opacity: 1;
}

.filter-btn:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, #177232 100%);
  box-shadow: 0 6px 20px rgba(27, 142, 61, 0.3);
}

.filter-btn i,
.filter-btn span {
  position: relative;
  z-index: 1;
}

.filter-btn i {
  font-size: 0.85rem;
}

.articles-count {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.articles-grid-section {
  padding: 4rem 5% 6rem 5%;
  background: #f8f9fa;
  margin-top: 50px;
  margin-bottom: 50px;
}

.articles-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.articles-grid-section .articles-grid-container .articles-grid,
#articles-grid.articles-grid,
.articles-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 2rem !important;
  margin-bottom: 4rem !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  padding: 0 1rem !important;
  box-sizing: border-box !important;
  justify-content: space-between !important;
}

.article-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  width: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(27, 142, 61, 0.2);
}

.article-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.article-card:hover .article-card-image img {
  transform: scale(1.08);
}

.article-category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-category-badge.artigos {
  background: var(--dark);
  color: var(--white);
}

.article-category-badge.noticias {
  background: var(--dark);
  color: var(--white);
}

.article-card-content {
  padding: 2rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--text);
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 500;
}

.article-date i {
  color: var(--primary);
  font-size: 0.8rem;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 500;
}

.reading-time i {
  color: var(--primary);
  font-size: 0.8rem;
}

.article-card-title {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.6rem;
  transition: color 0.3s ease;
}

.article-card:hover .article-card-title {
  color: var(--primary);
}

.article-card-excerpt {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  flex: 1;
  font-weight: 400;
}

.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f5;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.article-author .author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
  transition: border-color 0.3s ease;
}

.article-card:hover .article-author .author-avatar {
  border-color: var(--primary);
}

.article-author span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(27, 142, 61, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more:hover {
  background: var(--primary);
  color: white;
  transform: translateX(2px);
}

.load-more-container {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.load-more-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.loading-articles {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text);
}

.loading-articles i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.no-articles {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text);
}

.no-articles i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.no-articles h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.articles-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text);
}

.articles-error i {
  font-size: 4rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
}

.articles-error h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.retry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.retry-btn:hover {
  background: #177232;
}

/* Active nav link */
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Desktop - FORCE 3 COLUMNS WITH FLEXBOX */
@media screen and (min-width: 1024px) {

  .articles-grid-section .articles-grid-container .articles-grid,
  #articles-grid.articles-grid,
  .articles-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2.5rem !important;
    max-width: 1400px !important;
    margin: 0 auto 4rem auto !important;
    padding: 0 2rem !important;
    justify-content: flex-start !important;
  }

  .articles-grid .article-card,
  .article-card {
    width: calc(33.333% - 1.667rem) !important;
    max-width: calc(33.333% - 1.667rem) !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
  }

  .article-card-image {
    height: 240px !important;
  }

  .articles-filter-container {
    max-width: 1400px !important;
    padding: 0 2rem !important;
  }

  .articles-grid-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
  }
}

/* Desktop Large - FORCE 3 COLUMNS */
@media (min-width: 1200px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    max-width: 1500px !important;
    padding: 0 3rem !important;
  }

  .article-card-image {
    height: 260px !important;
  }

  .articles-filter-container {
    max-width: 1500px !important;
    padding: 0 3rem !important;
  }
}

/* Tablet - 2 COLUMNS */
@media screen and (min-width: 769px) and (max-width: 1023px) {

  .articles-grid-section .articles-grid-container .articles-grid,
  #articles-grid.articles-grid,
  .articles-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    justify-content: flex-start !important;
  }

  .articles-grid .article-card,
  .article-card {
    width: calc(50% - 0.75rem) !important;
    max-width: calc(50% - 0.75rem) !important;
  }
}

/* Mobile - 1 COLUMN */
@media (max-width: 768px) {
  .articles-hero {
    padding: 2rem 0.5rem 3rem 0.5rem;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .articles-hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .articles-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .articles-hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .service-hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .service-hero-buttons .primary-btn,
  .service-hero-buttons .secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Hide image from article page hero section on mobile */
  .service-hero-image {
    display: none;
  }

  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .articles-filter {
    padding: 1.5rem 1rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .articles-filter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .filter-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 15px;
  }

  .filter-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 10px;
    justify-content: center;
    width: 100%;
  }

  .articles-count {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    border-radius: 15px;
  }

  .articles-grid-section {
    padding: 2rem 1rem 3rem 1rem;
  }

  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 !important;
  }

  .article-card {
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .article-card-image {
    height: 220px !important;
  }

  .article-card-content {
    padding: 1.5rem 1.25rem;
  }

  .article-card-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    min-height: auto;
    font-weight: 700;
    color: var(--dark);
  }

  .article-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-card-footer {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .article-author {
    width: 100%;
    justify-content: flex-start;
  }

  .article-author .author-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #f0f0f0;
  }

  .article-author span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
  }

  .read-more {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: var(--primary);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    align-self: flex-end;
    width: auto;
    min-width: 120px;
    text-align: center;
  }

  .read-more:hover {
    background: #177232;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 142, 61, 0.3);
  }

  .load-more-container {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .load-more-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .articles-hero {
    padding: 4rem 1rem 2.5rem 1rem;
  }

  .articles-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .articles-hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .articles-hero p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Hide image from article page hero section on small mobile */
  .service-hero-image {
    display: none;
  }

  .service-hero-buttons .primary-btn,
  .service-hero-buttons .secondary-btn {
    padding: 0.9rem 1.25rem;
    font-size: 0.85rem;
    max-width: 250px;
  }

  .articles-filter {
    padding: 1rem 0.75rem;
  }

  .filter-buttons {
    padding: 0.25rem;
    gap: 0.25rem;
  }

  .filter-btn {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .articles-count {
    padding: 0.8rem;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  .articles-grid-section {
    padding: 1.5rem 0.75rem 2.5rem 0.75rem;
  }

  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .article-card {
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  .article-card-image {
    height: 200px !important;
  }

  .article-card-content {
    padding: 1.25rem 1rem;
  }

  .article-card-title {
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .article-card-excerpt {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    -webkit-line-clamp: 2;
  }

  .article-card-meta {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .article-date,
  .reading-time {
    font-size: 0.75rem;
    color: #666;
  }

  .article-card-footer {
    padding-top: 0.75rem;
    gap: 0.75rem;
  }

  .article-author span {
    font-size: 0.85rem;
  }

  .article-author .author-avatar {
    width: 35px;
    height: 35px;
  }

  .read-more {
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
    min-width: 100px;
  }

  .load-more-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* Article Error */
.article-error {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text);
}

.article-error i {
  font-size: 4rem;
  color: #dc3545;
  margin-bottom: 1.5rem;
}

.article-error h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.back-home-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: background 0.3s ease;
}

.back-home-btn:hover {
  background: #177232;
}

/* Footer Styles */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 5% 2rem 5%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-info img {
  height: 150px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-links a:nth-child(1):hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

.social-links a:nth-child(2):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #bc1888;
  color: white;
}

.social-links a:nth-child(3):hover {
  background: #0077b5;
  border-color: #0077b5;
  color: white;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary);
  width: 16px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #444;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .footer-credits {
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom .footer-credits a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-credits a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Responsive Design for Article Page */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 1rem 1rem 0.75rem 1rem;
    padding-top: calc(70px + 1rem);
  }

  .breadcrumb-container {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .breadcrumb-current {
    max-width: 200px;
  }

  .article-page-header {
    margin-bottom: 2rem;
  }

  .article-title {
    font-size: 2rem;
  }

  .newsletter-cta {
    padding: 2rem 1.5rem;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .article-author-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .article-date-reading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Footer Mobile Layout */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-info {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
  }

  .footer-info img {
    height: 80px;
    margin-bottom: 1rem;
  }

  .footer-info p {
    font-size: 0.9rem;
    max-width: 350px;
    margin: 0 auto 1.5rem auto;
  }

  .social-links {
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-links,
  .footer-contact {
    padding: 0 1rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-bottom: 2px solid rgba(27, 142, 61, 0.2);
    padding-bottom: 0.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }

  .footer-contact p {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .article-page {
    padding: 2rem 1rem 3rem 1rem;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .newsletter-cta {
    padding: 1.5rem 1rem;
  }

  .newsletter-content h2 {
    font-size: 1.3rem;
  }

  .article-content {
    font-size: 1rem;
  }

  .related-articles {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile Small */
  footer {
    padding: 3rem 1rem 1.5rem 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-info img {
    height: 70px;
  }

  .footer-info p {
    font-size: 0.85rem;
    max-width: 300px;
  }

  .footer-links,
  .footer-contact {
    padding: 0;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.85rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Mobile Unit Showcase */
.mobile-unit-showcase {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.showcase-image img:hover {
    transform: scale(1.02);
}

/* Mobile responsiveness for showcase */
@media (max-width: 768px) {
    .mobile-unit-showcase {
        padding: 3rem 1rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .showcase-text h2 {
        font-size: 2rem;
    }
    
    .showcase-text p {
        font-size: 1rem;
    }
    
    .showcase-features {
        align-items: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #e6ae1e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
  z-index: 9998;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 194, 33, 0.5);
  background: linear-gradient(135deg, #e6ae1e 0%, var(--primary) 100%);
}

.back-to-top i {
  font-size: 1.4rem;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-float i {
    font-size: 1.6rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  .back-to-top i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 12px;
    left: 12px;
  }

  .whatsapp-float i {
    font-size: 1.4rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
  }

  .back-to-top i {
    font-size: 1.1rem;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(27, 142, 61, 0.2);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
}

.cookie-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #e6ae1e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
}

.cookie-message h4 {
  color: var(--dark);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.cookie-message p {
  color: var(--text);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn-primary,
.cookie-btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
  text-decoration: none;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #e6ae1e 100%);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.3);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 194, 33, 0.4);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(27, 142, 61, 0.2);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 194, 33, 0.1);
  border-color: var(--primary);
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: var(--dark);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  background: #f0f0f0;
  color: var(--dark);
}

.cookie-modal-body {
  padding: 1.5rem 2rem;
}

.cookie-category {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-category-info h4 {
  color: var(--dark);
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.cookie-category-info p {
  color: var(--text);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-toggle {
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.toggle-label {
  display: block;
  width: 50px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-label:hover {
  background: #ccc;
}

.cookie-toggle input[type="checkbox"]:checked+.toggle-label {
  background: var(--primary);
}

.cookie-toggle input[type="checkbox"]:disabled+.toggle-label {
  background: var(--primary);
  opacity: 0.7;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked+.toggle-label .toggle-slider {
  transform: translateX(24px);
}

.cookie-modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.25rem 1rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .cookie-text {
    min-width: auto;
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cookie-btn-primary,
  .cookie-btn-secondary {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .cookie-modal-content {
    width: 95%;
    max-width: none;
  }

  .cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }

  .cookie-modal-body {
    padding: 1rem 1.5rem;
  }

  .cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-toggle {
    align-self: flex-end;
  }
}

/* Location Section Styles */
.location-section {
  padding: 5rem 5%;
  background: var(--white);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-text h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.location-text p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item div h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-item div p {
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.location-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-image iframe {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.location-image iframe:hover {
  transform: translateY(-5px);
}

/* Responsive Design for Location Section */
@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .location-text h2 {
    font-size: 2rem;
  }

  .location-text p {
    font-size: 1rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    align-items: center;
  }

  .contact-item i {
    margin-top: 0;
  }

  .contact-item div {
    text-align: center;
  }

  .contact-item div h4,
  .contact-item div p {
    text-align: center;
  }

  .location-image iframe {
    max-width: 350px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 3rem 1rem;
  }

  .location-text h2 {
    font-size: 1.8rem;
  }

  .contact-item div h4 {
    font-size: 1rem;
  }

  .contact-item div p {
    font-size: 0.9rem;
  }

  .location-image iframe {
    max-width: 300px;
    height: 250px;
  }
}

/* Service Pages Styles */
.service-hero {
  padding: 4rem 5% 6rem 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  display: none;
}

.service-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 194, 33, 0.15);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(255, 194, 33, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 194, 33, 0.2);
}

.service-badge i {
  font-size: 1.1rem;
}

.service-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-hero-content p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.service-hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.service-hero-image {
  display: none;
}

.service-document.addEventListener('DOMContentLoaded', function() {
    const articlesGrid=document.getElementById('articles-grid');

    if (articlesGrid) {
      articlesGrid.style.setProperty('padding', '25px 2rem', 'important');
    }
  });

/* About Section Styles */
.about-section {
  padding: 5rem 5%;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-5px);
}

/* Values Section */
.values-section {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 142, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  text-align: justify;
}

/* Responsive Design for About and Values Sections */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 350px;
  }

  .values-header h2 {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .about-section,
  .values-section {
    padding: 3rem 1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-image img {
    max-width: 300px;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .value-icon i {
    font-size: 1.5rem;
  }
}

/* Service Details Section */
.service-details {
  padding: 5rem 5%;
  background: var(--white);
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.service-header p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(27, 142, 61, 0.2);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 142, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.service-detail-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-detail-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.service-detail-card ul li:before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Service Benefits Section */
.service-benefits {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 142, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* Service Process Section */
.service-process {
  padding: 5rem 5%;
  background: var(--white);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.process-header p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #177232 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 15px rgba(27, 142, 61, 0.3);
}

.step-content h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.step-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* Service CTA Section */
.service-cta {
  padding: 5rem 5%;
  background: var(--primary);
  color: var(--white);
}

.service-cta .cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-cta .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.service-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.service-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.service-cta .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta .cta-buttons .primary-btn,
.service-cta .cta-buttons .secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  background: var(--dark);
  color: var(--primary);
  border: 2px solid var(--dark);
}

.service-cta .cta-buttons .primary-btn:hover,
.service-cta .cta-buttons .secondary-btn:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

/* System Gallery Styles */
.system-gallery {
  padding: 5rem 5%;
  background: #f8f9fa;
}

.system-gallery .gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.system-gallery .gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.system-gallery .gallery-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.system-gallery .gallery-header p {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.system-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.system-gallery .gallery-item {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.system-gallery .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.system-gallery .gallery-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}

.system-gallery .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.system-gallery .gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.system-gallery .gallery-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.system-gallery .gallery-content h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.system-gallery .gallery-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

/* Service Features Grid Fix */
.service-features {
  padding: 5rem 5%;
  background: var(--white);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.features-header p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 194, 33, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 194, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-card ul li:before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsive Design for System Gallery */
@media (max-width: 768px) {
  .system-gallery {
    padding: 3rem 1rem;
  }

  .system-gallery .gallery-header h2 {
    font-size: 2rem;
  }

  .system-gallery .gallery-header p {
    font-size: 1rem;
  }

  .system-gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .system-gallery .gallery-image {
    height: 220px;
  }

  .system-gallery .gallery-content {
    padding: 1.5rem;
  }

  .system-gallery .gallery-content h3 {
    font-size: 1.2rem;
  }

  .system-gallery .gallery-content p {
    font-size: 0.9rem;
  }

  .service-features {
    padding: 3rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .system-gallery {
    padding: 2rem 0.75rem;
  }

  .system-gallery .gallery-header h2 {
    font-size: 1.8rem;
  }

  .system-gallery .gallery-image {
    height: 200px;
  }

  .system-gallery .gallery-content {
    padding: 1.25rem;
  }

  .system-gallery .gallery-content h3 {
    font-size: 1.1rem;
  }

  .system-gallery .gallery-content p {
    font-size: 0.85rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* Service Hero Mobile Responsive */
@media (max-width: 768px) {
  .service-hero {
    padding: 4rem 1rem 3rem 1rem;
    min-height: 70vh;
  }

  .service-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .service-badge {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
  }

  .service-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .service-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }

  .service-hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .service-hero-buttons .primary-btn,
  .service-hero-buttons .secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail-card {
    padding: 2rem 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .process-step {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .service-header h2,
  .benefits-header h2,
  .process-header h2 {
    font-size: 2rem;
  }

  .service-cta .cta-content h2 {
    font-size: 2rem;
  }

  .service-cta .cta-content p {
    font-size: 1rem;
  }

  .service-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-cta .cta-buttons .primary-btn,
  .service-cta .cta-buttons .secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 3rem 0.75rem 2rem 0.75rem;
    min-height: 60vh;
  }

  .service-badge {
    font-size: 0.75rem;
    padding: 0.7rem 1.2rem;
  }

  .service-hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .service-hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .service-hero-buttons .primary-btn,
  .service-hero-buttons .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .service-detail-card {
    padding: 1.5rem;
  }

  .service-header h2,
  .benefits-header h2,
  .process-header h2 {
    font-size: 1.8rem;
  }

  .service-cta .cta-content h2 {
    font-size: 1.8rem;
  }

  .service-cta .cta-buttons .primary-btn,
  .service-cta .cta-buttons .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* About CTA Section */
.about-cta {
  padding: 5rem 5%;
  background: var(--primary);
  color: var(--white);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .primary-btn,
.cta-buttons .secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  background: var(--dark);
  color: var(--primary);
  border: 2px solid var(--dark);
}

.cta-buttons .primary-btn:hover,
.cta-buttons .secondary-btn:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

/* Responsive Design for About CTA */
@media (max-width: 768px) {
  .about-cta {
    padding: 4rem 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .primary-btn,
  .cta-buttons .secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-cta {
    padding: 3rem 0.75rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons .primary-btn,
  .cta-buttons .secondary-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}