 :root {
            --primary-color: #eca540; --primary-hover: #d98c29;
            --dark-text: #1f2937; --light-text: #6b7280;
            --bg-light: #e8e8e8; --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; background-color: var(--bg-light); color: var(--dark-text); line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

        /* --- HEADER --- */
        .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1rem 0; transition: var(--transition); }
        .site-header.scrolled { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow); padding: 0.75rem 0; }
        .navbar { display: flex; justify-content: space-between; align-items: center; }
        .nav-logo a { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--dark-text); font-weight: 700; font-size: 1.5rem; }
        .nav-logo span { white-space: nowrap; }
        .nav-logo-small { /*width: 28px; */ height: 30px; }
        .site-header.scrolled .nav-logo a { color: var(--dark-text); }
        .site-header:not(.scrolled) .nav-logo a, .site-header:not(.scrolled) .nav-links a { color: var(--bg-white); text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
        .site-header:not(.scrolled) .mobile-menu-btn { color: var(--bg-white); }
        .nav-links { display: flex; gap: 2.5rem; list-style: none; }
        .nav-links a { text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.2s ease; position: relative; padding-bottom: 5px; }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
        .nav-links a:hover { color: var(--dark-text); }
        .site-header:not(.scrolled) .nav-links a:hover { color: var(--bg-white); }
        .nav-links a:hover::after { width: 100%; }
        .mobile-menu-btn { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; z-index: 1001; transition: color 0.2s ease; }
        .mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(20, 20, 30, 0.95); backdrop-filter: blur(5px); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; z-index: 1100; }
        .mobile-nav-overlay.active { opacity: 1; visibility: visible; }
        .mobile-nav-links { list-style: none; text-align: center; }
        .mobile-nav-links li { margin-bottom: 2rem; opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
        .mobile-nav-overlay.active .mobile-nav-links li { opacity: 1; transform: translateY(0); }
        .mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.2s; }
        .mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.3s; }
        .mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.4s; }
        .mobile-nav-links a { color: var(--bg-white); text-decoration: none; font-size: 2rem; font-weight: 600; }
        .mobile-menu-close-btn {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2.5rem;
            color: var(--bg-white);
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1101;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .mobile-menu-close-btn:hover {
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        /* --- HERO & SEARCH --- */
        .hero-section { height: 95vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: white; overflow: hidden; }
        .hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('/images/pltkbk_d.webp?auto=format&fit=crop&q=80'); background-size: cover; background-position: center; animation: kenburns 20s ease-in-out infinite alternate; }
        .hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); z-index: 1; }
        .hero-content { position: relative; z-index: 2; animation: fadeIn 1.5s ease-out; padding: 0 1rem; }
        /*.hero-logo { display: block; width: 220px; height: auto; margin: 0 auto 1.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); } */
        .hero-logo {
    display: block;
    width: 260px; /* Mismo tamaño que tu logo original */
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    /* Añade transición para efectos hover opcionales */
    transition: transform 0.3s ease;
}
        .hero-content h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
        .hero-content p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 2.5rem; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
        .hero-search-form { display: flex; flex-wrap: wrap; max-width: 800px; margin: 0 auto; background-color: rgba(255,255,255,0.9); border-radius: 50px; padding: 0.5rem; box-shadow: var(--shadow-lg); gap: 0.5rem; }
        .hero-search-input, .hero-search-select { border: none; background: transparent; font-size: 1.1rem; color: var(--dark-text); outline: none; padding: 0.8rem 1.5rem; }
        .hero-search-input { flex: 2 1 300px; }
        .hero-search-select { flex: 1 1 200px; appearance: none; -webkit-appearance: none; }
        .hero-search-btn { background-color: var(--primary-color); color: white; border: none; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); flex-shrink: 0; }
        .hero-search-btn:hover { background-color: var(--primary-hover); }

        /* --- HERO SMALL PARA INTERNAS --- */
        .hero-sm-section { height: 10vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: white; overflow: hidden; }
        .hero-sm-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('/images/pltkbk_d.webp?auto=format&fit=crop&q=80'); background-size: cover; background-position: center; animation: kenburns 20s ease-in-out infinite alternate; }
        .hero-sm-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); z-index: 1; }
        .hero-sm-content { position: relative; z-index: 2; animation: fadeIn 1.5s ease-out; padding: 0 1rem; }
        .hero-sm-logo { display: block; width: 220px; height: auto; margin: 0 auto 1.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }
        .hero-sm-content h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1rem; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
        .hero-sm-content p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 2.5rem; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
        

        /* --- SECTIONS & CARDS --- */
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5rem; }
        .section-header p { font-size: 1.1rem; color: var(--light-text); max-width: 600px; margin: 0 auto; }
        .events-section { padding: 6rem 0; }
        .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
      .event-card {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    /* 1. La tarjeta se convierte en un contenedor flex vertical */
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}
        .event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
        .card-image-container { position: relative; overflow: hidden; height: 220px; }
        .card-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .event-card:hover .card-image-container img { transform: scale(1.05); }
        /*.card-badge { position: absolute; top: 1rem; right: 1rem; background-color: var(--primary-color); color: white; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
        */
        .card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    /* 1. Se cambia a RGBA para añadir 30% de opacidad al color de fondo */
    background-color: rgba(255, 255, 255, 0.3); /* #eca540 con 30% de opacidad */
    
    /* 2. La letra también tendrá 30% de opacidad, pero sobre un color base más fuerte para legibilidad */
    color: rgba(19, 1, 1, 0.7); /* Letra blanca con 70% de opacidad */
    
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 400;
    
    /* Opcional (Recomendado): Efecto "cristal" para mejorar la legibilidad */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* Para Safari */
    border: 1px solid rgba(255, 255, 255, 0.1);
}
        .card-content {
    padding: 1.5rem;
    /* 2. El contenido también es un flex container... */
    display: flex;
    flex-direction: column;
    /* 3. ...y le decimos que crezca para ocupar todo el espacio vertical disponible */
    flex-grow: 1;
}
        .card-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.4; }
        .card-details { list-style: none; margin-bottom: 0.5rem; color: var(--light-text); padding-left: 0.5rem;}
        .card-details li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; font-size: 1rem; }
        .card-details i { width: 16px; text-align: center; color: var(--primary-color); }
        .card-footer {
    margin-top: auto; /* Esto empuja el footer hacia abajo */
    text-align: right;
}
        .card-button { background-color: var(--primary-color); color: white; text-decoration: none; padding: 0.6rem 1.2rem; border-radius: 8px; font-weight: 500; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
        .card-button:hover { background-color: var(--primary-hover); box-shadow: var(--shadow-lg); }
        .view-more-container { text-align: center; margin-top: 3rem; }
        .view-more-btn { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); padding: 1rem 3rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: var(--transition); }
        .view-more-btn:hover { background-color: var(--primary-color); color: white; transform: translateY(-3px); }
        .sales-channels-section { padding: 6rem 0; background-color: var(--bg-white); }
        .channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .channel-card { background-color: var(--bg-light); text-align: center; padding: 2.5rem 2rem; border-radius: var(--radius); border: 1px solid var(--border-color); transition: var(--transition); }
        .channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
        .channel-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
        .channel-card h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--dark-text); }
        .channel-card p { color: var(--light-text); }
        .site-footer { background: linear-gradient(to bottom, var(--dark-text), #111111); color: #a0aec0; padding: 4rem 0 2rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
        .footer-column h4 { color: white; margin-bottom: 1.5rem; font-weight: 600; }
        .footer-column ul { list-style: none; } .footer-column li { margin-bottom: 0.75rem; }
        .footer-column a { color: #a0aec0; text-decoration: none; transition: color 0.2s ease; }
        .footer-column a:hover { color: white; }
        .footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #4a5568; text-align: center; font-size: 0.9rem; }

        /* --- ANIMATIONS & MEDIA QUERIES --- */
        @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        
        @media (max-width: 768px) {
            .nav-links { display: none; } .mobile-menu-btn { display: block; }
            .hero-content h1 { font-size: 2.5rem; } .hero-content p { font-size: 1rem; }
            .hero-search-form { background: transparent; box-shadow: none; gap: 1rem; padding: 0; }
            .hero-search-input, .hero-search-select, .hero-search-btn { width: 100%; border-radius: 50px; background-color: rgba(255,255,255,0.9); }
            .hero-search-select { border-left: none; }
            .events-grid { grid-template-columns: repeat(2, 1fr); }
            .channels-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 500px) {
            .events-grid { grid-template-columns: 1fr; }
        }

/* =================================================================
   ESTILOS PARA PANEL DE FILTROS ESTILO HERO (PÁGINA BLANCA)
   ================================================================= */

.filter-page-section {
    padding: 4rem 0;
    /*background-color: var(--bg-white); */
}

.filter-bar-container {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color); /* Fondo naranja */
    border-radius: 50px; /* Esquinas súper redondeadas */
    padding: 0.5rem 0.5rem 0.5rem 1.5rem; /* Padding para los elementos internos */
    box-shadow: var(--shadow-lg);
    gap: 0.5rem;
}

.filter-bar-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.filter-bar-select {
    flex-grow: 1; /* Permite que los selects ocupen el espacio */
    width: 100%;
    
    /* Estilo transparente para que se vea el fondo naranja */
    background: transparent;
    border: none;
    outline: none;
    
    color: white; /* Texto blanco */
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    cursor: pointer;
    
    -webkit-appearance: none;
    appearance: none;

    /* Flecha personalizada blanca */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em 1.5em;
}

/* Estilo para las opciones dentro del select, para que sean legibles */
.filter-bar-select option {
    background-color: var(--bg-white);
    color: var(--dark-text);
}

/* Separador visual entre los selects */
.filter-bar-select + .filter-bar-select {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-bar-btn {
    background-color: white; /* Botón blanco */
    color: var(--primary-color); /* Icono naranja */
    border: none;
    border-radius: 50%; /* Círculo perfecto */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    pointer-events: none; /* El botón es solo decorativo */
}

/* --- Responsive para el nuevo filtro --- */
@media (max-width: 768px) {
    .filter-bar-container {
        flex-direction: column;
        border-radius: var(--radius); /* Esquinas menos redondeadas en móvil */
        padding: 1rem;
    }
    .filter-bar-select {
        width: 100%;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    .filter-bar-select + .filter-bar-select {
        border-left: none; /* Quitar separador en móvil */
    }
    .filter-bar-icon {
        display: none; /* Ocultar icono de filtro en móvil */
    }
    .filter-bar-btn {
        display: none; /* Ocultar botón decorativo en móvil */
    }
}
/* bloque para canales de pago section canales */
.ezy__featured1_bTdrd9Ac {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;

  background: #70358c;
  background: -webkit-linear-gradient(131deg, #b4237a, #70358c);
  background: linear-gradient(131deg, #b4237a, #70358c);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__featured1_bTdrd9Ac {
    padding: 100px 0;
  }
}

.ezy__featured1_bTdrd9Ac-icon {
  width: 74px;
  height: 74px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 50%;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ezy__featured1_bTdrd9Ac-title {
  color: var(--bs-body-color);
}
.ezy__featured1_bTdrd9Ac-content {
  color: var(--bs-body-color);
}

.ezy__featured1_bTdrd9Ac-heading {
  font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  color: var(--bs-body-color);
  align-items: center;
  text-align: center;
}


.ezy__featured1_bTdrd9Ac-sub-heading {
  font-size: 16px;
  line-height: 22px;
  color: var(--bs-body-color);
}






/* TERMINA BLOQUE DE CANALES DE VENTA */

/* SECCION AYUDA */
.ezy__faq4_YCeXL0pu {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-item-bg: #ffffff;
  --ezy-item-shadow: 0px 4px 44px rgba(159, 190, 218, 0.37);

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__faq4_YCeXL0pu {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__faq4_YCeXL0pu,
.ezy__faq4_YCeXL0pu.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__faq4_YCeXL0pu,
.ezy__faq4_YCeXL0pu.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-item-bg: rgb(11, 23, 39);
  --ezy-item-shadow: 0px 4px 44px rgba(0, 0, 0, 0.27);
}

/* Dark Block Style */
.dark .ezy__faq4_YCeXL0pu,
.ezy__faq4_YCeXL0pu.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-item-bg: rgb(30, 39, 53);
  --ezy-item-shadow: 0px 4px 44px rgba(0, 0, 0, 0.261);
}

.ezy__faq4_YCeXL0pu-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__faq4_YCeXL0pu-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.ezy__faq4_YCeXL0pu-sub-heading {
  font-size: 16px;
  line-height: 22px;
  color: var(--bs-body-color);
}

.ezy__faq4_YCeXL0pu-item {
  background-color: transparent;
  border-radius: 10px;
}

.ezy__faq4_YCeXL0pu-item * {
  color: var(--bs-body-color);
}

.ezy__faq4_YCeXL0pu-btn-collapse [class*="fa-"] {
  transition: transform 0.25s ease-in-out;
}

.ezy__faq4_YCeXL0pu-btn-collapse:focus {
  box-shadow: none;
}

.ezy__faq4_YCeXL0pu-btn-collapse.active [class*="fa-"],
.ezy__faq4_YCeXL0pu-btn-collapse[aria-expanded="true"] [class*="fa-"] {
  transform: rotate(-180deg);
}

.ezy__faq4_YCeXL0pu .collapsing,
.ezy__faq4_YCeXL0pu .collapse {
  background-color: var(--ezy-item-bg);
  box-shadow: var(--ezy-item-shadow);
  border-radius: 15px;
}
/* SECCION COMNTACTO */
.ezy__contact9_4M0VnCOj {
	/* Bootstrap variables */
	--bs-body-color: #28303b;
	--bs-body-bg: rgb(255, 255, 255);

	/* Easy Frontend variables */
	--ezy-theme-color: rgb(13, 110, 253);
	--ezy-theme-color-rgb: 13, 110, 253;
	--ezy-form-card-bg: rgb(244, 247, 253);
	--ezy-form-card-shadow: none;
	--ezy-link-bg: rgb(244, 247, 253);
	--ezy-link-hover-shadow: 0 16px 24px 0 rgba(197, 206, 222, .25);

	background-color: var(--bs-body-bg);
	padding: 70px 0;
}

/* Gray Block Style */
.gray .ezy__contact9_4M0VnCOj,
.ezy__contact9_4M0VnCOj.gray {
	/* Bootstrap variables */
	--bs-body-bg: rgb(244, 247, 253);

	/* easy frontend variables */
	--ezy-form-card-bg: #fff;
	--ezy-form-card-shadow: none;
	--ezy-link-bg: #fff;
	--ezy-link-hover-shadow: 0 16px 24px 0 rgba(197, 206, 222, .25);
}

/* Dark Gray Block Style */
.dark-gray .ezy__contact9_4M0VnCOj,
.ezy__contact9_4M0VnCOj.dark-gray {
	/* Bootstrap variables */
	--bs-body-color: #ffffff;
	--bs-body-bg: rgb(30, 39, 53);

	/* Easy Frontend variables */
	--ezy-form-card-bg: rgb(11, 23, 39);
	--ezy-form-card-shadow: none;
	--ezy-link-bg: rgb(11, 23, 39);
	--ezy-link-hover-shadow: 0 16px 24px 0 rgba(40, 40, 40, .25);
}

/* Dark Block Style */
.dark .ezy__contact9_4M0VnCOj,
.ezy__contact9_4M0VnCOj.dark {
	/* Bootstrap variables */
	--bs-body-color: #ffffff;
	--bs-body-bg: rgb(11, 23, 39);

	/* Easy Frontend variables */
	--ezy-form-card-bg: #162231;
	--ezy-form-card-shadow: none;
	--ezy-link-bg: #162231;
	--ezy-link-hover-shadow: 0 16px 24px 0 rgba(44, 44, 44, .25);
}

@media (min-width: 768px) {
	.ezy__contact9_4M0VnCOj {
		padding: 100px 0;
	}
}

.ezy__contact9_4M0VnCOj-title {
	font-weight: bold;
	font-size: 25px;
	line-height: 25px;
	color: var(--bs-body-color);
}

@media (min-width: 768px) {
	.ezy__contact9_4M0VnCOj-title {
		font-size: 40px;
		line-height: 40px;
	}
}

.ezy__contact9_4M0VnCOj-heading {
	font-weight: bold;
	font-size: 25px;
	line-height: 25px;
	color: var(--bs-body-color);
}

@media (min-width: 768px) {
	.ezy__contact9_4M0VnCOj-heading {
		font-size: 45px;
		line-height: 45px;
	}
}

.ezy__contact9_4M0VnCOj-sub-heading {
	font-size: 18px;
	line-height: 25px;
	color: var(--bs-body-color);
}

.ezy__contact9_4M0VnCOj-form-card {
	background-color: var(--ezy-form-card-bg);
	border: none;
	box-shadow: var(--ezy-form-card-shadow);
	border-radius: 15px;
}

.ezy__contact9_4M0VnCOj .form-control {
	min-height: 48px;
	line-height: 40px;
	border-color: transparent;
	background: rgba(163, 190, 241, .14);
	border-radius: 10px;
	color: var(--bs-body-color);
}

.ezy__contact9_4M0VnCOj .form-control:focus {
	border-color: #86b7fe;
	box-shadow: none;
}

.ezy__contact9_4M0VnCOj-btn {
	padding: 12px 30px;
	color: #ffffff;
	background-color: var(--ezy-theme-color);
	border-color: var(--ezy-theme-color);
}

.ezy__contact9_4M0VnCOj-btn:hover {
	background-color: rgba(var(--ezy-theme-color-rgb), .9);
	border-color: rgba(var(--ezy-theme-color-rgb), .9);
	color: #ffffff;
}

.ezy__contact9_4M0VnCOj-link {
	background-color: var(--ezy-link-bg);
	border: none;
	border-radius: 10px;
	width: 100%;
	transition: box-shadow .15s ease-in-out;
}

@media (min-width: 768px) {
	.ezy__contact9_4M0VnCOj-link {
		max-width: 350px;
	}
}

.ezy__contact9_4M0VnCOj-icon,
.ezy__contact9_4M0VnCOj-link .ezy__contact9_4M0VnCOj-link-content {
	color: var(--bs-body-color);
}

.ezy__contact9_4M0VnCOj-link.active,
.ezy__contact9_4M0VnCOj-link:hover {
	box-shadow: var(--ezy-link-hover-shadow);
}

.ezy__contact9_4M0VnCOj-link-content {
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

.btn-plateauno-success {
  background-color: var(--primary-color) !important;
  border-color: rgb(223, 168, 2) !important;
  color: white !important;
}
/* Estilos para la tabla de precios transparente */
.table-transparent {
    --bs-table-bg: transparent; /* Variable de Bootstrap 5 para el fondo de la tabla */
    --bs-table-striped-bg: transparent; /* Fondo para filas alternas, por si acaso */
    --bs-table-accent-bg: transparent; /* Fondo para filas activas/hover, por si acaso */
}

.ezy__epgrid12-item-badge {
  background-color: var(--primary-color);
  color: #fff;
 /*  position: relative;
  top: -40px;
  left: 60%; */
  border-radius:  7px 7px 7px 7px;
}

/* Versión responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .hero-logo {
        width: 180px; /* Tamaño ligeramente menor en móviles */
    }
}

.flip-scale-2-ver-left {
	-webkit-animation: flip-scale-2-ver-left 0.5s linear backwards;
	        animation: flip-scale-2-ver-left 0.5s linear backwards;
}
/**
 * ----------------------------------------
 * animation flip-scale-2-ver-left
 * ----------------------------------------
 */
@-webkit-keyframes flip-scale-2-ver-left {
  0% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
            transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
  50% {
    -webkit-transform: translateX(-50%) rotateY(90deg) scale(2);
            transform: translateX(-50%) rotateY(90deg) scale(2);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  100% {
    -webkit-transform: translateX(-100%) rotateY(180deg) scale(1);
            transform: translateX(-100%) rotateY(180deg) scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@keyframes flip-scale-2-ver-left {
  0% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
            transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
  50% {
    -webkit-transform: translateX(-50%) rotateY(90deg) scale(2);
            transform: translateX(-50%) rotateY(90deg) scale(2);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  100% {
    -webkit-transform: translateX(-100%) rotateY(180deg) scale(1);
            transform: translateX(-100%) rotateY(180deg) scale(1);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
