/* ===================================
   C2G Investigações - V2.0 Premium Stylesheet
   Cores: Preto #000000 | Dourado #DCCAA6 | Branco #FFFFFF
   Fontes: Work Sans
   =================================== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #555555;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu li a:not(.cta-button) {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu li a:not(.cta-button)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #DCCAA6 0%, #f4e4c1 100%);
  transition: width 0.3s ease;
}

.nav-menu li a:not(.cta-button):hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

/* Hero Section Premium with Video */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #DCCAA6;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(220, 202, 166, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 4px;
  height: 10px;
  background-color: #DCCAA6;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Impact Section - ATUALIZADO */
.impact-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #DCCAA6, transparent);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.impact-item {
  padding: 2rem;
  position: relative;
}

.impact-display {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.impact-prefix {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #DCCAA6 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #DCCAA6 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-suffix {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #DCCAA6 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-label {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-dark {
  background-color: #0a0a0a;
  color: #FFFFFF;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #FFFFFF;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.bg-light {
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #DCCAA6;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  border: 1px solid #e0e0e0;
}

.section-dark .card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 202, 166, 0.2);
  backdrop-filter: blur(10px);
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #DCCAA6;
}

.section-dark .card-hover:hover {
  box-shadow: 0 20px 40px rgba(220, 202, 166, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.section-dark .card-description {
  color: rgba(255, 255, 255, 0.7);
}

/* Services Grid with Images */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1.5rem;
}

.service-link {
  font-weight: 600;
  color: #DCCAA6;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
  background: linear-gradient(90deg, #DCCAA6 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons - ATUALIZADO COM EFEITO METÁLICO ELEGANTE */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #C9A961 0%, #DCCAA6 25%, #E8D7AE 50%, #DCCAA6 75%, #B8974A 100%);
  background-size: 200% 100%;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  transition: all 0.4s ease;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(220, 202, 166, 0.3);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 202, 166, 0.5);
}

.cta-button-primary {
  background: linear-gradient(135deg, #C9A961 0%, #DCCAA6 25%, #E8D7AE 50%, #DCCAA6 75%, #B8974A 100%);
  background-size: 200% 100%;
  color: #000000;
}

.cta-button-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #DCCAA6;
  box-shadow: 0 4px 15px rgba(220, 202, 166, 0.2);
}

.cta-button-outline:hover {
  background: linear-gradient(135deg, #C9A961 0%, #DCCAA6 25%, #E8D7AE 50%, #DCCAA6 75%, #B8974A 100%);
  background-size: 200% 100%;
  border-color: transparent;
  color: #000000;
}

.cta-button-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%23DCCAA6" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.cta-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: block;
  margin: 0 auto;
  max-width: 180px;
  height: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links h4 {
  color: #DCCAA6;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #DCCAA6;
}

.footer-contact h4 {
  color: #DCCAA6;
  margin-bottom: 1rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.whatsapp-link {
  color: #DCCAA6;
  font-weight: 600;
}

.whatsapp-link:hover {
  color: #f4e4c1;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: #DCCAA6;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(220, 202, 166, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.confidentiality {
  color: #DCCAA6 !important;
  font-weight: 600;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

/* ===================================
   ESTILOS PARA PÁGINAS INTERNAS
   =================================== */

/* Hero Interno */
.hero-internal {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  min-height: 50vh;
  padding: 10rem 0 6rem;
}

.hero-internal .hero-content {
  max-width: 800px;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-bottom: 1.5rem;
  color: #000000;
}

.content-wrapper p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.8;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list strong {
  color: #DCCAA6;
  font-weight: 700;
}

.section-dark .feature-list li {
  border-bottom-color: rgba(220, 202, 166, 0.2);
}

/* Card Number (Para Como Trabalhamos) */
.card-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #DCCAA6 0%, #f4e4c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #DCCAA6 0%, #f4e4c1 100%);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 1rem;
}

.blog-link {
  color: #DCCAA6;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: #c4b896;
}

.blog-message {
  text-align: center;
  padding: 3rem;
  background: #f9f9f9;
  border-radius: 12px;
  border: 2px dashed #DCCAA6;
}

.blog-message p {
  font-size: 1.1rem;
  color: #666666;
}

/* Contact Styles */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
  margin-bottom: 1rem;
}

.contact-form-container > p {
  margin-bottom: 2rem;
  color: #666666;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #DCCAA6;
  box-shadow: 0 0 0 3px rgba(220, 202, 166, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  color: #DCCAA6;
  text-decoration: underline;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: #999999;
  margin-top: 1rem;
}

/* Contact Info */
.contact-info {
  background: #f9f9f9;
  padding: 2.5rem;
  border-radius: 12px;
  position: sticky;
  top: 6rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: #000000;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: #000000;
}

.contact-details a {
  color: #DCCAA6;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

.social-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links-vertical a {
  color: #DCCAA6;
  font-weight: 600;
}

.contact-guarantee {
  background: linear-gradient(135deg, #DCCAA6 0%, #f4e4c1 100%);
  padding: 1.5rem;
  border-radius: 8px;
  color: #000000;
}

.contact-guarantee h4 {
  margin-bottom: 0.75rem;
  color: #000000;
}

.contact-guarantee p {
  font-size: 0.9rem;
  color: #333333;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 6rem 2rem;
    transition: right 0.4s ease;
    gap: 1rem;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-internal {
    padding: 8rem 0 4rem;
  }
  
  .impact-number {
    font-size: 3.5rem;
  }
  
  .impact-prefix,
  .impact-suffix {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-internal {
    min-height: 40vh;
    padding: 7rem 0 3rem;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .impact-number {
    font-size: 3rem;
  }
  
  .impact-prefix,
  .impact-suffix {
    font-size: 1.25rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}