/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #13131a;
  --bg-card: #1a1a24;
  --text-primary: #f5f5f7;
  --text-secondary: #a0a0ab;
  --primary: #5b8def;
  --primary-hover: #4a7dd9;
  --accent: #5dd9c1;
  --border: #2a2a35;
  --border-hover: rgba(91, 141, 239, 0.5);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 6rem 0;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rounded-image {
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: rgba(91, 141, 239, 0.1);
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon,
.btn-icon-left {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn:hover .btn-icon-left {
  transform: translateX(-4px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: var(--font-sans);
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  animation: slideDown 0.3s ease;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  text-align: left;
}

.mobile-link:hover {
  color: var(--primary);
}

.hidden {
  display: none !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-blob-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(91, 141, 239, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(93, 217, 193, 0.3);
  animation: float 6s ease-in-out infinite 2s;
}

.hero-blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 37.5rem;
  background-color: rgba(91, 141, 239, 0.15);
  animation: glow 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(91, 141, 239, 0.1);
  border: 1px solid rgba(91, 141, 239, 0.2);
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Adding animated gradient and scale effects */
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite, textPulse 2s ease-in-out infinite;
  display: inline-block;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 5rem;
}

.hero-image {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.7s ease forwards;
}

.animate-fade-in-delay-1 {
  animation: fadeIn 0.7s ease 0.1s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.7s ease 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 0.7s ease 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-4 {
  animation: fadeIn 0.7s ease 0.5s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* New animations for gradient text */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes textPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.scroll-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Styles */
.services-section,
.projects-section,
.contact-section {
  padding: var(--section-padding);
}

.tech-section {
  padding: var(--section-padding);
  background-color: rgba(19, 19, 26, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px rgba(91, 141, 239, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(91, 141, 239, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: rgba(91, 141, 239, 0.2);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--accent);
  border-radius: 50%;
}

/* Tech Stack */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

.tech-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.tech-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.05);
}

.tech-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card:hover .tech-emoji {
  transform: scale(1.1);
}

.tech-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-bar {
  height: 4px;
  width: 60px;
  margin: 0.5rem auto 0;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.tech-card:hover .tech-bar {
  width: 80px;
}

.tech-bar-orange {
  background: linear-gradient(90deg, #f97316, #dc2626);
}
.tech-bar-blue {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}
.tech-bar-yellow {
  background: linear-gradient(90deg, #facc15, #eab308);
}
.tech-bar-purple {
  background: linear-gradient(90deg, #a855f7, #6366f1);
}
.tech-bar-darkblue {
  background: linear-gradient(90deg, #2563eb, #1e40af);
}
.tech-bar-cyan {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
}
.tech-bar-green {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
.tech-bar-red {
  background: linear-gradient(90deg, #f97316, #dc2626);
}

.tech-image {
  margin-top: 4rem;
}

/* ================================================= */
/* Projects Carousel - SECCI07N CORREGIDA             */
/* ================================================= */
.carousel-container {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  height: 400px; /* Altura fija para el contenedor */
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 0.75rem;
  width: 100%;
  height: 100%; /* Asegura que ocupe toda la altura del contenedor */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  position: relative; /* A09adido para posicionamiento */
}

.carousel-slide {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.project-image-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(91, 141, 239, 0.9);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 5;
}

.project-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
  max-height: 4.5em;
  overflow: hidden;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.project-content .btn-outline {
  margin-top: 1rem;
}

.tech-tag {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: var(--bg-primary);
  border-color: var(--border-hover);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-btn-prev {
  left: 1rem;
}

.carousel-btn-next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Contact Section */
.contact-section {
  background-color: rgba(19, 19, 26, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 141, 239, 0.1);
}

/* Added styles for phone input group with country code selector */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.form-select {
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  min-width: 100px;
  flex-shrink: 0;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 141, 239, 0.1);
}

.phone-number-input {
  flex: 1;
}

.form-textarea {
  resize: none;
}

.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--border-hover);
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(91, 141, 239, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.info-content {
  flex: 1;
}

.info-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-text {
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.info-subtext {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.info-card-highlight {
  background: linear-gradient(135deg, rgba(91, 141, 239, 0.1), rgba(93, 217, 193, 0.1));
  border-color: rgba(91, 141, 239, 0.2);
  flex-direction: column;
}

.info-highlight-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.list-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--primary);
  border-radius: 50%;
}

/* Footer */
.footer {
  background-color: rgba(19, 19, 26, 0.5);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 28rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(91, 141, 239, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.social-link:hover {
  background-color: rgba(91, 141, 239, 0.2);
  transform: translateY(-2px);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-love {
  margin-top: 0.5rem;
}

.heart {
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Ajuste responsivo del carrusel */
  .carousel-container {
    height: auto;
  }

  .carousel-wrapper {
    height: auto;
  }

  .carousel-slide {
    position: relative;
    height: auto;
  }

  .project-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .project-image-container {
    min-height: 200px;
  }

  .project-content {
    min-height: auto;
  }

  .project-description {
    max-height: none;
    overflow: visible;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-btn-prev {
    left: 0.5rem;
  }

  .carousel-btn-next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}
