* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #2c3e50;
  line-height: 1.6;
}
header {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  color: #fff;
  padding: 25px 0;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.3);
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #42a5f5, #64b5f6, #42a5f5);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

header h1 img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.2);
  transition: all 0.3s ease;
}

header h1 img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

header h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #42a5f5, transparent);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

nav li {
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: inline-block;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

nav a:hover::before {
  left: 100%;
}

nav a.active {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4) !important;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3) !important;
}
main {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 30px;
  position: relative;
}

main::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0);
  border-radius: 2px;
}
.hero {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.1);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero h2 {
  color: #1565c0;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(21, 101, 192, 0.1);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.2em;
  color: #2c3e50;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.servicios ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 30px;
}
.servicios li {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-left: 6px solid #1565c0;
  padding: 30px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(21,101,192,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.servicios li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.servicios li:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(21,101,192,0.15);
}

.servicios li:hover::before {
  opacity: 1;
}
.servicios h3 {
  margin-top: 0;
  color: #1565c0;
  font-size: 1.4em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.servicios h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  border-radius: 2px;
}
/* Estilos para la página de contacto mejorada */
.contacto-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
}

.contacto-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.contacto-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.contacto-header h2 {
  color: #fff;
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #fff, #e3f2fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contacto-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4em;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contacto-form {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
  padding: 60px;
  border-radius: 30px;
  box-shadow: 
    0 30px 60px rgba(102, 126, 234, 0.15),
    0 15px 30px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  backdrop-filter: blur(20px);
}

.contacto-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #764ba2, #667eea);
  border-radius: 30px 30px 0 0;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: #1565c0;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
  font-size: 1.1em;
}

.contacto form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

/* Fondo sutil del formulario - removido para evitar problemas visuales */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contacto label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95em;
  margin-bottom: 5px;
}
/* Input wrappers con iconos */
.input-wrapper, .textarea-wrapper {
  position: relative;
  width: 100%;
}

/* Iconos para PC */
.input-icon, .textarea-icon {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.textarea-icon {
  left: -20px;
  top: 30px;
  transform: none;
}

/* Iconos SVG simples y consistentes */
.input-icon[data-icon="nombre"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: block;
}

.input-icon[data-icon="empresa"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: block;
}

.input-icon[data-icon="email"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: block;
}

.input-icon[data-icon="telefono"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: block;
}

.textarea-icon[data-icon="mensaje"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: block;
}

.input-focus-border, .textarea-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  transition: width 0.3s ease;
  border-radius: 0 0 10px 10px;
}

/* Nuevo formulario moderno */
.contacto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacto-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #e8ecf1;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: #718096;
  font-size: 1.1rem;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contacto input, .contacto textarea, .contacto select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  color: #2d3748;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contacto input:focus, .contacto textarea:focus, .contacto select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.contacto input::placeholder, .contacto textarea::placeholder {
  color: #a0aec0;
}

.contacto textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contacto select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #718096;
  margin-top: 5px;
}

.char-counter.warning {
  color: #f59e0b;
}

.char-counter.danger {
  color: #ef4444;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #667eea;
}

.checkbox-text {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
}

.privacy-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}

.contacto button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.contacto button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contacto button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.contacto button:hover .btn-icon {
  transform: translateX(3px);
}

.contacto input::placeholder, .contacto textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contacto textarea {
  padding-left: 75px;
  padding-bottom: 50px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contacto input:hover, .contacto textarea:hover, .contacto select:hover {
  border-color: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
  background: #ffffff;
  border-radius: 15px;
}

.contacto input:focus, .contacto textarea:focus, .contacto select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
  border-width: 2px;
  background: #ffffff;
  border-radius: 15px;
}

.contacto input:focus::placeholder, .contacto textarea:focus::placeholder {
  color: #1565c0;
  opacity: 0.7;
}

.contacto input:focus + .input-icon,
.contacto textarea:focus + .textarea-icon {
  color: #1565c0;
  transform: translateY(-50%) scale(1.15);
  filter: drop-shadow(0 3px 6px rgba(21, 101, 192, 0.4));
  animation: iconPulse 0.6s ease-out;
}

.contacto textarea:focus + .textarea-icon {
  transform: scale(1.15);
  animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
  0% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.2); }
  100% { transform: translateY(-50%) scale(1.15); }
}

@keyframes iconPulseTextarea {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1.15); }
}

