h1.title{
  display: none;
}
.breadcrumb-container {
  width: min(1200px, 94%);
  margin: 2rem auto 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  width: fit-content;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .separator {
  color: #a7d0b0;
}

.breadcrumb .current {
  color: var(--secondary);
  font-weight: 700;
}

.contacto-hero {
  background: linear-gradient(135deg, var(--primary), #1a5a4a, var(--secondary));
  padding: 4rem 1rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.contacto-hero::before {
  content: "📬";
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 150px;
  opacity: 0.08;
  transform: rotate(10deg);
}

.contacto-hero .container {
  position: relative;
  z-index: 2;
}

.contacto-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.contacto-hero p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
}

.contacto-container {
  width: min(1200px, 94%);
  margin: 2rem auto 4rem;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.info-card {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.info-card h2,
.form-card h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  border-bottom: 2px solid #a7d0b0;
  padding-bottom: 1rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 15px;
  transition: var(--transition);
}

.info-item:hover {
  background: var(--accent);
  transform: translateX(6px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a7d0b0, var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.info-content p,
.info-content a {
  color: #666;
  line-height: 1.6;
}

.social-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #a7d0b0;
}

.social-section h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-5px) scale(1.08);
}

.form-card {
  background: white;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.form-group.focused label {
  color: var(--secondary);
  transform: translateX(6px);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(217, 108, 47, 0.12);
  background: white;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  pointer-events: none;
  font-size: 0.75rem;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  margin-top: 0.2rem;
}

.checkbox-text {
  color: #666;
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--secondary);
}

.btn-enviar {
  width: 100%;
  padding: 1.15rem;
  background: linear-gradient(135deg, var(--secondary), #f07b3e);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-enviar:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(217,108,47,0.35);
}

.btn-enviar:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.mensaje-exito,
.mensaje-error {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.mensaje-exito {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
}

.mensaje-error {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
}

.mapa-section {
  margin-top: 4rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.mapa-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 1024px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .contacto-hero h1 {
    font-size: 2rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }
}