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

:root {
  /* Colores DAXA */
  --primary: #ff6600;
  --primary-dark: #e55a00;
  --primary-light: #ff8833;
  --secondary: #2c3e50;
  --secondary-light: #34495e;
  --accent: #ff6600;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --border: #e0e0e0;
  --card: #ffffff;

  /* Tipografía */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", sans-serif;

  /* Spacing - OPTIMIZADO PARA MÓVIL */
  --spacing-xs: 0.375rem;    /* 6px */
  --spacing-sm: 0.75rem;     /* 12px */
  --spacing-md: 1rem;        /* 16px */
  --spacing-lg: 1.5rem;      /* 24px */
  --spacing-xl: 2rem;        /* 32px */
  --spacing-2xl: 2.5rem;     /* 40px */

  /* Border radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Desktop spacing */
@media (min-width: 768px) {
  :root {
    --spacing-xs: 0.5rem;     /* 8px */
    --spacing-sm: 1rem;       /* 16px */
    --spacing-md: 1.5rem;     /* 24px */
    --spacing-lg: 2rem;       /* 32px */
    --spacing-xl: 3rem;       /* 48px */
    --spacing-2xl: 4rem;      /* 64px */
  }
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* Móvil: 16px padding */
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem; /* Tablet: 24px padding */
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem; /* Desktop: 32px padding */
  }
}

/* Top Bar */
.top-bar {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 0.5rem 0; /* Reducido en móvil */
  font-size: 0.75rem; /* Más pequeño en móvil */
}

@media (min-width: 768px) {
  .top-bar {
    padding: 0.625rem 0;
    font-size: 0.875rem;
  }
}

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

.contact-info {
  display: flex;
  gap: 0.75rem; /* Reducido en móvil */
}

@media (min-width: 640px) {
  .contact-info {
    gap: var(--spacing-md);
  }
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-text {
  display: none;
}

@media (min-width: 640px) {
  .contact-text {
    display: inline;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--background);
  transition: all 0.3s;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem; /* Reducido en móvil */
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 4rem;
  }
}

.logo {
  font-size: 1rem; /* Más pequeño en móvil */
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.2;
  max-width: 60%; /* Evita que se salga en móvil */
}

@media (min-width: 640px) {
  .logo {
    font-size: 1.25rem;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem; /* Reducido */
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem; /* Reducido */
  padding: 0.75rem; /* Reducido */
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  padding: 0.5rem 0; /* Reducido */
  transition: color 0.3s;
}

.nav-link-mobile:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.5rem 1rem; /* Reducido en móvil */
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

@media (min-width: 768px) {
  .btn {
    padding: 0.625rem 1.25rem;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 0.875rem 1.75rem; /* Más padding en móvil */
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Icon */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

@media (min-width: 768px) {
  .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh; /* Reducido en móvil */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 85vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--spacing-xl) 0; /* Usa variable responsive */
}

@media (min-width: 768px) {
  .hero-content {
    padding: var(--spacing-2xl) 0;
  }
}

.hero-text {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 4rem); /* Mínimo más pequeño */
  font-weight: 700;
  font-family: var(--font-display);
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.text-primary {
  color: var(--primary);
}

.hero-description {
  font-size: clamp(0.9375rem, 2vw, 1.5rem); /* Mínimo más pequeño */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 0 0.5rem; /* Padding extra en móvil */
}

@media (min-width: 768px) {
  .hero-description {
    margin-bottom: var(--spacing-xl);
    padding: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem; /* Más espacio entre botones */
  margin-bottom: var(--spacing-lg);
  padding: 0 0.5rem; /* Padding lateral para que no toquen los bordes */
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0; /* Sin padding en desktop */
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    margin-bottom: var(--spacing-2xl);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  max-width: 48rem;
  margin: 0 auto;
  padding-top: var(--spacing-lg);
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
  }
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.25rem; /* Más padding en móvil */
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 768px) {
  .stat-card {
    padding: var(--spacing-md);
  }
}

.stat-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  margin: 0 auto var(--spacing-xs);
  stroke-width: 2;
}

@media (min-width: 768px) {
  .stat-icon {
    width: 2rem;
    height: 2rem;
  }
}

.stat-number {
  font-size: 1.875rem; /* Reducido en móvil */
  font-weight: 700;
  font-family: var(--font-display);
  color: #ffffff;
  margin-bottom: var(--spacing-xs);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.8125rem; /* Ligeramente reducido */
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Section */
.section {
  padding: var(--spacing-xl) 0; /* Responsive */
}

@media (min-width: 768px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }
}

.section-alt {
  background-color: var(--muted);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: var(--spacing-2xl);
  }
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem); /* Mínimo más pequeño */
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem; /* Reducido en móvil */
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 0.5rem; /* Padding extra */
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
    padding: 0;
  }
}

