/* ================================
   VARIABLES & RESET
   ================================ */

:root {
  /* Colors */
  --primary-blue: #0066ff;
  --primary-dark: #0052cc;
  --secondary-cyan: #00d4ff;
  --accent-neon: #00ff88;
  --dark-bg: #182343;
  --dark-surface: #1a2332;
  --darker-surface: #141b26;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
  --gradient-accent: linear-gradient(135deg, var(--accent-neon), var(--secondary-cyan));
  --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--darker-surface));

  /* Shadows */
  --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.3);
  --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.4);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-heading: 'Orbitron', monospace;
  --font-body: 'Exo 2', sans-serif;

  /* Animation */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 102, 255, 0.2);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: var(--text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.nav-link:hover::before {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

    /* ================================
    HERO SECTION
    ================================ */
    
    .hero-small {
        font-size: clamp(2.5rem, 6vw, 6rem); /* Reduz um pouco */
    }

    .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    }

    .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    }

    .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2) saturate(1.3);
    }

    .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 0.7) 0%, 
        rgba(26, 35, 50, 0.5) 50%, 
        rgba(0, 102, 255, 0.1) 100%);
    z-index: -1;
    }

    .hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 1;
    }

    .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    }

    .hero-line {
    display: block;
    animation: slideUpFade 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    }

    .hero-line:nth-child(1) {
    animation-delay: 0.3s;
    color: var(--text-primary);
    }

    .hero-line:nth-child(2) {
    animation-delay: 0.6s;
    }

    .hero-line:nth-child(3) {
    animation-delay: 0.9s;
    color: var(--text-secondary);
    font-size: 0.7em;
    }

    .hero-highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
    }

    .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: slideUpFade 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(30px);
    }

    .text-glow {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }

    .hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUpFade 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateY(30px);
    }

    .hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: float 3s ease-in-out infinite;
    }

    .scroll-line {
    width: 1px;
    height: 30px;
    background: var(--gradient-primary);
    animation: scrollPulse 2s ease-in-out infinite;
    }

    /* ================================
    BUTTONS
    ================================ */

    .btn {
    position: relative;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
    }

    .btn span {
    position: relative;
    z-index: 2;
    }

    .btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
    border: 2px solid transparent;
    }

    .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    }

    .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-blue);
    }

    .btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    }

    .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
    }

    .btn:hover .btn-glow {
    left: 100%;
    }

    /* ================================
    SECTIONS
    ================================ */

    .section {
    padding: 8rem 0;
    position: relative;
    }

    .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    }

    .section-header {
    text-align: center;
    margin-bottom: 5rem;
    }

    .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    }

    .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    }

    .section-line {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    }

    /* ================================
    ABOUT SECTION
    ================================ */

    .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    }

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(26, 35, 50, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 35, 50, 0.3);
  border-radius: 15px;
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(26, 35, 50, 0.6);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(0, 102, 255, 0.1) 0%, 
    transparent 50%, 
    rgba(0, 255, 136, 0.1) 100%);
}

/* ================================
   SERVICES SECTION
   ================================ */

.services-section {
  background: rgba(20, 27, 38, 0.5);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,102,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 102, 255, 0.1), transparent);
  opacity: 0;
  transition: var(--transition-slow);
  animation: rotate 8s linear infinite;
}

.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 0 50px rgba(0, 102, 255, 0.3);
  transform: translateY(-10px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--text-primary);
  border-radius: 50%;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
}

.service-tech {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.service-tech span {
  background: rgba(0, 102, 255, 0.2);
  color: var(--secondary-cyan);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* ================================
   PROJECTS SECTION
   ================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-slow);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.7);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 15, 28, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 2rem;
  width: 100%;
}

.project-info h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.project-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-tech span {
  background: rgba(0, 255, 136, 0.2);
  color: var(--accent-neon);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
  position: relative;
  background: var(--darker-surface);
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) contrast(1.2);
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 15, 28, 0.9) 0%, 
    rgba(26, 35, 50, 0.8) 100%);
  z-index: -1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(26, 35, 50, 0.5);
  border-radius: 20px;
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(26, 35, 50, 0.8);
  transform: translateX(10px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-value {
  color: var(--text-primary);
  font-weight: 600;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: var(--darker-surface);
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10,10 L40,10 M25,10 L25,40 M10,40 L40,40" fill="none" stroke="rgba(0,102,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 1rem 0 2rem 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-blue);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-blue);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    min-width: 250px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .service-card,
  .contact-form {
    padding: 2rem 1.5rem;
  }
}
