/* ===================================
    General
====================================== */

section{
  overflow-x: clip;
  position: relative;
}

.whatsapp{
  text-decoration: none;
}

.ico-cover{
  width: 50px;
}

.grid-sucursales{
  display: grid;
  grid-template-columns: 1fr;
  gap:50px;
}


.contact-cover .contact-content .icon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #285CAA;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-cover .contact-content .icon svg{
  width: 15px;
  height: 15px;
}

.contact-cover .contact-content{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  margin-top: 10px;
}


.contact-cover .contact-content a{
  text-decoration: none;
  color: #113180;
  font-weight: 400;
  transition: all 0.7s ease;
}

.contact-content{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap:20px;
  margin-top: 10px;
}


.contact-content .icon svg{
  width: 25px;
  height: 25px;
}


.contact-content a{
  text-decoration: none;
  color: #272727;
  transition: all 0.7s ease;
}

.contact-content a:hover{
  color: #2B50AA;
  transition: all 0.7s ease;
}



.btn-square {
  width: 35px;
  height: 35px;
  background-color: #2B50AA; /* azul */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* color del ícono */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-square svg {
  transition: transform 0.3s ease;
}

.btn-square:hover {
  background-color: #1d3d8c; /* azul más oscuro al hacer hover */
}

.btn-square:hover svg {
  transform: translateX(5px); /* mover la flecha un poco a la derecha */
}



/* ===================================
    Responsive
====================================== */


/* xxs */ @media (max-width: 430px) {}
/* xs  */ @media (min-width: 431px) {} /* @media (max-width: 575px) {} */
/* sm  */ @media (min-width: 576px) {


.btn-square {width: 50px;height: 50px;}

}
/* md  */ @media (min-width: 768px) {

.grid-sucursales{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:50px;
}
.btn-square {width: 50px;height: 50px;}

} /* ipad Portrait */
/* lg  */ @media (min-width: 992px) {

.grid-sucursales{grid-template-columns: repeat(3, 1fr);gap:20px;}
.btn-square {width: 35px;height: 35px;}

} /* ipad Landscape */
/* xl  */ @media (min-width: 1200px) {

.grid-sucursales{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:50px;
}

.btn-square {width: 50px;height: 50px;}

}
/* xxl */ @media (min-width: 1400px) {}
