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

body {
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 98vh;
  display: flex;
  flex-direction: column;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent, rgba(0, 0, 0, 0.7));
}

/* Header */
/* Header */
.header {
  position: fixed;
  z-index: 100;
  padding: 1px 0;
  background-color: rgba(0, 0, 0, 0.329);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0%;
    border-bottom-right-radius: 0%;
    border-style: groove;
    border-width: 0px 0px 1px 0px;
    border-image: linear-gradient(to right, #000000, #ed0909, #000000) 1;

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  top: 0;
  left: 0;
  
 }

.header-content {
  text-align: center;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-center {
  flex: 1;
  text-align: center;
}

.header-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blog-link {
  background-color: #ef4444;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;

}

.blog-link:hover {
  background-color: #dc2626;
}

.logo-image {
  height: 80px;
  width: auto%;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 5px;
  filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 6px 12px rgba(239, 68, 68, 0.5));
  transform: scale(1.02);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  
}

.hero-text {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 32px;
}

.title-image {
  height: 328px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
  margin-bottom: 14px;
  margin-top: 44px;
}

.title-underline {
  width: 128px;
  height: 4px;
  background-color: #ef4444;
  margin: 0 auto 24px;
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background-color: rgba(30, 58, 138, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-icon {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 8px;
}

.service-text {
  font-size: 0.875rem;
  text-align: center;
}

/* Scrolling Banner */
.scrolling-banner {
  position: relative;
  z-index: 10;
  background-color: #dc2626;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid white; 
  border-bottom: 2px solid white; 
}

.banner-content {
  white-space: nowrap;
  animation: scroll 8s linear infinite;
  padding-left: 5%;
  animation-delay: 0s;
  will-change: transform;
  transform: translateZ(0);
}

.banner-text {
  display: inline-block;
  padding: 0 32px;
  color: #fff;
  font-weight: 600;
}

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

/* CTA Button */
.cta-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
}

.cta-btn {
  background-color: #22c55e;
  color: #000;
  font-weight: bold;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #16a34a;
}

.cta-btn i {
  font-size: 1.25rem;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* WhatsApp Section */
.whatsapp-section {
  padding: 80px 0;
 background: #0d0c47;
background: linear-gradient(90deg, rgba(13, 12, 71, 1) 0%, rgb(34, 6, 11) 100%, rgba(106, 0, 255, 1) 19%);
}

.whatsapp-content {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.whatsapp-title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}

.whatsapp-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.whatsapp-icon {
  background-color: #fff;
  border-radius: 50%;
  padding: 16px;
  margin-right: 16px;
}

.whatsapp-svg {
  width: 48px;
  height: 48px;
  color: #22c55e;
}

.whatsapp-info h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.whatsapp-info p {
  color: #d1fae5;
}

.whatsapp-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.whatsapp-btn {
  background-color: #fff;
  color: #16a34a;
  font-weight: bold;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-phone {
  font-size: 0.875rem;
  opacity: 0.75;
}

.whatsapp-status {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-separator {
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: #111827;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.title-highlight {
  color: #ef4444;
 
}

.title-highlight.red {
  color: #ef4444;
}

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

.service-card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
  font-size: 3rem;
  color: #60a5fa;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ef4444;
  margin-bottom: 12px;
}

.card-description {
  color: #d1d5db;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #0d0c47;
background: linear-gradient(90deg, rgb(3, 2, 51) 0%, rgb(17, 3, 5) 100%, rgb(36, 2, 85) 19%);
}

.about-content {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.about-card {
  background-color: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 48px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.about-icon {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 24px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.5rem;
  text-align: center;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin-bottom: 48px;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-number.red {
  color: #ef4444;
}

.stat-number.blue {
  color: #60a5fa;
}

.stat-number.green {
  color: #22c55e;
}

.stat-label {
  color: #d1d5db;
}

/* Downloads Section */
.downloads-section {
  padding: 80px 0;
  background-color: #111827;
}

.downloads-content {
  max-width: 512px;
  margin: 0 auto;
  text-align: center;
}

.download-card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.download-icon {
  font-size: 4rem;
  color: #60a5fa;
  margin-bottom: 24px;
}

.download-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #fff;
}

.download-description {
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.6;
}

.download-btn {
  background-color: #3b82f6;
  color: #fff;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.download-btn:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.download-features {
  margin-top: 24px;
  font-size: 0.875rem;
  color: #9ca3af;
}

.download-features p {
  margin-bottom: 4px;
}

/* Construction Section */
.construction-section {
  padding: 80px 0;
  /* Fallback */
  background-color: #0b1220;
  /* Gradiente moderno em camadas (glows sutil + base escura) */
  background:
    radial-gradient(800px circle at 0% 20%, rgba(239, 68, 68, 0.18), transparent 35%),
    radial-gradient(900px circle at 100% 80%, rgba(59, 130, 246, 0.18), transparent 40%),
    linear-gradient(135deg, #0b1220 0%, #0a1735 35%, #1a1038 65%, #2a0d22 100%);
}

.construction-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.construction-card {
  background-color: rgba(17, 24, 39, 0.8);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  text-align: center;
  transition: all 0.3s;
}

.construction-card:hover {
  transform: scale(1.05);
}

.construction-icon {
  font-size: 4rem;
  color: #60a5fa;
  margin-bottom: 24px;
}

.construction-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #ef4444;
}

.construction-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 24px;
}

.construction-features {
  font-size: 0.875rem;
  color: #60a5fa;
}

.construction-cta {
  text-align: center;
}

.construction-btn {
  background-color: #ef4444;
  color: #fff;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.construction-btn:hover {
  background-color: #dc2626;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #111827;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.contact-card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 32px;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.contact-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.phone-icon {
  color: #ef4444;
}

.location-icon {
  color: #ef4444;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ef4444;
  margin-bottom: 8px;
}

.contact-info {
  color: #d1d5db;
  margin-bottom: 4px;
}

/* Footer */
/* Footer */
.footer {
  background-color: #000000;
  padding: 24px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-image {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin: 0 auto;
  display: block;
}



/* Blog Styles */
.blog-page {
  background-color: #000;
}

.blog-header {
  background-color: #000;
  padding: 24px 0;
  border-bottom: 1px solid #374151;
}

.blog-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #ef4444;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #dc2626;
}

.blog-logo {
  text-align: center;
}

.blog-logo-image {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
}

.header-spacer {
  width: 96px;
}

.blog-main {
  padding: 48px 0;
}

.blog-content {
  max-width: 1024px;
  margin: 0 auto;
}

.blog-title-section {
  margin-bottom: 48px;
}

.blog-main-title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}

.blog-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-post {
  background-color: rgba(17, 24, 39, 0.5);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #374151;
  transition: all 0.3s;
}

.blog-post:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: scale(1.02);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #9ca3af;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ef4444;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.post-title:hover {
  color: #f87171;
}

.post-excerpt {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.read-more-btn {
  background-color: #3b82f6;
  color: #fff;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.read-more-btn:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.load-more-section {
  text-align: center;
  margin-top: 48px;
}

.load-more-btn {
  background-color: #ef4444;
  color: #fff;
  font-weight: bold;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.load-more-btn:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

.blog-footer {
  margin-top: 80px;
}

/* Live Chat Widget Styles */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: chatPulse 3s infinite;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
}

.chat-button i {
  color: white;
  font-size: 24px;
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  animation: bounce 2s infinite;
}

@keyframes chatPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: #111827;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chat-window.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.chat-header {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.chat-user-info h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.chat-status {
  font-size: 12px;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-status.online::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.chat-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.chat-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #1f2937;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 2px;
}

.message {
  display: flex;
  gap: 8px;
  animation: messageSlide 0.3s ease;
}

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

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.bot-message .message-avatar {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-avatar {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.message-content {
  background: #1f2937;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  position: relative;
}

.user-message .message-content {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.message-content p {
  margin: 0 0 4px 0;
  color: white;
  font-size: 14px;
  line-height: 1.4;
}

.message-time {
  font-size: 11px;
  color: #9ca3af;
  opacity: 0.7;
}

.chat-typing {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 12px;
}

.typing-indicator {
  display: flex;
  gap: 2px;
}

.typing-indicator span {
  width: 4px;
  height: 4px;
  background: #60a5fa;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-input-container {
  padding: 16px;
  background: #1f2937;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.quick-responses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.quick-response-btn {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.quick-response-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.chat-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: #374151;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.chat-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.chat-input::placeholder {
  color: #9ca3af;
}

.send-button {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.send-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design */
@media (min-width: 768px) {
  .logo-image {
    
     }

  .title-image {
    height: 160px;
    padding-top: 40px;  
  }

  .whatsapp-title {
    font-size: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 3rem;
  }

  .blog-main-title {
    font-size: 4rem;
  }

  .post-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .logo-image {
    height: 120px;
    }

  .title-image {
    height: 192px;
    padding-top: 40px;  
  }

  .whatsapp-title {
    font-size: 2.2rem;
  }

  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .construction-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-main-title {
    font-size: 5rem;
  }

  .post-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .logo-image {
    height 60px;
    }

  .title-image {
    height: 196px;
    padding-top: 40px;  
 
  }

  .cta-btn {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .service-item {
    padding: 12px;
  }

  .service-icon {
    font-size: 1.5rem;
  }

  .service-text {
    font-size: 0.75rem;
  }

  .whatsapp-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .blog-main-title {
    font-size: 2rem;
  }

  .post-title {
    font-size: 1.5rem;
  }

  .post-excerpt {
    font-size: 1rem;
  }

  .header-nav {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .header-flex {
    flex-direction: column;
  }

  /* Chat responsive adjustments */
  .chat-widget {
    bottom: 80px;
    right: 16px;
  }

  .chat-window {
    width: calc(100vw - 32px);
    height: 70vh;
    bottom: 80px;
    right: -8px;
  }

  .chat-button {
    width: 50px;
    height: 50px;
  }

  .chat-button i {
    font-size: 20px;
  }

  .chat-badge {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .quick-response-btn {
    font-size: 10px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .chat-window {
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
    position: fixed;
  }

  .chat-header {
    padding: 20px 16px;
  }

  .quick-responses {
    flex-direction: column;
  }

  .quick-response-btn {
    text-align: left;
    justify-content: flex-start;
  }

  .whatsapp-card {
    padding: 24px;
  }

  .whatsapp-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .about-card {
    padding: 32px 24px;
  }

  .download-card {
    padding: 24px;
  }

  .construction-card {
    padding: 24px;
  }

  .blog-post {
    padding: 24px;
  }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Error styles for form validation */
.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

/* Utility classes */
.animate-scroll {
  animation: scroll 30s linear infinite;
}
@font-face {
  font-family: "Arial";
  src: local("Arial");
  font-display: swap;
}

.floating-remote-button {
    position: fixed;
    left: 20px;
    bottom: 80px;
    z-index: 1000;
    background-color: #ef4444;
    color: white;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
    }

@media screen and (min-width: 1024px) {
    .floating-remote-button {
        display: flex;
    }
}

.floating-remote-button i {
    font-size: 24px;
}

.floating-remote-button span {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
}

.floating-remote-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    background-color: #dc2626;
}

/* ... existing code ... */
.site-footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  position: relative;
  z-index: 2;
}

.footer-address {
  text-align: center;
  color: #d1d5db;
  font-size: 0.95rem;
}

.footer-address strong {
  color: #ffffff;
}
/*/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.review-name {
    color: white;
    font-weight: 600;
}

.review-badge {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-link-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-link-btn:hover {
    transform: scale(1.05);
} ... existing code ... */