@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* =========================
   VARIABLES (Paleta Premium Actualizada)
========================= */
:root {
  /* Dorados metálicos */
  --gold-base: #C5A059;
  --gold-light: #FEEBC1;
  --gold-dark: #7F592B;

  /* Verde esmeralda */
  --emerald-base: #0B3B24;
  --emerald-light: #1E6E45;

  /* Fondos oscuros premium */
  --black-deep: #0A0A0A;
  --black-soft: #1F1F1F;

  /* Alias semánticos */
  --color-primary: var(--gold-base);
  --color-secondary: var(--emerald-base);
  --color-bg-dark: var(--black-deep);
  
  /* Auxiliares */
  --text-light: #f9fafb;
  --text-muted: #9ca3af;

  --white-soft: #f8f9fa;  
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--black-soft);
  background: #ffffff;
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1050;
  background: transparent;
  transition: all 0.4s ease;
}

.custom-navbar.scrolled {
  background: linear-gradient(135deg, var(--black-deep), var(--emerald-base));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  padding: 10px 0;
}

.custom-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--gold-base) !important;
}

.logo-navbar {
  width: 280px;
}

.navbar-brand img {
  height: 100px;
  width: auto;
}

.social-icon {
  color: #ffffff;
 
}

.social-icon:hover {
  color: var(--gold-light);
}


/* Dropdown */
.custom-navbar .dropdown-menu {
  background: var(--black-soft);
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.custom-navbar .dropdown-item {
  color: var(--gold-light);
}

.custom-navbar .dropdown-item:hover {
  background: var(--gold-base);
  color: var(--black-deep);
}

/* =========================
   BOTONES
========================= */
.btn-primary {
  background: var(--gold-base);
  color: var(--black-deep);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

/* =========================
   HERO
========================= */
.course-hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85), rgba(10,10,10,0.4));
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 720px;
  margin-left: 10%;
}

.hero-badge {
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--gold-base);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 20px 0 28px;
  color: var(--gold-light);
}


