
:root{
  --cine-green:#0b4a22;
  --navbar-height: 80px;
  --cine-white:#ffffff;
}

body{
  font-family:'Poppins',sans-serif;
  background:#0a3b1e;
}

.navbar{
  background: var(--cine-green);
  backdrop-filter: none;
}

.navbar-logo{
  height: 42px;
  width: auto;
}

/* Mobile */
@media (max-width:768px){
  .navbar-logo{
    height: 34px;
  }
}

.navbar-dark .navbar-nav .nav-link{
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover{
  color: #ffd400;
}



.logo-cine{color:#ffd400;}
.logo-hasta{color:#fff; margin:0 4px;}
.logo-aulas{color:#00d0c7;}

.hero{
  min-height:100vh;
  padding-top:120px;
  background:#ffffff;
}

.ant-circle{
  width: 280px;
  height: 280px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Glow turquesa como la imagen original */
  box-shadow:
    0 0 0 6px rgba(0, 208, 199, 0.6),
    0 0 40px rgba(0, 208, 199, 0.7);
}

.ant-img{
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px){
  .ant-circle{
    width: 200px;
    height: 200px;
  }
}

.gradient-text{
  background:linear-gradient(90deg,#ff7a00,#00aaff,#ffd400);
  -webkit-background-clip:text;
  color:transparent;
}

.section-light{
  background:#f8f9fa;
  padding:40px 0;
}

.section-dark{
  background:#0e4b28;
  padding:40px 0;
  color:#ffffff;
}

.section-register{
  background:#ffd400;
  padding:80px 0;
}

.section-title{
  font-weight:700;
  margin-bottom:20px;
}

.footer{
  background:#062c14;
  color:#fff;
  padding:30px 0;
}

.hero-logo{
  max-width: 100%;
  width: 420px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.4));
}

.hero .lead{
  color: var(--cine-green);
  font-weight: 500;
}


/* Ajustes mobile */
@media (max-width: 768px){
  .hero-logo{
    width: 300px;
  }
}

.hero .btn-outline-light{
  color: var(--cine-green);
  border: 2px solid var(--cine-green);
  background: transparent;
}

.hero .btn-outline-light:hover{
  background: var(--cine-green);
  color: #ffffff;
}

@media (max-width:768px){
  .hero{
    text-align: center;
  }
}

/* Cards verdes en sección Programa */
#programa .card{
  background: var(--cine-white);
  border: none;
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}

#programa .card-title,
#programa .card-text{
  color: #0b4a22;
}

#programa .card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}

#programa .card:hover .card-title{
  color:#ffd400;
}

/* HERO BANNER CON IMAGEN */
/*.hero-banner{
  position: relative;
  min-height: 100vh;
  background: url("/web/site/assets/img/banner-cinehasta.png") no-repeat center center;
  background-size: cover;
}*/

.hero-banner{
  position: relative;
  width: 100%;  
  min-height: calc(100vh - var(--navbar-height));
  margin-top: var(--navbar-height);

  background-image: url("../img/banner-cinehasta.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* 📱 MOBILE FIX */
@media (max-width: 768px){
  .hero-banner{    
    aspect-ratio: 16 / 9;
    min-height: auto;
    background-size: contain;
    background-position: center bottom; /* 🔑 baja la imagen */
    background-color: #0b4a22;
  }
}

/* CTA móvil */
.mobile-cta{
  display: none;
  padding: 24px 0;
  background: #ffffff;
}

/* Mostrar SOLO en móviles y tablets */
@media (max-width: 991px){
  .mobile-cta{
    display: block;
    margin-top: -20px;
  }
}

.whatsapp-float{
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float img{
  width: 28px;
  height: 28px;
}

/* Hover desktop */
@media (hover:hover){
  .whatsapp-float:hover{
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(0,0,0,.35);
  }
}

@media (max-width: 768px){
  .whatsapp-float{
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float img{
    width: 26px;
    height: 26px;
  }
}

.footer a{
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover{
  color: #ffd400;
  text-decoration: underline;
}

.legal-links{
  font-size: 14px;
}

.festival-img {
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.festival-link:hover .festival-img {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.muestras-img {
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.muestras-link:hover .muestras-img {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* =========================
   HERO NOSOTROS
========================= */

.nosotros-quote{
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cine-green);
  border-left: 5px solid #ffd400;
  padding-left: 20px;
  margin: 60px auto;
  max-width: 900px;
}

.nosotros-content{
  max-width: 900px;
  margin: 0 auto;
}

.nosotros-content h2{
  font-size: 2rem;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--cine-green);
}

.nosotros-content p{
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}

.nosotros-list{
  margin: 30px 0;
  padding-left: 20px;
}

.nosotros-list li{
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px){
  .nosotros-quote{
    font-size: 1.15rem;
  }

  .nosotros-content h2{
    font-size: 1.6rem;
  }
}

/* =========================
   HERO NOSOTROS
========================= */

.hero-nosotros{
  margin-top: var(--navbar-height);
  padding: 100px 0 80px;
  background: linear-gradient(
    180deg,
    #0b4a22 0%,
    #0e4b28 100%
  );
  color: #ffffff;
}

.hero-nosotros h1{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-nosotros .lead{
  font-size: 1.2rem;
  max-width: 720px;
  color: #e8f5ee;
}

/* Mobile */
@media (max-width: 768px){
  .hero-nosotros{
    padding: 80px 0 60px;
    text-align: center;
  }

  .hero-nosotros h1{
    font-size: 2.1rem;
  }

  .hero-nosotros .lead{
    font-size: 1.05rem;
  }
}

/* =========================
   PROGRAMAS
========================= */

.program-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all .3s ease;
  position: relative;
}

.program-card h4{
  font-weight: 700;
  margin-bottom: 12px;
}

.program-card p{
  color: #555;
  margin-bottom: 0;
}

.program-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.program-card h4 {
  color: #0f5132; /* verde oscuro elegante */
  font-weight: 700;
  margin-bottom: 12px;

}

.program-card p {
  color: #444;
}


