body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.header-contenedor{
  background-color: #f1f3f5;
  padding: 0px 10px;
}

#card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.card {
  
  border-radius: 12px;
  
  width: 320px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card img {
  border-radius: 10px;
  border-radius: 50%;
}

.card h2 {
  margin: 0.5rem 0 0;
}

.card iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
}

.card .actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

button, a.whatsapp {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: white;
  cursor: pointer;
}

a.whatsapp {
  background-color: #25D366;
}

button.guardar {
  background-color: #1976D2;
}

.foto-perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.descargar-foto {
  margin-top: 0.5rem;
  /* background-color: #4caf50; */
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* === Menú de navegación === */
/* === NAVBAR MODERNA Y MINIMALISTA === */

.nav-contenedor{
  /* background-color: #1be914; */
  padding: 5px;
}
.div-contenedor{
  /* background-color: #ffcc00; */
  display: flex;
  align-items: center;
  
}
.div-ul-contenedores{
  /* background-color: red; */
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  width: 70%;
  padding-right: 20px;
}
.div-tarjeta{
  /* background-color: rebeccapurple; */
  color: #fff;
  width: 30%;
}
.div-tarjeta > img{
  width: 80px;
  
}
.ul-contenedor{
  /* background-color: aqua; */
  display: flex;
}
.ul-contenedor > li{
  list-style-type: none;
  padding: 0px 10px;
}
.ul-contenedor > li > a{
  text-decoration: none;
  color: #0d47a1;
}
.social-icons > li{
  list-style-type: none;
}


/*FOOTER*/
.footer {
  background-color: #0d47a1;
  color: #fff;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}

.footer-column {
  flex: 1 1 200px;
}

.logo-footer {
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-column h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-column ul li a:hover {
  color: #1be914;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}
.social-icons a i {
  font-size: 20px;
  color: #0d47a1; /* Cambia este color a lo que desees */
  transition: color 0.3s;
}
.social-icons2 a i{
  color: #fff;
}

.social-icons a:hover i {
  color: #ffcc00; /* Color al pasar el mouse */
}

.social-icons a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.social-icons a img:hover {
  filter: grayscale(0%);
}

.blog-preview {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-preview img {
  border-radius: 6px;
  width: 50px;
  height: 50px;
}

.blog-preview p {
  margin: 0;
  font-size: 0.85rem;
}

.blog-preview span {
  font-size: 0.75rem;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  max-width: 1200px;
  margin: auto;
  font-size: 0.85rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #fff;
}

.footer-bottom a:hover {
  color: #1be914;
}


.profile-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
  margin: 0 auto;
  cursor: pointer;
}

.rol {
  color: #4CAF50;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0;
}

.profile-card h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #111;
}

.descripcion {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social-links a {
  background-color: #4CAF50;
  color: white;
  padding: 0.6rem;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background-color: #388E3C;
}

.qr {
  width: 95px;
  height: 95px;
  margin: 0 auto;
  display: block;
}
.contenedorImg{
  /* background-color: #1be914; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-contacto{
  background-color: #0d47a1;
  padding: 20px;
  text-align: center;
  color: #fff;
}


