#contacto {
  background: linear-gradient(180deg, #f8ecd6 0%, #f0e4ca 100%);
  padding: 80px 20px;
}

/* Tarjeta Principal */
#contacto .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  padding: 0; 
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(90, 57, 33, 0.15); 
  background: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden; 
  border: 1px solid rgba(197, 160, 89, 0.2); 
}

.contact-info {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  position: relative;
}

.contact-info::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e0d7bc, transparent);
}

/* Título */
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #5a3921;
  text-align: left;
  margin-bottom: 35px;
  border-bottom: none; 
  position: relative;
  padding-bottom: 15px;
  letter-spacing: -0.5px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* Items de contacto */
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: transparent;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: none;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}

.contact-info p:last-child {
  border-bottom: none;
}

.contact-info p:hover {
  transform: translateX(10px);
  color: var(--color-accent);
}

.contact-info p strong {
  color: #5a3921;
  font-family: var(--font-heading);
  font-weight: 700;
  min-width: 80px;
  display: inline-block;
}

.contact-info p:first-child::before { content: ''; }

/* Contenedor del Mapa */
.map-container {
  flex: 1.2;
  min-height: 450px;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  filter: saturate(0.9) contrast(1.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  #contacto {
    padding: 30px 15px; 
  }

  #contacto .container {
    flex-direction: column;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .contact-info {
    padding: 30px 20px; 
    height: auto;       
    text-align: center; 
  }
  
  .contact-info::after {
    display: none;
  }

  .contact-info h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px; 
    padding-bottom: 10px;
  }
  
  .contact-info h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px; 
  }

  .contact-info p {
    font-size: 0.95rem; 
    padding: 10px 0;    
    justify-content: left;
    gap: 10px;
  }
  
  .contact-info p strong {
    min-width: auto; 
  }

  .map-container {
    width: 100%;
    height: 250px;    
    min-height: 250px; 
    flex: none;        
  }
}