* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav ul li a.active {
    color: #E12826 !important;
    background-color: transparent !important;
    border: none !important;
}

body {
    font-family: "Epilogue", sans-serif !important;
}

h3 {
    font-family: "Epilogue", sans-serif;
    font-size: 24px !important;
    color: #E2211C;
    display: flex;
    align-items: center;
    gap: 1%;
    margin-bottom: 3% !important;
    font-weight: 600 !important;
}

.description-row {
    background-color: #f8f9fa !important;
}

.description-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Estilos para el botón de expandir */
.toggle-description {
    transition: all 0.2s ease;
}

.toggle-description:hover {
    background-color: #e9ecef !important;
}

/* Asegurar que las filas de descripción no tengan hover */
.description-row:hover {
    background-color: #f8f9fa !important;
}

@media only screen and (max-width: 1100px) {
    h3 {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 1000px) {
    h3 {
        font-size: 18px !important;
    }
}

@media only screen and (max-width: 900px) {
    h3 {
        font-size: 16px !important;
    }

    h3 svg {
        width: 8px !important;
        height: 8px !important;
    }
}

@media only screen and (max-width: 800px) {
    h3 {
        font-size: 15px !important;
    }

    h3 svg {
        width: 6px !important;
        height: 6px !important;
    }
}

@media only screen and (max-width: 600px) {
    h3 {
        font-size: 12px !important;
    }
}

/* BOTÓN WHATSAPP */

.btn-wsp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2000;
    width: 85px;
    height: 85px;
    line-height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #00bb2d;
    border-radius: 50px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
}

.btn-wsp:hover {
    background-color: #009423;
}

@media only screen and (max-width: 1400px) {
    .btn-wsp {
        width: 75px;
        height: 75px;
    }

    .btn-wsp svg {
        width: 40px !important;
        height: 40px !important;
    }
}

@media only screen and (max-width: 1300px) {
    .btn-wsp {
        width: 65px;
        height: 65px;
    }

    .btn-wsp svg {
        width: 35px !important;
        height: 35px !important;
    }
}

@media only screen and (max-width: 1000px) {
    .btn-wsp {
        width: 55px;
        height: 55px;
    }

    .btn-wsp svg {
        width: 30px !important;
        height: 30px !important;
    }
}

@media only screen and (max-width: 900px) {
    .btn-wsp {
        width: 40px;
        height: 40px;
    }

    .btn-wsp svg {
        width: 25px !important;
        height: 25px !important;
    }
}

@media only screen and (max-width: 600px) {
    .btn-wsp {
        width: 38px;
        height: 38px;
        right: 25px;
        bottom: 25px;
    }

    .btn-wsp svg {
        width: 22px !important;
        height: 22px !important;
    }
}