/* Cambiar color de los iconos SVG al enfocar */
.contacto input:focus + .input-icon[data-icon="nombre"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
}

.contacto input:focus + .input-icon[data-icon="empresa"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4'/%3E%3C/svg%3E");
}

.contacto input:focus + .input-icon[data-icon="email"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.contacto input:focus + .input-icon[data-icon="telefono"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
}

.contacto textarea:focus + .textarea-icon[data-icon="mensaje"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565c0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z'/%3E%3C/svg%3E");
}

.contacto input:focus ~ .input-focus-border,
.contacto textarea:focus ~ .textarea-focus-border {
  width: 100%;
}

/* Efecto de brillo en hover - removido para evitar problemas visuales */

/* Labels mejorados */
.contacto label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95em;
  margin-bottom: 8px;
  display: block;
  position: relative;
  transition: color 0.3s ease;
}

.contacto label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1565c0, #42a5f5);
  transition: width 0.3s ease;
}

.contacto input:focus ~ label,
.contacto textarea:focus ~ label,
.contacto select:focus ~ label {
  color: #1565c0;
}

.contacto input:focus ~ label::after,
.contacto textarea:focus ~ label::after,
.contacto select:focus ~ label::after {
  width: 100%;
}

/* Select personalizado */
.select-wrapper {
  position: relative;
  width: 100%;
}

.contacto select {
  cursor: pointer;
  padding-right: 60px;
  padding-left: 20px;
  appearance: none;
  background: #ffffff;
  font-weight: 500;
}

.contacto select option {
  padding: 10px;
  background: #ffffff;
  color: #2c3e50;
  font-weight: 500;
}

.contacto select option:hover {
  background: #e3f2fd;
}

.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.9em;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.contacto select:hover + .select-arrow,
.contacto select:focus + .select-arrow {
  color: #1565c0;
}

/* Contador de caracteres */
.char-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 0.85em;
  color: #9ca3af;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.95) 100%);
  padding: 4px 10px;
  border-radius: 15px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.1);
  transition: all 0.3s ease;
}

.char-counter.warning {
  color: #f59e0b;
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.95) 0%, rgba(254, 243, 199, 0.95) 100%);
  border-color: rgba(245, 158, 11, 0.2);
}

.char-counter.danger {
  color: #dc2626;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.95) 0%, rgba(254, 226, 226, 0.95) 100%);
  border-color: rgba(220, 38, 38, 0.2);
}

/* Opciones de presupuesto */
.budget-wrapper {
  margin-top: 10px;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.budget-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px;
  border: 2px solid #e3f2fd;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.budget-option:hover {
  border-color: #1565c0;
  background: rgba(21, 101, 192, 0.05);
}

.budget-option input[type="radio"] {
  display: none;
}

.budget-label {
  font-size: 0.9em;
  color: #2c3e50;
  font-weight: 500;
  cursor: pointer;
}

.budget-option input[type="radio"]:checked + .budget-label {
  color: #1565c0;
  font-weight: 600;
}

.budget-option input[type="radio"]:checked {
  background: #1565c0;
}

.budget-option:has(input[type="radio"]:checked) {
  border-color: #1565c0;
  background: rgba(21, 101, 192, 0.1);
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.1);
}
/* Checkboxes personalizados */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 15px;
  border: 2px solid #e3f2fd;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.checkbox-wrapper:hover {
  border-color: #1565c0;
  background: rgba(21, 101, 192, 0.05);
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: #1565c0;
  border-color: #1565c0;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  font-size: 0.95em;
  color: #2c3e50;
  line-height: 1.4;
}

.privacy-link {
  color: #1565c0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #0d47a1;
  text-decoration: underline;
}

/* Mensajes de error */
.error-message {
  color: #dc2626;
  font-size: 0.85em;
  margin-top: 8px;
  min-height: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.9) 0%, rgba(254, 226, 226, 0.9) 100%);
  border-radius: 8px;
  border-left: 3px solid #dc2626;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
  transform: translateY(-5px);
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.error-message::before {
  content: '⚠️';
  margin-right: 6px;
  font-size: 0.9em;
}

/* Botón mejorado */
.contacto button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  min-height: 50px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.contacto button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contacto button.loading .btn-text,
.contacto button.loading .btn-icon {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.contacto button.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}

.contacto button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contacto button:hover::before {
  left: 100%;
}

.contacto button:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  border-radius: 12px;
}