/* About Section */
.about-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("construction-team-work.jpg");
  background-size: cover;
  background-position: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-card {
  background-color: var(--card);
  padding: var(--spacing-md); /* Reducido en móvil */
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .about-card {
    padding: var(--spacing-lg);
  }
}

.about-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.about-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .about-icon {
    width: 3rem;
    height: 3rem;
  }
}

.about-icon .icon {
  color: var(--primary);
}

.about-title {
  font-size: 1.125rem; /* Ligeramente reducido */
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .about-title {
    font-size: 1.25rem;
  }
}

.about-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md); /* Reducido en móvil */
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.service-image-container {
  position: relative;
  height: 10rem; /* Reducido en móvil */
  overflow: hidden;
  background-color: var(--muted);
}

@media (min-width: 768px) {
  .service-image-container {
    height: 12rem;
  }
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-icon {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .service-icon {
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
  }
}

.service-icon .icon {
  color: #ffffff;
}

.service-content {
  padding: var(--spacing-md);
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .service-title {
    font-size: 1.25rem;
  }
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.service-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--card);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: var(--spacing-lg);
  }
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--spacing-sm);
}

.star {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .star {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .testimonial-text {
    margin-bottom: var(--spacing-md);
  }
}

.testimonial-author {
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border);
}

.author-name {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--foreground);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.author-role {
  font-size: 0.8125rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .author-role {
    font-size: 0.875rem;
  }
}

/* Partners Section */
.partners-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .partners-section {
    padding: var(--spacing-xl) 0;
  }
}

.partners-title {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .partners-title {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  opacity: 0.5;
  transition: opacity 0.3s;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .partner-item {
    font-size: 1.125rem;
  }
}

.partner-item:hover {
  opacity: 1;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .contact-info-section {
    gap: var(--spacing-lg);
  }
}

.contact-company-name {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .contact-company-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-detail-item {
  display: flex;
  gap: 0.75rem; /* Reducido */
  align-items: flex-start;
}

@media (min-width: 768px) {
  .contact-detail-item {
    gap: var(--spacing-sm);
  }
}

.contact-detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-detail-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.contact-detail-icon .icon {
  color: var(--primary);
  width: 1.125rem;
  height: 1.125rem;
}

@media (min-width: 768px) {
  .contact-detail-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.contact-detail-label {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.contact-detail-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-detail-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-link:hover {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-container {
  background-color: var(--card);
  padding: var(--spacing-md); /* Reducido en móvil */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .contact-form-container {
    padding: var(--spacing-lg);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm); /* Reducido en móvil */
}

@media (min-width: 768px) {
  .contact-form {
    gap: var(--spacing-md);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px; /* Reducido en móvil */
}

@media (min-width: 768px) {
  .form-textarea {
    min-height: 120px;
  }
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-lg) 0; /* Reducido en móvil */
}

@media (min-width: 768px) {
  .footer {
    padding: var(--spacing-xl) 0;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md); /* Reducido */
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

@media (min-width: 768px) {
  .footer-title {
    font-size: 1.25rem;
  }
}

.footer-subtitle {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--spacing-xs);
  font-size: 0.9375rem;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: var(--spacing-lg);
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
  }
}

/* Utility classes */
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}