.container {
    max-width: 1500px !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media only screen and (max-width: 1600px) {
    .container {
        max-width: 1300px !important;
    }
}

@media only screen and (max-width: 1400px) {
    .container {
        max-width: 1100px !important;
    }
}

@media only screen and (max-width: 1200px) {
    .container {
        max-width: 900px !important;
    }
}

@media only screen and (max-width: 1000px) {
    .container {
        max-width: 90% !important;
    }
}

/* HEADER */

header {
    padding: 2% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 3px 10px 0px rgba(112, 112, 112, 0.75);
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-menu {
    display: none;
}

header .logo-tambor>figure {
    width: 220px;
    display: flex;
    margin: 0;
}

header .logo-tambor>figure img {
    width: 100%;
}

header nav.portal-menu {
    width: 40%;
}

header nav.portal-menu ul {
    padding: 0;
    display: flex;
    margin: 0;
}

header nav.portal-menu ul li {
    list-style: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav.portal-menu ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #231F20;
    font-size: 18px;
    font-weight: 500;
    gap: 5px;
}

header nav.portal-menu ul li a:hover {
    color: #E12826;
}

header nav.portal-menu ul li a svg {
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
}

header nav.portal-menu ul li a:hover svg path {
    fill: #E12826;
}

header .usuario {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

header .usuario .usuario-nombre {
    text-align: right;
    color: #7E8492;
    text-transform: capitalize;
}

header .usuario .usuario-nombre p {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

header .usuario .usuario-nombre span {
    font-weight: 400;
    font-size: 14px;
}

header .usuario .usuario-foto {
    height: 50px;
    margin: 0;
}

header .usuario .usuario-foto img {
    width: 51px;
    height: 50px;
    border-radius: 70px;
}

/* Dropdown menu del usuario */
.usuario-dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    bottom: auto !important;
    margin-top: 8px;
    background-color: #FFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    max-width: 250px;
    width: auto;
    z-index: 1000;
    padding: 8px 0;
}

.usuario-dropdown-menu[style*="display: block"],
.usuario-dropdown-menu.show {
    display: block !important;
}

.usuario-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #231F20;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.usuario-dropdown-item:hover {
    background-color: #F3F1F1;
    color: #E12826;
}

.usuario-dropdown-item svg {
    flex-shrink: 0;
}

header .header-logo-menu {
    display: none;
}

/* RESPONSIVE HEADER */

@media only screen and (max-width: 1400px) {

    header .logo-tambor>figure {
        width: 160px;
    }

    header nav.portal-menu {
        width: 50%;
    }

    header nav ul li a {
        font-size: 16px !important;
    }

    header .usuario {
        gap: 15px;
    }

    header .usuario .usuario-nombre p {
        font-size: 16px;
    }

    header .usuario .usuario-foto {
        height: 40px;
    }

    header .usuario .usuario-foto img {
        width: auto;
        height: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    header nav.portal-menu {
        width: 45%;
    }
}

@media only screen and (max-width: 800px) {

    header nav.portal-menu,
    header .usuario {
        display: none;
    }

    header .header-logo-menu {
        display: flex;
        margin: 0;
    }
}

/* MENU RESPONSIVE */

.menu-responsive {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu-responsive-top {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    padding: 20px 5%;
    background-color: #000;
}

.menu-responsive .logo-cerrar svg {
    width: 25px;
    height: 25px;
}

.menu-responsive.menu-abierto {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-cerrar {
    position: absolute;
    left: 5%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-cerrar:hover {
    transform: scale(1.1);
}

.menu-responsive-top .logo-tambor figure {
    margin: 0px;
    width: 160px;
}

.menu-responsive-top .logo-tambor figure img {
    width: 100%;
}

.header-logo-menu {
    cursor: pointer;
}

.menu-responsive .nav-responsive ul {
    margin: 0;
    padding: 0 5%;
}

.menu-responsive .nav-responsive ul li {
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid #ECECEC;
}

.menu-responsive .nav-responsive ul li.usuario {
    height: 90px;
    display: flex;
    align-items: center;
}

.menu-responsive .nav-responsive ul li a {
    text-decoration: none;
    width: 100%;
    color: #0B090A;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.menu-responsive .nav-responsive ul li a:hover {
    color: #E12826;
}

.menu-responsive .nav-responsive ul li a p {
    margin: 0;
}

.menu-responsive .nav-responsive ul li a button {
    border: 1px solid black;
    border-radius: 50%;
    background-color: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-responsive .nav-responsive ul li a button svg {
    width: 18px;
    height: 18px;
    rotate: 45deg;
}

.menu-responsive .nav-responsive ul li.usuario a .usuario-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-responsive .nav-responsive ul li.usuario a .usuario-container figure {
    width: 35px;
    height: 35px;
    margin: 0;
}

.menu-responsive .nav-responsive ul li.usuario a .usuario-container figure img {
    width: 100%;
    border-radius: 50px;
}

.menu-responsive .nav-responsive ul li.usuario a button {
    border: none;
}

/* AGENDA CITA */

.agenda-cita {
    display: flex;
    background-color: #F3F1F1;
}

.agenda-cita-filtros {
    background-color: #E12826;
    width: 323px !important;
}

.agenda-cita-filtros ul {
    padding: 0;
}

.agenda-cita-filtros ul li {
    background-color: #E12826;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #DB7473;
    height: 70px;
    padding-bottom: 18px;
    cursor: pointer;
}

.agenda-cita-filtros ul li a {
    text-decoration: none;
}

.agenda-cita-filtros ul li.agenda-cita-inicio {
    padding: 80px 0 24px 0;
    height: auto;
    background-color: #A41419;
}

.agenda-cita-filtros ul li .agenda-cita-menu-titulo {
    display: flex;
    align-items: center;
}

.agenda-cita-filtros ul li h5 {
    font-family: "Epilogue", sans-serif;
    margin: 0;
    width: 190px;
    font-size: 20px;
    color: #FFF;
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    gap: 10px;
}

.agenda-cita-filtros ul li .agenda-cita-menu-titulo h5>svg {
    width: 18px;
    height: 18px;
}

.agenda-cita-filtros ul li .agenda-cita-menu-titulo>svg {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
    cursor: pointer;
}

.agenda-cita-filtros .agenda-cita-checkbox-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #E12826;
    border-radius: 0;
}

.agenda-cita-filtros .agenda-cita-checkbox-container>div {
    display: flex;
    width: 96%;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #DB7473;
    color: #FFF;
    font-weight: 600;
    padding: 10px;
}

.agenda-cita-filtros .agenda-cita-checkbox-container>div input {
    background-color: transparent !important;
    border-radius: 5px;
}

.agenda-cita-filtros .agenda-cita-checkbox-container>div input:checked {
    background-color: #FFF !important;
    border-radius: 5px;
}

.agenda-cita-filtros .agenda-cita-checkbox-container>div label {
    width: 145px;
    font-size: 18px;
}

/* AGENDA CITA CONTENIDO INICIO*/

.agenda-cita-contenido-inicio {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta svg {
    background-color: #E12826;
    width: 35px;
    height: 35px;
    padding: 3px;
    border-radius: 40px;
}

.agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta p {
    margin: 0;
}

.agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta {
    background-color: #231F20;
    color: #FFF;
    border-radius: 12px;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta a {
    color: #FFF;
    text-decoration: none;
}

/* CARDS */

.agenda-cita-fecha,
.agenda-cita-historial, .agenda-cita-vehiculo {
    height: auto;
    border-radius: 12px;
    background-color: #FFF;
    padding: 30px;
}

.agenda-cita-fecha h4,
.agenda-cita-historial h4, .agenda-cita-vehiculo h4 {
    color: #E12826;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin: 0;
}

.agenda-cita-fecha h4 svg,
.agenda-cita-historial h4 svg, .agenda-cita-vehiculo h4 svg {
    width: 18px;
    height: 18px;
}

.card-titulo {
    border-bottom: 1px solid #7E8492;
    padding: 0 15px 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agenda-cita-historial .card-titulo>svg, .agenda-cita-vehiculo .card-titulo>svg {
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
    cursor: pointer;
}

.agenda-cita-vehiculo .card-titulo>svg {
    transform: rotate(0deg);
}

.agenda-cita-fecha .form-container-agenda-cita .form-agenda-cita h2,
.agenda-cita-fecha .form-agenda-cita h3 {
    color: #231F20;
    font-size: 18px !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
}

.agenda-cita-fecha .form-container-agenda-cita form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.agenda-cita-fecha .form-container-agenda-cita form>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: auto !important;
    gap: 10px;
    width: 50%;
}

.agenda-cita-fecha .form-container-agenda-cita form>div .form-group {
    flex-direction: column;
    width: 100%;
}

#paquetes_table_container .table-container {
    scrollbar-width: thin;
    width: 100% !important;
}

#paquetes_table_container .table-footer {
    width: 100% !important;
}

#paquetes_table_container .table-footer .row.no-gutters {
    font-size: 18px;
}

.form-control-plaintext {
    font-size: 18px;
}

.agenda-cita-fecha .form-container-agenda-cita form>div label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #231F20;
    display: flex;
    gap: 2px;
}

.agenda-cita-fecha .form-container-agenda-cita form>div label span {
    color: #E12826;
    font-size: 16px;
}

.agenda-cita-fecha .form-container-agenda-cita form>.customer-title .form-control-plaintext {
    font-size: 16px;
}

.agenda-cita-fecha .form-container-agenda-cita form>div select {
    height: 45px;
    width: 100%;
    padding: 5px 12px;
    border: 1px solid #C6C6C6;
    background: transparent;
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.agenda-cita-fecha .form-container-agenda-cita form>.customer-title {
    gap: 5px;
}

.agenda-cita-fecha .form-container-agenda-cita form #tambor_pmp_container select {
    border-radius: 5px;
    height: auto;
    width: 100%;
}

.agenda-cita-fecha .form-container-agenda-cita form #por_contrato_container {
    flex-direction: row;
    gap: 5px;
}

#paquetes_table thead th {
    font-size: 18px;
}

#paquetes_table tbody td {
    font-size: 16px;
    text-transform: capitalize;
}

.create-quote-btn {
    align-items: center !important;
    width: 100% !important;
}

.create-quote-btn button {
    font-family: "Epilogue", sans-serif !important;
    height: auto;
    width: 350px;
    font-size: 16px;
    margin-top: 20px;
    color: #FFF;
    border-radius: 30px;
    border: none;
    background-color: #E12826;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 1s cubic-bezier(.165, .84, .44, 1);
}

.create-quote-btn button:hover {
    transform: scale(1.1);
    background-color: #E12826;
    border-color: #E12826;
}

.form-agenda-cita {
    margin-top: 50px;
}

.form-agenda-cita-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-agenda-cita-container .form-group button {
    font-size: 18px;
    font-family: "Epilogue", sans-serif !important;
    color: #FFF;
    border-radius: 50px;
}

/* CARD HISTORIAL DE CITAS */

.agenda-cita-historial .historial-citas {
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: auto !important;
    white-space: nowrap;
    scrollbar-width: thin;
}

.agenda-cita-historial .historial-citas .historial-citas-campos {
    display: flex;
    text-align: center;
    gap: 40px;
}

.agenda-cita-historial .historial-citas .historial-citas-campos p {
    flex: 1;
    font-size: 12px;
    color: #4E575F;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.agenda-cita-historial .historial-citas .historial-citas-campos .campo-descripcion {

    flex: 2;
}

.agenda-cita-historial .historial-citas .historial {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agenda-cita-historial .historial-citas .historial article {
    display: flex;
    padding: 10px 15px;
    align-items: center;
    border: 1px solid #949494;
    border-radius: 50px;
    height: 48px;
    gap: 40px;
}

.agenda-cita-historial .historial-citas .historial article>p {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.agenda-cita-historial .historial-citas .historial article>.historial-descripcion {
    border-right: 2px solid gray;
    border-left: 2px solid gray;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;
    padding: 0 10px;
    font-size: 16px;
}

.agenda-cita-historial .historial-citas .historial article .historial-factura {
    flex: 1;
    display: flex;
}

.agenda-cita-historial .historial-citas .historial article .historial-factura {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.agenda-cita-historial .historial-citas .historial article .historial-factura p {
    text-transform: capitalize;
    margin: 0;
    font-size: 16px;
}

.agenda-cita-historial .historial-citas .historial article .historial-factura svg {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* CARD VEHICULO */

.agenda-cita-vehiculo .cita-vehiculo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 0%;
    overflow: hidden;
    position: relative;
}

.agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelos-container {
    display: flex;
    width: 100%;
    transition: transform 0.3s ease;
}

.agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo {
    display: flex;
    gap: 30px;
    width: 50%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo figure {
    height: 198px;
    width: 208px;
    background-color: #C4C4C4;
    border-radius: 13px;
    margin: 0;
}

.agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo figure img {
    height: 100%;
    width: 100%;
    border-radius: 13px;
}

.agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 0 0;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles div,
.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-ultimo-servicio {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles div span,
.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-ultimo-servicio span {
    color: #E12826;
    font-size: 12px;
    font-weight: 600;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles .numero-placa span {
    color: #A0A1A3;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles div p,
.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-ultimo-servicio p {
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-ultimo-servicio p {
    font-size: 16px;
    font-weight: 600;
    color: #4E575F;
}

.cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles .numero-placa p {
    text-transform: uppercase;
}

/* Estilos para el slider */
.slider-controls {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 10;
}

.slider-btn {
    background-color: rgba(225, 40, 38, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: rgba(225, 40, 38, 1);
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */

@media (max-width: 1000px) {
    .agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info {
        padding: 15px 0 0 0;
        width: 100%;
    }

    .agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo figure {
        height: 180px;
        width: 180px;
    }

    .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
    }

    .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles div {
        flex: 1;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .agenda-cita-vehiculo .cita-vehiculo .cita-vehiculo-modelo figure {
        height: 150px;
        width: 150px;
    }

    .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles {
        flex-direction: column;
        gap: 10px;
    }

    .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles div p,
    .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-ultimo-servicio p {
        font-size: 16px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* CALENDARIO Y LAYOUT */

/* Contenedor superior: Datos del vehículo + Calendario */
.agenda-cita-fecha .form-container-agenda-cita form .top-section-container {
    display: flex !important;
    width: 100% !important;
    gap: 20px;
    margin-bottom: 20px;
}

/* Columna izquierda: Datos del vehículo */
.agenda-cita-fecha .form-container-agenda-cita form .top-section-container > div:first-child {
    width: 50% !important;
    flex: 0 0 50% !important;
}

/* Columna derecha: Calendario */
.agenda-cita-fecha .form-container-agenda-cita form .hours-side {
    width: 50% !important;
    flex: 0 0 50% !important;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.agenda-cita-fecha .form-container-agenda-cita form>.hours-side .calendar-layout {
    max-height: 500px;
    min-height: 400px;
}

/* Contenedor de servicios: 100% ancho */
.agenda-cita-fecha .form-container-agenda-cita form .services-section-container {
    width: 100% !important;
    margin-top: 20px;
}

/* Campos del formulario que NO están en el contenedor superior */
.agenda-cita-fecha .form-container-agenda-cita form>div:not(.hours-side):not(.create-quote-btn):not(.top-section-container):not(.services-section-container) {
    width: 50% !important;
}

.flatpickr-calendar {
    background-color: #FFF !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.flatpickr-current-month {
    font-size: 14px !important;
}

.hours-side .flatpickr-monthDropdown-months {
    height: auto !important;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: inherit !important;
    font-weight: 500 !important;
}

.numInput.cur-year {
    font-weight: 500 !important;
}

.hours-side .flatpickr-time {
    display: none;
}

span.flatpickr-weekday {
    color: #949494 !important;
    font-weight: 500 !important;
}

.flatpickr-day {
    border-radius: 8px !important;
    border: 1px solid #f3f3f3 !important;
    background-color: #f3f3f3 !important;
    color: #000 !important;
}

.flatpickr-day.selected {
    border: 1px solid #E12826 !important;
    background-color: #E12826 !important;
    color: #FFF !important;
}

.flatpickr-disabled {
    border: none !important;
    background-color: transparent !important;
    color: #949494 !important;
}

.flatpickr-day.nextMonthDay {
    background: transparent !important;
    border: none !important;
    color: #949494 !important;
}

.dayContainer {
    gap: 5px;
}

#hour-btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

#hour-btn-container>button {
    width: 46%;
    border: 1px solid #C6C6C6;
    background-color: transparent;
    border-radius: 25px;
    font-size: 0.85em;
    margin: 0;
}

#hour-btn-container>button:hover {
    border: 1px solid #E12826;
    background-color: #E12826;
    color: #FFF;
}

@media only screen and (max-width: 1200px) {
    .agenda-cita-fecha .form-container-agenda-cita form>.hours-side {
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 1000px) {

    .agenda-cita-fecha .form-container-agenda-cita form>div,
    .agenda-cita-fecha .form-container-agenda-cita form>.hours-side {
        width: 100% !important;
        flex: 1;
    }

    .agenda-cita-fecha .form-container-agenda-cita form>.hours-side {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }

    .agenda-cita-fecha .form-container-agenda-cita form {
        gap: 50px;
    }

    #paquetes_table_container .table-container,
    #paquetes_table_container .table-footer {
        width: 100% !important;
    }
}

@media only screen and (max-width: 800px) {

    .agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta {
        height: 70px;
        font-size: 16px;
    }

    .agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta svg {
        width: 30px;
        height: 30px;
    }

    .agenda-cita-fecha .form-container-agenda-cita form>div,
    .agenda-cita-fecha .form-container-agenda-cita form>.hours-side {
        width: 100% !important;
        flex: auto;
    }

    .agenda-cita-fecha h4, .agenda-cita-historial h4, .agenda-cita-vehiculo h4 {
        font-size: 18px;
        gap: 5px;
    }

    .agenda-cita-fecha h4 svg, .agenda-cita-historial h4 svg, .agenda-cita-vehiculo h4 svg,
    .agenda-cita-historial .card-titulo>svg, .agenda-cita-vehiculo .card-titulo>svg,
    .agenda-cita-historial .historial-citas .historial article .historial-factura svg {
        width: 16px;
        height: 16px;
    }



    .agenda-cita-fecha .form-container-agenda-cita .form-agenda-cita h2, .agenda-cita-fecha .form-agenda-cita h3 {
        font-size: 16px !important;
    }

    .form-control-plaintext {
        font-size: 16px;
    }

    .form-agenda-cita-container .form-group button {
        font-size: 16px;
    }

    .agenda-cita-historial .historial-citas .historial article {
        border: none;
    }
}

@media only screen and (max-width: 600px) {
    .agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta {
        padding: 0 20px;
        font-size: 14px;
        height: 60px;
    }

    .agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta svg {
        width: 25px;
        height: 25px;
    }

    .agenda-cita-fecha .form-container-agenda-cita form>div {
        gap: 15px;
    }

    .card-titulo {
        padding: 0 0 10px 0;
    }

    .agenda-cita-fecha h4, .agenda-cita-historial h4, .agenda-cita-vehiculo h4, .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-modelo-detalles div p,
    .cita-vehiculo .cita-vehiculo-modelo .vehiculo-info .vehiculo-ultimo-servicio p {
        font-size: 16px;
        letter-spacing: 0;
    }

    #hour-btn-container>button {
        font-size: 14px;
    }

    .create-quote-btn button {
        width: 250px;
        margin: 0;
    }

    .calendar-disabled, .flatpickr-wrapper {
        width: 100%;
    }

    .agenda-cita-historial .historial-citas .historial {
        gap: 10px;
    }

    .agenda-cita-historial .historial-citas .historial-citas-campos {
        display: none;
    }

    #paquetes_table thead th,
    #paquetes_table_container .table-footer .row.no-gutters {
        font-size: 16px;
    }
}

@media only screen and (max-width: 500px) {
    .agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta svg {
        padding: 2px;
        width: 22px;
        height: 22px;
    }

    .agenda-cita-contenido-inicio>.agenda-cita-inicio-alerta {
        font-size: 12px;
    }

    .create-quote-btn button {
        font-size: 14px;
    }

    .date-display-container {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {

    .create-quote-btn button,
    .form-agenda-cita-container .form-group,
    .form-agenda-cita-container .form-group button {
        width: 100%;
    }
}

/* FOOTER */

footer {
    padding: 5% 15%;
    background-color: #231F20;
    color: #FFF;
    display: flex;
    justify-content: space-between;
}

.footer-responsive {
    display: none;
}

.logo-footer {
    display: none;
}

footer .atencion-cliente {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .atencion-cliente .atencion-cliente-titulo {
    font-family: "Epilogue", sans-serif;
    font-size: 20px;
    line-height: 26px;

}

footer .atencion-cliente .atencion-cliente-titulo a {
    color: #FFF;
    text-decoration: underline;
}

footer .atencion-cliente>div {
    font-family: "Epilogue", sans-serif;
    color: #FFF;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .atencion-cliente .atencion-cliente-btn {
    display: flex;
    font-family: "Epilogue", sans-serif;
    width: 310px;
    height: 56px;
    background-color: #FFF;
    color: #E12826;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 2%;
    border-radius: 35px;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

footer .atencion-cliente .atencion-cliente-btn:hover {
    background-color: rgba(256, 256, 256, .2);
}

footer .atencion-cliente .atencion-cliente-btn div {
    background-color: #E12826;
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
}

footer .atencion-cliente .atencion-cliente-btn:hover div {
    background-color: transparent;
    color: #E12826;
}

footer .atencion-cliente .copy {
    font-family: "Epilogue", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

footer>nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

footer>nav ul li a {
    font-family: "Epilogue", sans-serif;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
}

footer>nav ul li a:hover {
    color: #E12826;
    text-decoration: none;
    transition: .4s;
}

footer>nav ul li.politicas-privacidad a {
    font-size: 14px;
    color: #737272;
}

footer>nav ul li.politicas-privacidad a span {
    color: #FFF;
}

footer>nav>.copy2 {
    display: none;
}

footer .horarios {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #737272;
    text-transform: uppercase;
    font-size: 14px;
}

footer .horarios .horario {
    font-family: "Epilogue", sans-serif;
    line-height: 20px;
}

footer .horarios>a {
    font-family: "Epilogue", sans-serif;
    color: #737272;
    text-decoration: none;
}

footer .horarios .redes {
    display: flex;
    gap: 5%;
}

footer .horarios .redes a {
    width: 32px;
    height: 32px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    padding: 1%;
}

/* RESPONSIVE FOOTER */

@media only screen and (max-width: 1600px) {
    footer {
        padding: 5% 10%;
    }
}

@media only screen and (max-width: 1400px) {
    footer>nav ul li a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1300px) {
    footer .atencion-cliente .atencion-cliente-titulo {
        font-size: 20px !important;
        line-height: 25px;
    }
}

@media only screen and (max-width: 1100px) {
    footer .atencion-cliente .atencion-cliente-btn {
        height: 45px;
    }

    footer .atencion-cliente .atencion-cliente-titulo {
        font-size: 16px !important;
        line-height: 22px;
    }

    footer .atencion-cliente .copy {
        font-size: 12px;
    }

    footer>nav ul {
        gap: 15px;
        padding: 0;
    }

    footer .horarios .horario {
        font-size: 12px;
        line-height: 18px;
    }

    footer .horarios>a {
        font-size: 12px;
    }

    footer .horarios .redes a {
        width: 28px;
        height: 28px;
    }

    footer .horarios .redes a svg {
        width: 14px !important;
        height: 14px !important;
    }
}

@media only screen and (max-width: 1000px) {

    footer {
        padding: 5% 8%;
    }

    footer .atencion-cliente .atencion-cliente-btn {
        height: 40px;
        font-size: 12px;
        width: 260px;
    }

    footer .atencion-cliente .atencion-cliente-btn div {
        width: 18px;
        height: 18px;
        font-size: 20px;
    }

    footer .atencion-cliente .atencion-cliente-titulo {
        font-size: 14px !important;
        line-height: 20px;
    }

    footer>nav ul {
        gap: 12px;
        margin: 0;
    }

    footer>nav ul li a {
        font-size: 12px;
    }

    footer .horarios .horario {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 800px) {
    footer {
        display: none;
    }

    .footer-responsive {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .footer-responsive .footer-logo {
        background-color: #FFF;
        border-radius: 8px;
        width: 207px;
        height: 50px;
    }

    .footer-responsive .footer-logo figure {
        margin: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-responsive .footer-logo figure img {
        width: 80%;
    }

    .footer-responsive .atencion-cliente-titulo {
        width: 100%;
        font-size: 14px;
    }

    .footer-responsive .atencion-cliente-titulo a {
        color: #FFF;
        text-decoration: underline;
    }

    .footer-responsive .navegador {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: start;
    }

    .footer-responsive .navegador nav, .footer-responsive .navegador .horarios {
        width: 48%;
    }

    .footer-responsive .navegador nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-responsive .navegador nav ul li a {
        color: #FFF;
        font-size: 14px;
    }

    .footer-responsive .navegador .horarios {
        margin-top: 1%;
    }

    .footer-responsive .copy {
        font-size: 12px;
        margin: 0;
        text-transform: uppercase;
        margin-top: 4%;
    }
}

@media only screen and (max-width: 600px) {
    .footer-responsive .footer-logo {
        width: 190px;
        height: 40px;
    }

    .footer-responsive .footer-logo figure img {
        width: 75%;
    }

    .footer-responsive .atencion-cliente-titulo {
        font-size: 12px;
    }

    .footer-responsive .navegador {
        justify-content: space-between;
    }

    .footer-responsive .navegador nav ul li a {
        font-size: 12px;
    }

    .footer-responsive .navegador .horarios {
        margin-top: 1.5%;
    }

    footer .horarios .redes a {
        width: 25px;
        height: 25px;
    }

    .footer-responsive .copy {
        font-size: 10px;
        margin-top: 3%;
    }
}

@media only screen and (max-width: 500px) {
    footer {
        padding: 6% 10%;
    }

    .footer-responsive .navegador nav {
        width: 40%;
    }
}

@media only screen and (max-width: 400px) {

    .footer-responsive {
        gap: 30px;
    }

    .footer-responsive .footer-logo {
        width: 160px;
        height: 35px;
    }

    .footer-responsive .footer-logo figure img {
        width: 70%;
    }

    .footer-responsive .navegador {
        flex-direction: column-reverse;
        gap: 20px;
    }

    footer .horarios {
        gap: 20px;
        margin: 0;
    }
}

/* ========================================
   ESTILOS PARA CALENDARIO Y BOTONES DESHABILITADOS
   ======================================== */

/* Contenedor del calendario deshabilitado */
.calendar-disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    filter: grayscale(50%);
}

/* Overlay para el calendario deshabilitado */
.calendar-disabled-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
}

/* Mensaje cuando el calendario está deshabilitado */
.calendar-disabled-message {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #E12826;
    max-width: 300px;
}

.calendar-disabled-message i {
    font-size: 24px;
    color: #E12826;
    margin-bottom: 10px;
}

.calendar-disabled-message p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Botones de hora deshabilitados */
.hour-buttons-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.hour-btn:disabled {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
    cursor: not-allowed !important;
    opacity: 0.65;
}

.hour-btn:disabled:hover {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}

/* Estado habilitado del calendario */
.calendar-enabled {
    pointer-events: auto;
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
}

/* Botones de hora habilitados */
.hour-buttons-enabled {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.hour-btn:not(:disabled) {
    background-color: #fff;
    color: #E12826;
    border: 2px solid #E12826;
    padding: 6px 12px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hour-btn:not(:disabled):hover {
    background-color: #E12826;
    color: white;
}

.hour-btn.selected {
    background-color: #E12826 !important;
}

/* Estilos del modal de cotización */
.tambor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.tambor-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.tambor-modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    margin: 50px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tambor-modal-header {
    background-color: #E12826;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tambor-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.tambor-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    transition: opacity 0.2s;
}

.tambor-modal-close:hover {
    opacity: 0.7;
}

.tambor-modal-body {
    padding: 20px;
}

.license-warning {
    background-color: #fff3cd;
    border-left: 4px solid #E12826;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-warning .warning-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.license-warning p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.modal-message {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.modal-message.success {
    color: #155724;
}

.modal-message.error {
    color: #E12826;
}

.tambor-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.tambor-modal-btn {
    background-color: #E12826;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tambor-modal-btn:hover {
    background-color: #c21e1a;
}

.tambor-modal-btn:active {
    transform: scale(0.98);
}

/* Ocultar overlay cuando está habilitado */
.calendar-enabled .calendar-disabled-overlay {
    display: none !important;
}