.btn-icon {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.contacto button:hover .btn-icon {
  transform: translateX(5px);
}

.form-message {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  border: 1px solid #4caf50;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-icon {
  background: #4caf50;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
}

.message-content h4 {
  color: #2e7d32;
  margin: 0 0 5px 0;
  font-size: 1.1em;
}

.message-content p {
  color: #388e3c;
  margin: 0;
  font-size: 0.95em;
}
.contacto-info {
  display: flex;
  flex-direction: column;
}

.info-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #e8ecf1;
  height: fit-content;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0);
  border-radius: 20px 20px 0 0;
}

.info-header {
  text-align: center;
  margin-bottom: 30px;
}

.info-header h3 {
  color: #1565c0;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.info-header p {
  color: #666;
  font-size: 1.1em;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(21, 101, 192, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(21, 101, 192, 0.1);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.1);
}

.method-icon {
  font-size: 2em;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.method-content h4 {
  color: #1565c0;
  margin: 0 0 5px 0;
  font-size: 1.1em;
  font-weight: 600;
}

.method-content p {
  color: #2c3e50;
  margin: 0 0 3px 0;
  font-weight: 500;
}

.method-desc {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}

.business-hours {
  background: rgba(21, 101, 192, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(21, 101, 192, 0.1);
}

.business-hours h4 {
  color: #1565c0;
  margin: 0 0 15px 0;
  font-size: 1.2em;
  text-align: center;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  color: #2c3e50;
  font-weight: 500;
}

.time {
  color: #1565c0;
  font-weight: 600;
}

.datos-contacto {
  margin-top: 40px;
  text-align: center;
}
footer {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 80px;
  box-shadow: 0 -4px 20px rgba(21, 101, 192, 0.3);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #42a5f5, #64b5f6, #42a5f5);
}
.nosotros {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  padding: 50px 40px 40px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(21,101,192,0.1);
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid rgba(21, 101, 192, 0.1);
  position: relative;
}

.nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0);
  border-radius: 20px 20px 0 0;
}
.nosotros .logo-empresa img {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 180px;
}
.clientes {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.1);
  position: relative;
}

.clientes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0);
  border-radius: 20px 20px 0 0;
}
.clientes h2 {
  color: #1565c0;
}
.logos-clientes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  margin: 30px 0 10px 0;
}
.cliente-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.cliente-item a {
  text-decoration: none;
  color: inherit;
}

.cliente-item img {
  max-width: 120px;
  max-height: 70px;
  filter: grayscale(1) brightness(0.9);
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(21,101,192,0.1);
  border: 1px solid rgba(21, 101, 192, 0.1);
  margin-bottom: 8px;
}

.cliente-item:hover img {
  filter: none;
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 25px rgba(21,101,192,0.2);
  border-color: #1565c0;
}

.cliente-nombre {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.2;
  max-width: 120px;
  word-wrap: break-word;
}

.cliente-item:hover .cliente-nombre {
  color: #1565c0;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  /* Iconos para móvil */
  .input-icon, .textarea-icon {
    left: -19px;
    width: 16px;
    height: 16px;
  }
  
  .textarea-icon {
    left: -19px;
    top: 20px;
  }
  
  /* Ajustar padding para móvil */
  .contacto input, .contacto textarea, .contacto select {
    padding: 18px 20px 18px 60px;
  }
  
  .contacto textarea {
    padding-left: 60px;
  }
  
  /* Header y navegación responsive */
  header .container {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  header h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    gap: 12px;
  }
  
  header h1 img {
    width: 35px;
    height: 35px;
  }
  
  nav {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  position: relative;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  border-radius: 25px;
  padding: 2px;
}
  
  nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
  
  nav ul {
    flex-direction: row;
    gap: 10px;
    width: max-content;
    margin: 0;
    padding: 0 5px;
    display: flex;
    flex-wrap: nowrap;
  }
  
  nav li {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }
  
  nav a {
    width: auto;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    margin: 0;
    display: block;
    white-space: nowrap;
    min-width: 100px;
  }
  
  /* Servicios responsive */
  .servicios ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Contacto responsive */
  .contacto-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    padding: 0 15px;
  }
  
  .contacto-hero {
    padding: 40px 20px;
  }
  
  .contacto-header h2 {
    font-size: 1.8em;
  }
  
  .clientes-hero {
    padding: 40px 20px;
  }
  
  .clientes-hero h2 {
    font-size: 1.8em;
  }
  
  .contacto-container {
    max-width: 400px;
    padding: 0 10px;
  }
  
  .contacto-form, .info-card {
    padding: 25px 20px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .method-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5em;
  }
  
  /* Formulario responsive */
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  /* Logos de clientes responsive */
  .logos-clientes {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }
  
  .logos-clientes img {
    max-width: 100px;
    max-height: 60px;
  }
}

