:root {
    --color-black: #000;
    --color-dark: #212529;
    --color-orange: #ffb547;
    --color-light-orange: #ffecd0;
    --color-white: #fff;
    --color-accent: #fcdcac;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html, body {
    background-color: var(--color-dark);
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
}

@font-face {
    font-family: 'Monument Extended';
    src: url('fonts/MonumentExtended-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Monument Extended';
    src: url('fonts/MonumentExtended-Ultrabold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.main-content {
    padding: 0;
    margin-bottom: 0;
    color: var(--color-black);
    background: linear-gradient(to bottom, var(--color-dark), var(--color-black));
}

.dropdown-menu {
    background-color: var(--color-black);
    border: 1px solid rgba(255, 181, 71, 0.16);
    border-radius: var(--border-radius);
    padding: 10px;
    min-width: 250px;
}

.dropdown-item {
    color: var(--color-white) !important;
    padding: 20px;
    font-size: 1rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--color-orange) !important;
    color: var(--color-black) !important;
}

@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100%;
        border-radius: 0;
        border: none;
    }

    .dropdown-item {
        padding: 12px 20px;
    }
}

section {
    padding-top: 0;
    margin-top: 0;
}

.bg-black {
    background-color: var(--color-black);
}

.text-orange {
    font-family: 'Monument Extended', sans-serif;
    color: var(--color-orange);
}

.text-subtitulo {
    font-size: 1.2rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--color-accent);
    margin: 1rem 0 2rem;
    text-align: left;
}

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

.rounded {
    border-radius: var(--border-radius);
}

.line {
    height: 10px;
    background-color: var(--color-orange);
    width: 99vw;
    margin: 0;
    position: absolute;
    left: 0;
}

.lead {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 1rem 0 2rem;
}

.card-button .btn {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--color-orange);
    border: none;
    border-radius: var(--border-radius);
    color: var(--color-black);
    padding: 30px 20px;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}

.card-button .btn:hover {
    background-color: var(--color-black);
    color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.custom-card {
    border: 2px solid #ffb547; /* Borde naranja */
    background-color: transparent; /* Fondo transparente */
    border-radius: 8px; /* Bordes redondeados */
    padding: 20px; /* Espaciado interno */
    color: #fff; /* Texto blanco */
    transition: all 0.3s ease; /* Transición suave */
}

.custom-card:hover {
    background-color: rgba(255, 181, 71, 0.1); /* Fondo ligeramente naranja al hacer hover */
}

.custom-card-title {
    color: #ffb547; /* Título en color naranja */
    font-size: 1.2rem; /* Tamaño del título */
    font-weight: bold; /* Negrita */
    margin-bottom: 15px; /* Espacio inferior */
}

.custom-card-list {
    list-style-type: none; /* Elimina los puntos de la lista */
    padding-left: 0; /* Elimina el padding izquierdo */
}

.custom-card-list li {
    font-size: 1rem; /* Tamaño del texto */
    margin-bottom: 10px; /* Espacio entre elementos de la lista */
    position: relative; /* Para agregar un ícono o decoración */
    padding-left: 20px; /* Espacio para el ícono */
}

.custom-card-list li::before {
    content: "+"; /* Agrega un símbolo "+" antes de cada elemento */
    position: absolute;
    left: 0;
    color: #ffb547; /* Color naranja para el símbolo "+" */
}
.custom-bullet {
    list-style: none; /* Eliminar bullets predeterminados */
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye uniformemente los elementos */
    height: 100%; /* Asegura que la lista ocupe toda la altura disponible */
}

.custom-bullet li {
    position: relative;
    padding-left: 30px; /* Espacio para la imagen del bullet */
    margin-bottom: 20px; /* Espacio entre elementos */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente el contenido */
    min-height: 100px; /* Ajusta la altura mínima de cada ítem */
    background-color: rgba(255, 181, 71, 0.1); /* Fondo naranja claro */
    border: 1px solid rgba(255, 181, 71, 0.2); /* Borde naranja claro */
    border-radius: 8px; /* Bordes redondeados */
    padding: 15px; /* Espaciado interno */
    transition: all 0.3s ease; /* Transición suave */
}

.custom-bullet li:hover {
    background-color: rgba(255, 181, 71, 0.2); /* Fondo más naranja al hacer hover */
    border-color: #ffb547; /* Borde naranja más intenso */
    transform: translateY(-3px); /* Efecto de elevación */
    box-shadow: 0 4px 10px rgba(255, 181, 71, 0.2); /* Sombra naranja */
}

.custom-bullet li::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px; /* Tamaño de la imagen */
    height: 20px;
    position: absolute;
    left: 15px; /* Ajuste de posición */
    top: 15px; /* Ajuste de posición */
}

.custom-bullet h4 {
    color: #ffb547; /* Título en color naranja */
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.25rem; /* Tamaño del título */
    font-weight: bold;
    margin-bottom: 10px; /* Espacio inferior */
}

.custom-bullet p {
    color: #fff; /* Texto blanco */
    font-size: 1rem; /* Tamaño del texto */
    line-height: 1.5; /* Espaciado entre líneas */
    margin: 0; /* Elimina el margen predeterminado */
}

.table {
    width: 100%;
    margin: 0 auto 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: var(--color-orange);
    color: var(--color-black);
    font-family: 'Monument Extended', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    padding: 14px;
}

.table tbody td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
    color: var(--color-black);
}

.table tbody tr:nth-child(odd) {
    background-color: rgba(255, 181, 71, 0.1);
}

.table tbody tr:hover {
    background-color: rgba(255, 181, 71, 0.637);
}

.textos {
    font-size: 0.975rem;
    color: var(--color-orange);
    margin-top: 2rem;
}

.conclusiones {
    font-size: 1.2rem;
    color: var(--color-light-orange);
    margin: 5rem 0;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-body {
    text-align: center;
    color: var(--color-white);
}

.cssload-speeding-wheel {
    border: 3px solid var(--color-white);
    border-radius: 50%;
    border-top: 3px solid var(--color-orange);
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand .logo {
    height: 50px;
}

.footer {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
}

.icon {
    font-size: 1.5rem;
    color: var(--color-white);
    transition: var(--transition);
    text-decoration: none;
}

.icon:hover {
    color: var(--color-orange);
}


#boton-whatsapp {
    position: fixed;
    bottom: 99px;
    right: 40px;
    background-color: #ffffff57; /* Fondo blanco */
    padding: 10px;
    border-radius: 50%;
    aspect-ratio: 1; /* Agrega esta propiedad */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  
  }
  
  #boton-whatsapp i {
    color: #333; /* Icono gris */
    font-size: 24px;
  }
  
  #boton-whatsapp:hover {
    background-color: #25D366; /* Fondo verde de WhatsApp */
  }
  
  #boton-whatsapp:hover i {
    color: #fff; /* Icono blanco */
  }