:root{
  --navy:#010D35;
  --blue:#0075FF;
  --orange:#FE951C;
}

body{
  font-family:'Segoe UI', sans-serif;
  background:#eef3f9;
  padding-top:90px;
}

/* NAVBAR */
.custom-navbar{
  background:white;
  padding:20px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-link{
  font-weight:500;
  color:#1e1e1e !important;
}

.active-link{
  color:var(--blue) !important;
  font-weight:600;
}

.nav-icon{
  font-size:20px;
  color:#1e1e1e;
}

/* HERO */
.coaching-hero{
  height:60vh;
  min-height:420px;
  background:
    linear-gradient(rgba(1,13,53,0.75), rgba(0,117,255,0.65)),
    url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b");
  background-size:cover;
  background-position:center;
  color:white;
}

.hero-title{
  font-size:48px;
  font-weight:800;
}

.section-padding{
  padding:100px 0;
}

/* CARDS */
.coach-card{
  background:white;
  border-radius:25px;
  padding:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  position:relative;
}

.coach-img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
}

.coach-role{
  color:var(--blue);
  font-weight:600;
}

/* RATING */
.rating-box{
  position:absolute;
  top:15px;
  right:20px;
  text-align:right;
}

.rating-display{
  font-weight:600;
  font-size:14px;
  color:var(--orange);
}

.vote-count{
  color:#666;
  font-size:13px;
}

.stars{
  display:flex;
  justify-content:flex-end;
  gap:4px;
}

.stars i{
  font-size:16px;
  cursor:pointer;
  color:#ccc;
  transition:0.25s ease;
}

.stars i.filled{
  color:var(--orange);
}

.stars i.half{
  color:var(--orange);
  opacity:0.5;
}

@media(max-width:768px){
  .hero-title{
    font-size:32px;
  }
}
/* BOTÓN CONTACTAR */

.contact-btn-wrapper{
  margin-top:20px;
  display:flex;
  justify-content:center;
}

.btn-contact{
  background:var(--blue);
  color:white;
  border:none;
  padding:8px 20px;
  border-radius:25px;
  font-size:14px;
  font-weight:500;
  transition:0.3s ease;
}

.btn-contact:hover{
  background:var(--orange);
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
/* ============================= */
/*        ANIMACIONES            */
/* ============================= */

/* HERO entrada */
.hero-content{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1.2s ease forwards;
  animation-delay:0.3s;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Reveal general */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Tarjetas animación hover elegante */
.coach-card{
  transition:0.4s ease;
}

.coach-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* Botón animación */
.btn-contact{
  transition:0.3s ease;
}

.btn-contact:hover{
  transform:translateY(-3px);
}

/* Pequeño efecto en estrellas */
.stars i:hover{
  transform:scale(1.2);
}
.btn-contact{
  text-decoration:none;
  display:inline-block;
}
/* ================= FOOTER ================= */

.footer-section{
  background:var(--navy);
  color:white;
  padding:70px 0;
}

.footer-section a{
  color:#ddd;
  text-decoration:none;
  transition:0.3s;
}

.footer-section a:hover{
  color:white;
}
/* ============================= */
/*        COMENTARIOS           */
/* ============================= */

.comments-section{
  background:#f5f7fb;
}

.category-wrapper{
  max-width:300px;
  margin:0 auto 30px;
}

.comment-form{
  display:flex;
  flex-direction:column;
  gap:15px;
  max-width:600px;
  margin:0 auto 50px;
}

.comment-form textarea{
  padding:15px;
  border-radius:15px;
  border:1px solid #ddd;
  resize:none;
  min-height:100px;
}

#publishBtn{
  align-self:flex-end;
  background:var(--blue);
  color:white;
  border:none;
  padding:8px 20px;
  border-radius:20px;
  transition:0.3s ease;
}

#publishBtn:hover{
  background:var(--orange);
}

.comment-card{
  background:white;
  padding:20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  margin-bottom:20px;
  animation:fadeUp 0.6s ease;
}

.comment-header{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:10px;
}

.comment-avatar{
  width:45px;
  height:45px;
  border-radius:50%;
  object-fit:cover;
}

.comment-name{
  font-weight:600;
}

.comment-category{
  font-size:12px;
  color:var(--blue);
}

.comment-actions{
  display:flex;
  gap:15px;
  margin-top:10px;
  font-size:14px;
}

.comment-actions i{
  cursor:pointer;
  transition:0.2s;
}

.comment-actions i.liked{
  color:var(--orange);
}