/* Estilos modernos para la portada profesional */
:root {
  --primary-color: #BC8D34;
  --secondary-color: #FBC95B;
  --dark-bg: #1D1D1D;
  --light-text: #f8f9fa;
  --transition-speed: 0.3s;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Estilos de encabezado */
.header-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-container img {
  max-height: 120px;
  transition: transform var(--transition-speed);
}

.logo-container img:hover {
  transform: scale(1.05);
}

.profile-image {
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-speed);
  max-height: 280px;
}

.profile-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Títulos y textos */
.professional-title {
  color: var(--secondary-color);
  font-weight: 300;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.credentials {
  color: var(--secondary-color);
  font-size: 1rem;
  padding-left: 0;
  list-style: none;
  margin: 1.5rem 0;
}

.credentials li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.credentials li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* CV y credenciales */
.cv-list {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.8;
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.cv-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(251, 201, 91, 0.2);
  position: relative;
  padding-left: 1.5rem;
}

.cv-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.cv-list a {
  color: var(--secondary-color);
  transition: color var(--transition-speed), transform var(--transition-speed);
  display: inline-block;
}

.cv-list a:hover {
  color: #fff;
  transform: translateX(3px);
  text-decoration: none;
}

/* Área de redes sociales */
.social-section {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.social-links {
  text-align: center;
}

.social-links a {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin: 0 15px;
  transition: all var(--transition-speed);
  display: inline-block;
  text-decoration: none;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.social-links i {
  margin-right: 0.5rem;
}

/* Botones de acción */
.action-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed);
  margin-top: 1.5rem;
  display: inline-block;
}

.action-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--dark-bg);
  text-decoration: none;
}

/* Servicios */
.services-section {
  padding: 2rem 0;
}

.service-card {
  background: rgba(35, 35, 35, 0.6);
  border-left: 3px solid var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-speed);
  border-radius: 4px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: rgba(35, 35, 35, 0.8);
}

.service-title {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Estilos responsive */
@media (max-width: 768px) {
  .logo-container img {
    max-height: 100px;
    margin-bottom: 1rem;
  }

  .profile-image {
    max-height: 200px;
    margin: 1.5rem auto;
    display: block;
  }

  .professional-title {
    text-align: center;
    font-size: 1.5rem;
  }

  .credentials {
    text-align: center;
    padding: 0;
  }

  .credentials li {
    padding-left: 0;
  }

  .credentials li:before {
    display: none;
  }

  .social-links a {
    margin: 0 10px;
    font-size: 1.1rem;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-1 { animation-delay: 0.2s; }
.fade-in-2 { animation-delay: 0.4s; }
.fade-in-3 { animation-delay: 0.6s; }

/* Enlaces de redes sociales en la tarjeta de contacto */
.contact-social-link {
  color: #ffffff;
  transition: color var(--transition-speed), transform var(--transition-speed);
  text-decoration: none;
}

.contact-social-link:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
  text-decoration: none;
}

.text-white {
  color: #ffffff !important;
}