/* Estilos para la página de clientes */
.clientes-hero {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clientes-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.clientes-hero h2 {
  font-size: 3.5em;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.clientes-hero p {
  font-size: 1.3em;
  margin: 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* Estilos para la sección de pregunta importante */
.pregunta-importante {
  margin: 50px 0;
}

.pregunta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.15);
  overflow: hidden;
  border: 1px solid #e3f2fd;
  position: relative;
}

.pregunta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0);
}

.pregunta-header {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  padding: 25px 30px;
  text-align: center;
}

.pregunta-header h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.4;
}

.pregunta-content {
  padding: 40px 30px;
  text-align: center;
}

.pregunta-principal h2 {
  color: #1565c0;
  font-size: 2.5em;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 4px rgba(21, 101, 192, 0.1);
  letter-spacing: -1px;
}

.pregunta-opciones p {
  color: #555;
  font-size: 1.3em;
  margin: 0 0 25px 0;
  font-weight: 400;
}

.pregunta-invitacion {
  margin: 30px 0;
  padding: 15px 0;
}

.pregunta-invitacion span {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1.2em;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
  display: inline-block;
}

.beresoft-respuesta {
  margin-top: 35px;
  padding: 25px;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-radius: 15px;
  border-left: 5px solid #ff9800;
  position: relative;
}

.beresoft-respuesta::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 15px;
  font-size: 3em;
  color: #ff9800;
  font-family: Georgia, serif;
  z-index: 10;
}

.beresoft-respuesta::after {
  content: '"';
  position: absolute;
  top: -15px;
  right: 15px;
  font-size: 3em;
  color: #ff9800;
  font-family: Georgia, serif;
  z-index: 10;
}

.beresoft-respuesta p {
  color: #e65100;
  font-size: 1.4em;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Responsive para la sección de pregunta */
@media (max-width: 768px) {
  .pregunta-header {
    padding: 20px 20px;
  }
  
  .pregunta-header h3 {
    font-size: 1.2em;
  }
  
  .pregunta-content {
    padding: 30px 20px;
  }
  
  .pregunta-principal h2 {
    font-size: 2em;
  }
  
  .pregunta-opciones p {
    font-size: 1.1em;
  }
  
  .beresoft-respuesta {
    padding: 20px;
  }
  
  .beresoft-respuesta p {
    font-size: 1.2em;
  }
}

/* Breakpoint para pantallas muy pequeñas */
@media (max-width: 480px) {
  /* Iconos para móviles muy pequeños */
  .input-icon, .textarea-icon {
    left: -15px;
    width: 14px;
    height: 14px;
  }
  
  .textarea-icon {
    left: -15px;
    top: 18px;
  }
  
  /* Ajustar padding para móviles muy pequeños */
  .contacto input, .contacto textarea, .contacto select {
    padding: 16px 18px 16px 55px;
  }
  
  .contacto textarea {
    padding-left: 55px;
  }
  
  header .container {
    padding: 10px;
  }
  
  header h1 {
    font-size: 1.6rem;
    gap: 10px;
  }
  
  header h1 img {
    width: 30px;
    height: 30px;
  }
  
  nav ul {
    gap: 8px;
  }
  
  nav a {
    padding: 10px 15px;
    font-size: 0.85rem;
    min-width: 90px;
  }
  
  .contacto-hero {
    padding: 30px 15px;
  }
  
  .contacto-header h2 {
    font-size: 1.5em;
  }
  
  .clientes-hero {
    padding: 30px 15px;
  }
  
  .clientes-hero h2 {
    font-size: 1.5em;
  }
  
  .contacto-form, .info-card {
    padding: 20px 15px;
  }
  
  .pregunta-header h3 {
    font-size: 1.2em;
  }
  
  .pregunta-principal h2 {
    font-size: 1.8em;
  }
  
  .logos-clientes {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }
  
  .logos-clientes img {
    max-width: 80px;
    max-height: 50px;
  }
} 