.contact-section {
    padding: 80px 10%;
    background-color: #f4f8fb; /* Azul muy pálido de fondo */
    display: flex;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Formulario más ancho que la info */
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Tarjetas de Información */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 50, 100, 0.05); /* Sombra azulada sutil */
    text-align: center;
    border-bottom: 3px solid #0056b3; /* Acento azul dental */
}

.info-card i {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #fcfdfe;
    outline: none;
}

.contact-form input:focus {
    border-color: #0056b3;
}

.btn-contact {
    background-color: #25d366; /* Color WhatsApp */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #128c7e;
}

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}


/* Contenedor del Mapa */
.contact-map {
    position: relative;
    width: 100%;
    height: 60vh; /* Altura ajustable, 60% de la pantalla */
    min-height: 400px;
    overflow: hidden;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.info-card a {
  text-decoration: none;
  color: inherit;
}

.info-card a:hover {
  text-decoration: underline; /* opcional pero recomendable */
}


.call-box{
  text-align: center;
  margin: 20px 0;
}

.btn-call-2{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #25D366; /* color tipo WhatsApp (llamativo) */
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-call i{
  font-size: 18px;
}

.btn-call:hover{
  background: #1ebe5d;
  transform: scale(1.05);
}




