body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
  padding-top: 90px;
}

.logo,
.logo a,
.logo a:visited,
.logo a:active,
.logo a:hover {
  font-family: 'Anton SC', sans-serif;
  text-decoration: none;
  color: white;
}

.logo {
  font-weight: 400;
  margin: 0;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* Primera letra en naranja */
.logo-r {
  color: #FFC400;
}

/* Hover */
.logo a:hover {
  color: #FFC400;
}

.logo a:hover .logo-r {
  color: #FFC400;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9); /* ligero efecto */
  backdrop-filter: blur(6px);     /* efecto moderno */
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header h1 {
  display: inline;
}

nav {
  float: right;
}

nav a {
  color: #FFC400;
  margin-left: 15px;
  text-decoration: none;
}

.icono-container {
  display: flex;
  justify-content: center;  /* centra horizontal */
  align-items: center;      /* centra vertical (si hay altura) */
}

.icono-inicio {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #000, #222);
}

.section {
  padding: 60px 0;
  background-image: url('images/backolas.png');
}

.section.dark {
  background: #1a1a1a;
}

.section-intro {
  margin-bottom: 30px;
  color: #bbb;
  max-width: 600px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-you {
  background: #222;
  background-image: url("images/backyou.png");
  background-size: 100%;
  background-repeat: none;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
}

.card-pod {
  background: #222;
  background-image: url("images/backpod.png");
  background-size: 100%;
  background-repeat: none;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
 }

.card-otro {
  background: #222;
  background-image: url("images/backotro.png");
  background-size: 100%;
  background-repeat: none;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
 }

.cards-dom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

 .card-dominus {
  background: #222;
  background-image: url("images/backdom.png");
  background-size: 100%;
  background-repeat: none;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
 }

.cards a {
  color: #FF5900;
  font-weight: bolder;
  text-decoration: none;
}

.cards h3 {
  color: black;

}

.cards p {
  color: black;
}

.cards-dom a {
  color: #FF5900;
  font-weight: bolder;
  text-decoration: none;
}

.cards-dom h3 {
  color: white;
}

.cards-dom p {
  color: white;
}

.cards-dom .card-otro a {
  color: #FF5900;
  font-weight: bolder;
  text-decoration: none;
}

.cards-dom .card-otro h3 {
  color: black;
}

.cards-dom .card-otro p {
  color: black;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #FFC400;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

#about .about-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0 auto;
}

#about .about-text {
  flex: 0 1 420px;
}

#about .about-image {
  flex: 0 0 480px;
  display: flex;
  justify-content: center;
  border-style: solid;
  border: 5px;
  border-color: white;
}

#about .about-image img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border-style: solid;
  border-color: white;
}

@media (max-width: 768px) {
  #about .about-flex {
    flex-direction: column;
    text-align: center;
  }
  #about .about-image {
    flex: 0 1 auto;
    width: 100%;
  }
  #about .about-image img {
    max-width: 320px;
  }
}

/*Página podcast*/
.podcasts-section {
  padding: 80px 0;
}

.podcast-intro {
  max-width: 720px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #d6d6d6;
  line-height: 1.6;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.podcast-card {
  background: #1b1b1b;
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.podcast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border-color: #ff5900;
}

.podcast-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.podcast-card h3 {
  margin: 0 0 12px 0;
  color: #ffffff;
  font-size: 1.2rem;
}

.podcast-card p {
  margin: 0 0 18px 0;
  color: #cfcfcf;
  line-height: 1.5;
  font-size: 0.96rem;
}

.podcast-card a {
  display: inline-block;
  padding: 10px 18px;
  background: #ff5900;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.podcast-card a:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
}

.social i {
  font-size: 20px;
  color: #aaa;
  transition: 0.2s;
}

.social i:hover {
  color: #ff5900;
}

.social i:visited {
  color: #aaa;
}

#build-hash {
  font-size: 0.8rem;
  color: #666;
}