:root {
    --novaride-blue: #1a3e72;
    --novaride-light-blue: #4a7bc8;
    --primero: #FF3600;
    --fondo: #000000;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./font/DM_Sans-600.woff2') format('woff2');
    font-weight: 600; /* porque es 600 */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('./font/Epilogue-700.woff2') format('woff2');
    font-weight: 600; /* porque es 600 */
    font-style: normal;
    font-display: swap;
}

body{
    background-color: var(--fondo);
}

/* =====================================================================
============================ TITULO GENERAL ============================
======================================================================== */
.section-title {
    position: relative;
    z-index: 10;
    margin-bottom: 0px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--primero);
    padding-left: 25px;
    margin-bottom: 15px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url("../image/icon-sub-heading.svg") no-repeat;
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
    background-position: left center;
    background-size: cover;
    width: 18px;
    height: 18px;
}



/* ====================================================================
=========================== BOTON GENERAL ============================= 
======================================================================= */
.btn-default {    
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--primero);
    color: white;
    border-radius: 100px;
    padding: 16px 25px;
    margin-right: 48px;
    border: none;
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-default.btn-highlighted {
  background-color: white;
  color: var(--fondo);
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primero);
    background-image: url('../image/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transform: translate(48px, 0px);
    transition: all 0.4s ease-in-out;
}

.section-icon-btn {
    background-color: var(--primero);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon-btn img {
    transition: transform 0.4s ease; /* transición suave */
}

.section-icon-btn:hover img {
    transform: rotate(45deg);
}

.btn-default:hover::before {
    background-size: 14px auto;
    transform: translate(48px, 0px) rotate(45deg);
}

.btn-default.btn-highlighted::before {
    background-color: white;
    background-image: url('../image/arrow-black.svg');    
}

.btn-default:hover {    
    background: var(--primero);    
    color: white;
}

.btn-default i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-default:hover i {
    transform: translate(4px, -4px); /* derecha + arriba */
}


/* ============================================================ 
========================== CSS ACORDION =======================
=============================================================== */
/* Fondo de cada item del accordion */
.accordion-item {
    background-color: var(--fondo) !important;
    border: none;
}

/* Botón del accordion (el título) */
.accordion-button {
    background-color: var(--fondo) !important;
    color: white !important;
    box-shadow: none;

    
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;        
    padding: 5px 30px 5px 60px;
    
    margin-bottom: 20px;
}

/* Quitar borde y estilo al estar activo */
.accordion-button:not(.collapsed) {
    background-color: var(--fondo) !important;
    color: white !important;
    box-shadow: none !important;
}

/* Cambiar color del icono del accordion */
.accordion-button::after {
    filter: invert(1); /* pone la flecha blanca */
}

/* Fondo interno cuando se abre */
.accordion-collapse {
    background-color: var(--fondo) !important;
    color: white !important;
}

/* Asegurar color blanco en encabezado */
.accordion-header button {
    color: white !important;
}

.icon-box {
    padding: 5px 0px 0px 5px;
    position: absolute;
    left: 0;
    top: 4px;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 10%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
}