#ColorSecundHeader, #ColorSecundFooter, #sidebarColorSecund{
  background-color: #6c5ce7 ;
}

main { 
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  /* padding: 1rem; */  
}

/* ===== Datos Perfil ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #6c5ce7, #74b9ff);
  text-align: center;
  padding: 60px 20px 40px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  color: #2d3436;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.hero img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.hero img:hover {
  transform: scale(1.05);
}
.hero h1 {
  margin: 10px 0;
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero p {
  margin: 5px 0 20px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3436;
  opacity: 0.9;
}


.section {
  padding: 30px 20px;
  border-radius: 20px;
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  width: 90%;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  color: #6c5ce7;
  margin-bottom: 15px;
  font-weight: 800;
  border-bottom: 2px solid #6c5ce7;
  display: inline-block;
  padding-bottom: 5px;
}
.dato {
  margin: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3436;
}
.section p {
  white-space: pre-line;
  line-height: 1.6;
}
.redes span {
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  color: #2d3436;
}
.redes i {
  color: #6c5ce7;
}
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 200;
}
.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  text-decoration: none;
}
.floating-buttons a:hover {
  transform: scale(1.1);
}
.btn-whatsapp {
  background: #25d366;
}
.btn-email {
  background: #0984e3;
}
.btn-call {
  background: #fd9644;
}
.volver {
  text-align: center;
  margin: 20px 0;
}
.volver a {
  text-decoration: none;
  color: #6c5ce7;
  font-weight: 700;
  font-size: 1rem;
}
.volver a:hover {
  color: #0984e3;
}
