/* 
  ✨ Sistema de Diseño & Estilos Premium - Mujer de Cambios
  Optimizado para velocidad, accesibilidad, responsividad 100% y estética moderna.
*/

/* -------------------------------------------------------------
   1. VARIABLES DE COLOR (DISEÑO 60-30-10) & TIPOGRAFÍA
------------------------------------------------------------- */
:root {
  /* Fuentes */
  --font-sans: 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Paleta Clara Dominante (60% Fondos, 30% Estructuras/Texto, 10% CTA) */
  --bg-main: #ffffff;
  --bg-alt: #fff5f8;
  --bg-surface: rgba(255, 255, 255, 0.75);
  
  --text-main: #4c0048;      /* Berenjena profundo */
  --text-muted: #7d3c79;     /* Plum suave */
  --text-light: #ffffff;     /* Blanco sobre color */
  
  --color-primary: #ea596e;   /* Coral vibrante de la marca */
  --color-secondary: #d11a7a; /* Magenta vivo */
  --color-accent: #c2185b;    /* Frambuesa profundo */
  --color-pastel: #ffeaf2;    /* Rosa y blanco ultra-suave */
  --color-peach: #ffbab3;     /* Durazno suave */

  /* Sombras y Bordes */
  --border-light: rgba(194, 24, 91, 0.08);
  --border-glass: rgba(255, 255, 255, 0.45);
  --shadow-sm: 0 4px 6px rgba(76, 0, 72, 0.03);
  --shadow-md: 0 10px 25px rgba(76, 0, 72, 0.06);
  --shadow-lg: 0 20px 50px rgba(76, 0, 72, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Paleta Oscura (Para la sección del reproductor LUNA) */
.theme-dark {
  --bg-main: #0d010d;        /* Fondo berenjena oscuro */
  --bg-alt: #160215;
  --bg-surface: rgba(30, 2, 28, 0.6);
  
  --text-main: #ffeaf2;      /* Rosa claro */
  --text-muted: #ffbab3;     /* Durazno */
  
  --border-light: rgba(255, 234, 242, 0.06);
  --border-glass: rgba(255, 234, 242, 0.1);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* -------------------------------------------------------------
   2. REINICIO & ESTILOS GENERALES
------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------------------------------------
   3. ELEMENTOS DE INTERFAZ (GLASSMORPHISM & BOTONES)
------------------------------------------------------------- */
.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--text-light);
  box-shadow: 0 6px 18px rgba(234, 89, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 89, 110, 0.45);
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 89, 110, 0.2);
}

/* -------------------------------------------------------------
   4. CABECERA (NAVBAR)
------------------------------------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 6%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--color-pastel);
  box-shadow: 0 4px 10px rgba(234, 89, 110, 0.15);
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
}

.mobile-only {
  display: none;
}

/* -------------------------------------------------------------
   5. SECCIÓN HERO (PORTADA)
------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 110px 6% 90px;
  background: radial-gradient(circle at 85% 15%, rgba(255, 186, 179, 0.2) 0%, rgba(255, 255, 255, 0) 55%),
              radial-gradient(circle at 10% 85%, rgba(255, 234, 242, 0.35) 0%, rgba(255, 255, 255, 0) 65%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: block;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--text-main) 20%, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(234, 89, 110, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.hero-logo-frame {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 60px rgba(76, 0, 72, 0.12);
  animation: float 6s ease-in-out infinite;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Ondas de sonido de parlante (Multimedia Effect) */
.hero-logo-frame::before,
.hero-logo-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 20px rgba(234, 89, 110, 0.4);
  z-index: -1;
  opacity: 0;
  animation: soundWave 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.hero-logo-frame::after {
  animation-delay: 1.5s;
}

.hero-logo-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(209, 26, 122, 0.25);
}

/* Las ondas se aceleran al pasar el mouse (efecto parlante activo) */
.hero-logo-frame:hover::before,
.hero-logo-frame:hover::after {
  animation-duration: 1.5s;
  border-color: var(--color-secondary);
  box-shadow: 0 0 20px rgba(209, 26, 122, 0.5);
}

.hero-logo-frame img {
  width: 290px;
  height: 290px;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes soundWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* -------------------------------------------------------------
   6. SECCIÓN DE RADIO (REPRODUCTOR LUNA)
------------------------------------------------------------- */
.radio-section {
  padding: 90px 6%;
  text-align: center;
  position: relative;
  background: linear-gradient(-45deg, #0d010d, #1c001a, #060114, #120017);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.interactive-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 22px;
  position: relative;
  transition: var(--transition-smooth);
  cursor: default;
}

.interactive-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.interactive-title:hover {
  transform: scale(1.03);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.interactive-title:hover::after {
  width: 130px;
}

.radio-section p {
  color: var(--text-muted);
  margin-bottom: 45px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.player-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-surface);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55), 0 0 50px rgba(209, 26, 122, 0.2);
  border: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.player-container::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -15%;
  right: -15%;
  bottom: -15%;
  background: radial-gradient(circle, rgba(209, 26, 122, 0.25) 0%, rgba(234, 89, 110, 0.08) 50%, transparent 70%);
  z-index: -1;
  filter: blur(25px);
  animation: breathingGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes breathingGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Indicador En Vivo */
.live-indicator {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 89, 110, 0.18);
  padding: 6px 15px;
  border-radius: 30px;
  z-index: 10;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: pulse 1.5s infinite;
}

.live-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
}

