@charset "utf-8";
/* CSS Document */
/* ===== RESET & VARIABLES ===== */
:root {
  /* Modo Claro (default) */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #7c3aed;
  --accent: #6366f1;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #94a3b8;
  --light-gray: #e2e8f0;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  /* Tipografía */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Playfair', sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  
  /* Bordes */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transiciones */
  --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);
}

/* Modo Oscuro Cyberpunk */
body.dark-mode {
  --primary: #00f7ff;       /* Cyan neón */
  --primary-dark: #0f172a;  /* Azul oscuro */
  --light: #0a1126;         /* Fondo nocturno */
  --dark: #e2e8f0;          /* Texto claro */
  --gray: #6b7280;
  --gradient: linear-gradient(135deg, #00f7ff 0%, #3b82f6 100%);
  --shadow-lg: 0 10px 25px rgba(0, 247, 255, 0.2);
}

/* ===== BASE STYLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  transition: var(--transition-slow);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== DARK MODE TOGGLE ===== */
.theme-switcher {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.theme-toggle {
  display: none;
}

.theme-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60px;
  height: 30px;
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  padding: 5px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 10px var(--primary);
  transition: var(--transition);
}

.theme-icon {
  font-size: 14px;
  z-index: 1;
}

.theme-ball {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: var(--radius-full);
  left: 5px;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 0 5px var(--primary);
}

.theme-toggle:checked + .theme-label .theme-ball {
  transform: translateX(30px);
  background: #00f7ff;
}

/* ===== EFECTOS CYBERPUNK ===== */
body.dark-mode {
  background-color: var(--light);
}

body.dark-mode .header {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom: 1px solid var(--primary);
}

body.dark-mode .btn-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

body.dark-mode .btn-primary:hover {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 0 20px var(--primary);
}

body.dark-mode .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00f7ff;
  border: 1px solid #00f7ff;
}

body.dark-mode .text-gradient {
  text-shadow: 0 0 15px #00f7ff;
  animation: neon-flicker 2s infinite alternate;
}

body.dark-mode .nav-menu {
  background: var(--primary-dark);
}

body.dark-mode footer {
  position: relative;
  overflow: hidden;
}

body.dark-mode footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><text x="0" y="15" font-family="monospace" fill="%2300f7ff">0101</text></svg>');
  opacity: 0.3;
  z-index: -1;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px #00f7ff;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: var(--light);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

body.dark-mode .header.scrolled {
  background: rgba(15, 23, 42, 0.95) !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1001;
}

.logo-inner {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner span {
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--light);
  position: relative;
  z-index: 2;
}

.logo-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: var(--radius-md);
  transform: rotate(45deg);
  z-index: 1;
}

.logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}

.header.scrolled .logo-text {
  color: var(--dark);
}

.nav-menu {
  padding-top: 15px;
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 1px 0;
  overflow: hidden;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  color: var(--primary);
  overflow: hidden;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Hamburguesa */
.hamburger {
  margin-top: 10px;
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 100%);
}

.hero-bg-circle:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
}

.hero-bg-circle:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
}

.hero-bg-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 50px;
  margin-bottom: 20px;
}

.title-line {
  font-family: "Abril Fatface", serif;
  display: block;
  overflow: hidden;
  padding-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
  transition: var(--transition);
}

.btn-primary {
  color: var(--light);
  z-index: 1;
}

.btn-primary::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--light-gray);
  z-index: 1;
}

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-image {
  flex: 1;
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 10px;
  max-width: 700px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-family: "Proza Libre", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  border-radius: inherit;
}

.service-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

/* ===== PROJECTS ===== */
.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-title {
  font-size: 2rem;
  line-height: 1.2;
}

.project-description {
  color: var(--gray);
  line-height: 1.7;
}

.project-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-features i {
  color: var(--primary);
  font-size: 0.875rem;
}

.project-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  overflow: hidden;
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-content h4 {
  font-size: 1.25rem;
}

.card-content p {
  color: var(--gray);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.btn-link i {
  font-size: 0.875rem;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--primary-dark);
}

.btn-link:hover i {
  transform: translateX(4px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ===== DETAILS ===== */
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.detail-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-content span {
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-content a, .detail-content p {
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.detail-content a:hover {
  color: var(--primary);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  color: var(--dark);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.social-link:hover {
  background: var(--gradient);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* ===== FORM ===== */
.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 1rem;
  color: var(--gray);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -20px;
  font-size: 0.75rem;
  color: var(--primary);
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.form-group input:focus ~ .underline,
.form-group textarea:focus ~ .underline {
  width: 100%;
}

/* Form response styles */
.form-response {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: 500;
  display: none;
}

.form-response.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-response.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* CAPTCHA styles */
.captcha-group {
  margin: 20px 0;
}

.captcha-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #666;
}

.captcha-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  transition: all 0.3s;
}

.captcha-group input:focus {
  outline: none;
  border-bottom-color: #6200ea;
}

/* Loading button style */
button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  margin-right: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--light);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .logo {
  align-items: flex-start;
}

.footer .logo-text {
  color: var(--light);
}

.footer-text {
  color: var(--gray);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.links-group h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: var(--light);
}

.links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-group a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.links-group a:hover {
  color: var(--light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--light);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover {
  color: #ccc;
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-size: 1.2rem;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: var(--transition-slow);
}

.preloader-text {
  display: flex;
  gap: 8px;
}

.preloader-text-words {
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--light);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.preloader-text-words:nth-child(1) { animation-delay: 0.1s; }
.preloader-text-words:nth-child(2) { animation-delay: 0.2s; }
.preloader-text-words:nth-child(3) { animation-delay: 0.3s; }
.preloader-text-words:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CURSOR ===== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary);
  pointer-events: none;
  z-index: 998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .project-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .project-image {
    order: -1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .theme-switcher {
    margin-left: 0;
    justify-content: flex-end;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