.hero-datetime {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.hero-date-badge {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid var(--gold-base);

  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: .6px;
  text-transform: uppercase;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: all .35s ease;
}

.hero-date-badge:hover {
  background: rgba(197, 160, 89, 0.28);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-time-badge {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(14, 94, 56, 0.45);
  border: 1px solid var(--emerald-light);

  color: var(--white-soft);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .4px;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: all .35s ease;
}

.hero-time-badge:hover {
  background: rgba(14, 94, 56, .65);
  transform: translateY(-2px);
  border-color: var(--gold-base);
}

/* ================================= */

 
 
 
 
 
/* =========================
   SOBRE EL TALLER
========================= */

.course-why{
  padding: 90px 0;
  background: #ffffff;
}

.course-why h2{
  font-size: 2.4rem;
  text-align:center;
  margin-bottom: 25px;
  color: var(--emerald-base);
  font-weight: 800;
}

.course-why p{
  max-width: 900px;
  margin: 0 auto;
  text-align:center;
  color:#555;
  font-size: 1.05rem;
}



/* =========================
   BENEFICIOS (CARDS)
========================= */

.benefits-grid{
  margin-top:45px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.benefit-card{
  background:#fff;
  border:1px solid rgba(197,160,89,.25);
  border-radius:18px;
  padding:28px 22px;
  text-align:center;
  transition:.35s;
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}

.benefit-card i{
  font-size: 2.6rem;
  color: var(--emerald-base);
  margin-bottom: 14px;
}

.benefit-card h3{
  font-weight: 800;
  margin-bottom: 8px;
}

.benefit-card:hover{
  transform: translateY(-8px);
  border-color: var(--gold-base);
}



/* =========================
   OBJETIVOS
========================= */

.course-testimonial{
  background: linear-gradient(135deg,var(--black-deep),var(--emerald-base));
  color:#fff;
  padding: 90px 0;
  border-top:2px solid var(--gold-base);
  border-bottom:2px solid var(--gold-base);
  text-align:center;
}

.course-testimonial h2{
  font-size: 2.2rem;
  margin-bottom:14px;
}

.course-testimonial p{
  max-width:900px;
  margin:0 auto;
  color:#d9d9d9;
}



/* =========================
   DIRIGIDO A
========================= */

.testimonials-section{
  padding: 80px 0;
  background:#ffffff;
}

.testimonials-title{
  text-align:center;
  font-size:2.2rem;
  margin-bottom:18px;
}

.testimonials-title span{
  color: var(--emerald-light);
}

.testimonials-section p{
  max-width:850px;
  margin:0 auto;
  color:#555;
}



/* =========================
   LOGÍSTICA
========================= */

.course-features{
  background: linear-gradient(135deg,var(--black-deep),var(--emerald-base));
  color:#fff;
  padding: 110px 0;
}

.features-grid-custom{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.feature-item-custom{
  background: rgba(20,20,20,.45);
  border:1px solid rgba(197,160,89,.25);
  border-radius:10px;
  padding:28px;
  text-align:center;
  transition:.35s;
}

.feature-item-custom:hover{
  transform:translateY(-6px);
  border-color:var(--gold-base);
}

.feature-icon{
  font-size: 2.6rem;
  margin-bottom:10px;
}

.course-testimonial,
.testimonials-section {
  position: relative;
  z-index: 1;
}


 
 
 
 
 


/* ======= FOOTER PREMIUM ======= */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0A0A0A, #0B3B24);
  color: #ffffff;
  padding: 80px 0 20px;
  border-top: 2px solid #C5A059;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(197,160,89,.18), transparent 70%);
  opacity: .35;
}

/* GRID */
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND SECTION */
.footer-logo {
  width: 220px;
  margin-bottom: 14px;
}

.footer-desc {
  color: #e5e7eb;
  font-size: .9rem;
  margin-bottom: 10px;
  max-width: 320px;
}

.footer-badge {
  display: inline-block;
  color: #C5A059;
  border: 1px solid #C5A059;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: .8rem;
  letter-spacing: .5px;
}

/* TITULOS */
.footer-column h4 {
  color: #FEEBC1;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: .6px;
}

/* LISTAS */
.footer-column ul { list-style: none; padding: 0; }

.footer-column ul li { margin-bottom: 8px; }

.footer-column a {
  color: #e5e7eb;
  text-decoration: none;
  transition: .25s;
}

.footer-column a:hover {
  color: #C5A059;
  padding-left: 4px;
}

/* ICON TEXT */
.footer-column p i {
  color: #C5A059;
  margin-right: 6px;
}

/* SOCIAL */
.footer-social a {
  color: #ffffff;
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  margin-right: 10px;
  transition: .25s;
}

.footer-social a:hover {
  background: rgba(197,160,89,.25);
  border-color: #C5A059;
  transform: translateY(-2px);
}

/* BOTTOM LINE */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #d1d5db;
  font-size: .85rem;
}


/* BOTÓN FLOTANTE WHATSAPP */
.btn-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  z-index: 9999;
}

/* Hover */
.btn-whatsapp:hover {
  background-color: #1ebe5c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}


/* =========================
   PRECIO / REGISTRO PREMIUM
========================= */

.course-pricing-section{
  padding: 110px 0;
  background: #ffffff;
}

/* Tarjeta principal */
.pricing-card-premium{
  max-width: 860px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197,160,89,.35);
  box-shadow: 0 25px 60px rgba(0,0,0,.10);
  background: linear-gradient(180deg,#ffffff,#fbfbfb);
  transition: .35s;
}

.pricing-card-premium:hover{
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0,0,0,.18);
}

/* CABECERA ESMERALDA */
.pricing-header-emerald{
  background: linear-gradient(135deg,var(--black-deep),var(--emerald-base));
  color:#fff;
  padding: 24px 28px;
  border-bottom: 2px solid var(--gold-base);
  text-align:center;
}

.pricing-header-emerald h3{
  margin:0;
  font-weight:800;
  letter-spacing:.5px;
}

/* CUERPO DORADO */
.pricing-body-gold{
  text-align:center;
  padding: 28px 24px 18px;
  background: linear-gradient(180deg,#fff,#fdf7ea);
}

/* Precio principal */
.price-main{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
  margin-bottom:6px;
}

.price-main .currency{
  font-size:1.6rem;
  color:var(--gold-dark);
  font-weight:700;
}

.price-main .amount{
  font-size:3.2rem;
  color:var(--gold-dark);
  line-height:1;
  font-weight:900;
}

.price-main .label{
  font-size:.95rem;
  font-weight:700;
  color:#555;
}

/* Precio en soles */
.price-secondary{
  font-size:1.05rem;
  color:#333;
  font-weight:600;
}

/* PIE BLANCO */
.pricing-footer-white{
  background:#ffffff;
  padding: 28px 26px 32px;
  text-align:center;
  border-top:1px solid rgba(197,160,89,.25);
}

.pricing-footer-white p{
  margin-bottom:6px;
  color:#444;
  font-weight:600;
}

.discount-highlight{
  display:inline-block;
  margin-bottom:16px;
  padding:6px 12px;
  border-radius:10px;
  border:1px dashed var(--emerald-light);
  color:var(--emerald-light);
  font-size:.85rem;
  letter-spacing:.4px;
}

/* Botonera */
.pricing-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Botón principal */
.btn-primary-pay{
  background: var(--gold-base);
  color:#000;
  padding: 14px 28px;
  border-radius:40px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition:.35s;
  box-shadow:0 12px 26px rgba(197,160,89,.35);
}

.btn-primary-pay:hover{
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Botón secundario */
.btn-emerald-outline{
  background: transparent;
  border:1px solid var(--emerald-light);
  color:var(--emerald-light);
  padding: 14px 22px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  transition:.35s;
}

.btn-emerald-outline:hover{
  background: var(--emerald-light);
  color:#fff;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .features-grid-custom { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 992px) {
  .custom-navbar {
    background: rgba(11, 59, 36, 0.95);
  }
  .col-lg-4:only-child {
        max-width: 450px;
    }      
  .benefits-grid {
    flex-wrap: wrap; /* En tablets permite que bajen si no caben */
  }
  
  .benefit-card {
    flex: 0 0 calc(50% - 20px); /* 2 por fila en tablets */
  }
  .features-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content {
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-card {
    margin: 0 auto;
  }
  .testimonial-flex-container {
    flex-direction: column;
    text-align: center;
  }
  .btn-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }    
}

@media(max-width:650px){
  .pricing-actions{
    flex-direction:column;
  }

  .btn-primary-pay,
  .btn-emerald-outline{
    width:100%;
    text-align:center;
  }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns:1fr;}
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 60px 0 20px; }
  .features-grid-custom { grid-template-columns: 1fr; }
  .course-features { padding: 80px 20px; }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 65px;
  }    
  .benefit-card {
    flex: 0 0 100%; /* 1 por fila en móviles */
  }
  .course-form form {
    padding: 25px 20px;
  }
  .features-grid-custom {
    grid-template-columns: 1fr;
  }  
  .course-features { padding: 60px 20px; }
    .price-main .amount { font-size: 3.5rem; }
    .price-secondary { font-size: 1.5rem; }
}
 