@keyframes pulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(234, 89, 110, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 9px rgba(234, 89, 110, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(234, 89, 110, 0); }
}

/* Ajustes LUNA Player */
#lunaradio {
  border: none !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

/* -------------------------------------------------------------
   7. SECCIÓN HORARIOS Y PROGRAMAS (100% RESPONSIVA)
------------------------------------------------------------- */
.programs-section {
  padding: 90px 6%;
  background: radial-gradient(circle at 12% 18%, rgba(255, 234, 242, 0.3) 0%, rgba(255, 255, 255, 0) 55%),
              var(--bg-alt);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.programs-section .section-header {
  margin-bottom: 55px;
}

.programs-section .section-tagline {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 8px;
}

.programs-section h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.programs-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  text-align: center;
  padding: 45px 35px;
}

.program-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--color-pastel);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 22px;
  box-shadow: 0 4px 12px rgba(234, 89, 110, 0.1);
  transition: var(--transition-smooth);
}

.program-card:hover .program-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--text-light);
  transform: rotateY(360deg);
  box-shadow: 0 8px 20px rgba(234, 89, 110, 0.35);
}

.program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.program-time {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 18px;
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* -------------------------------------------------------------
   8. SECCIÓN CONTENIDO (VERSÍCULO & CANCIONES)
------------------------------------------------------------- */
.content-section {
  padding: 90px 6%;
  background-color: var(--bg-main);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.content-section .section-title {
  font-family: var(--font-script);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-secondary);
}

.content-section .section-title i {
  color: var(--color-primary);
}

/* Tarjeta Versículo */
.verse-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  background: linear-gradient(135deg, var(--color-pastel), rgba(255, 255, 255, 0.7));
  border-radius: var(--radius-lg);
  border-left: 8px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  padding: 45px;
  text-align: center;
  transition: var(--transition-smooth);
}

.verse-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.verse-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 22px;
  opacity: 0.8;
}

#daily-verse-text {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.65;
  color: #59002e;
  margin-bottom: 25px;
}

#daily-verse-citation {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
}

#daily-verse-citation a {
  color: var(--color-primary);
  border-bottom: 2px solid transparent;
}

#daily-verse-citation a:hover {
  border-color: var(--color-primary);
}

/* Lista de Canciones Recientes (CentovaCast) */
.tracks-card {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 15px;
}

.tracks-card::-webkit-scrollbar {
  width: 6px;
}
.tracks-card::-webkit-scrollbar-track {
  background: transparent;
}
.tracks-card::-webkit-scrollbar-thumb {
  background: rgba(76, 0, 72, 0.12);
  border-radius: 10px;
}

.cc_recenttracks_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cc_recenttrack {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-alt);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.cc_recenttrack:hover {
  transform: translateX(6px);
  border-color: var(--color-peach);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.cc_recenttrack img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.cc_trackinfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cc_trackinfo strong {
  font-size: 0.98rem;
  color: var(--text-main);
  font-weight: 600;
}

.cc_trackinfo div {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   9. PIE DE PÁGINA (FOOTER)
------------------------------------------------------------- */
.footer {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 70px 6% 35px;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto 35px;
}

.footer-logo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.footer h3 {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.footer p {
  opacity: 0.88;
  font-size: 0.98rem;
  margin-bottom: 28px;
}

/* Redes Sociales con efecto de vibración y tooltip */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.social-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  animation: vibrar 0.3s ease-in-out;
  background-color: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook:hover { color: #1877f2; }
.social-btn.instagram:hover { color: #e1306c; }
.social-btn.youtube:hover { color: #ff0000; }
.social-btn.email:hover { color: #333333; }

/* Tooltip personalizado */
.social-btn::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@keyframes vibrar {
  0%   { transform: translate(0); }
  20%  { transform: translate(-2px, 2px); }
  40%  { transform: translate(2px, -2px); }
  60%  { transform: translate(-2px, 2px); }
  80%  { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* -------------------------------------------------------------
   10. RESPONSIVIDAD / MEDIA QUERIES (100% GARANTIZADA)
------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 70px;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 2.6rem;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .content-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .verse-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    padding: 15px 5%;
    justify-content: space-between;
  }
  
  /* Ocultar botón CTA en cabecera en móvil */
  .header-cta {
    display: none;
  }
  
  /* Mostrar botón hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }
  
  .menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
  }
  
  /* Animación del menú hamburguesa a 'X' */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background-color: var(--color-primary);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: var(--color-primary);
  }
  
  /* Mostrar opción de CTA móvil */
  .mobile-only {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
  
  .nav-cta {
    width: 100%;
    max-width: 250px;
    display: inline-flex !important;
  }
  
  /* Menú desplegable lateral (Slide-in Drawer) */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: -10px 0 30px rgba(76, 0, 72, 0.15);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 30px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }
  
  .hero-logo-frame img {
    width: 230px;
    height: 230px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}
