        /* Colores de la marca */
        :root {
            --primary-blue: #1b3668;
            --secondary-red: #e72125;
            --light-gray: #f4f4f4;
        }

        /* Estilos del header */
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .navbar-brand img {
            height: 60px;
        }

        .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 500;
            margin: 0 10px;
        }

        .btn-primary {
            background-color: #5cb85c;
            border-color: #5cb85c;
            padding: 4px 25px;
            font-weight: 600;
        }

        .hero-section {
            padding: 60px 0;
            min-height: 500px;
            overflow: hidden;
        }

        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.85;
        }

        .z-index-1 {
            z-index: 1;
        }

        .hero-content h1 {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .hero-content p {
            color: #333;
            margin-bottom: 20px;
        }

        .promo-badge {
            color: var(--secondary-red);
            display: inline-block;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .promo-badge span {
            font-size: 2.5rem;
        }

        /* Footer Styles */
        .footer-section {
            background-color: #f6f6f6;
            border-top: 1px solid #e0e0e0;
            font-size: 0.9rem;
            color: #555;
            padding: 40px 0 20px;
        }

        .footer-logo img {
            max-width: 250px;
        }

        .footer-links h5,
        .footer-contact h5,
        .footer-social h5 {
            color: #444;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-links ul li {
            margin-bottom: 5px;
        }

        .footer-links ul li a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: var(--primary-blue);
        }

        .footer-contact p {
            line-height: 1.4;
            font-size: 0.85rem;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #333;
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .copyright {
            color: #777;
            font-size: 0.8rem;
            padding-top: 15px;
            margin-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        @media (max-width: 576px) {
            .promo-content {
                justify-content: center;
                text-align: center;
            }

            .promo-prefix,
            .promo-percentage,
            .promo-details {
                margin: 5px;
            }

            .promo-details {
                border-left: none;
                padding-left: 0;
                width: 100%;
                text-align: center;
            }
        }
        /* Estilos para el botón flotante de WhatsApp */
        .whatsapp-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            z-index: 1000;
        }

        .whatsapp-button {
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            padding: 12px 24px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .whatsapp-button:hover {
            background-color: #20ba58;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        }

        .whatsapp-button-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }

        .whatsapp-small-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        .whatsapp-option {
            margin-bottom: 10px;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .whatsapp-option.visible {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .whatsapp-option a {
            text-decoration: none;
            color: white;
        }

        .whatsapp-option-inner {
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .whatsapp-option-inner:hover {
            background-color: #20ba58;
        }

        .whatsapp-option-text {
            display: flex;
            flex-direction: column;
        }

        .whatsapp-option-title {
            font-weight: 600;
            font-size: 14px;
            line-height: 1.2;
        }

        .whatsapp-option-subtitle {
            font-size: 12px;
            opacity: 0.9;
        }

        .whatsapp-click-icon {
            margin-left: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* Media queries para dispositivos móviles */
        @media (max-width: 767.98px) {
            .whatsapp-container {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-option-inner {
                padding: 6px 12px;
            }

            .whatsapp-button {
                padding: 10px 20px;
            }
        }
        /* Estilos generales */
        body {
            font-family: Arial, sans-serif;
        }

        /* Estilos para el Smart Wizard */
        #smartwizard {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Estilos para los botones de navegación */
        #smartwizard .nav {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
        }

        /* Estilos para el contenido de la Sucursal */
        .sucursal-container {
            padding: 20px;
        }

        .sucursal-heading {
            margin-bottom: 30px;
        }

        .sucursal-heading h2 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .sucursal-heading p {
            color: #666;
            margin-bottom: 0;
            max-width: 500px;
        }

        .sucursal-heading .destacado {
            color: #CC3333;
            font-weight: bold;
        }

        .sucursal-content {
            display: flex;
            flex-wrap: wrap;
        }

        .sucursal-list {
            flex: 1;
            margin-right: 20px;
            max-width: 500px;
        }

        .sucursal-item {
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            background-color: #ececec;
        }

        .sucursal-image {
            flex: 0 0 150px;
        }

        .sucursal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 2px solid #ddd;
            border-radius: 5px 0px 0px 0px;
        }

        .sucursal-info {
            flex: 1;
            padding: 15px;
        }

        .sucursal-info h3 {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .sucursal-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .btn-seleccionar {
            background-color: #CC3333;
            color: white;
            border: none;
            padding: 4px 35px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            display: block;
            margin: 0 auto;
        }


        /* Ajustes para el contenedor del mapa */
        .sucursal-map {
            flex: 1;
            min-width: 300px;
            max-width: 700px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            height: 400px;
            /* Altura fija para el contenedor */
        }

        /* Ajustes para el iframe */
        .sucursal-map iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Ajustes para el contenedor del mapa */
        .sucursal-map2 {
            flex: 1;
            min-width: 300px;
            max-width: 1200px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            height: 400px;
            /* Altura fija para el contenedor */
        }

        /* Ajustes para el iframe */
        .sucursal-map2 iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Ocultar la barra de progreso */
        .progress {
            display: none;
        }

        /* Estilos responsive */
        @media (max-width: 768px) {
            .sucursal-content {
                flex-direction: column;
            }

            .sucursal-list {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .sucursal-map {
                max-width: 100%;
            }
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f8f9fa;
        }

        .header-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            margin-top: 20px;
        }

        .bodega-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            background-color: white;
            margin-bottom: 15px;
        }

        .location-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-shadow: 30px black;
            background-color: #e9e9e9;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .location-info {
            padding: 15px;
        }

        .location-title {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .location-address {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .location-phone {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .bodega-img {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
        }

        .bodega-img img {
            width: 100%;
            max-width: 580px;
        }

        .bodega-info {
            display: flex;
            padding: 10px;
            align-items: center;
        }

        .dimension-text {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .dimension-details {
            font-size: 0.8rem;
            color: #666;
        }

        .price-original {
            text-decoration: line-through;
            color: #999;
            font-size: 0.8rem;
        }

        .price-current {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .promo-badge {
            background-color: #d4edda;
            color: #155724;
            border-radius: 5px;
            padding: 10px;
            text-align: center;
        }

        .promo-title {
            font-weight: bold;
            font-size: 0.9rem;
        }

        .promo-subtitle {
            font-size: 0.8rem;
        }

        .btn-reservar {
            background-color: #dc3545;
            border: none;
            color: white;
            font-size: 14px;
            align-items: center;
            padding: 8px 10px;
            border-radius: 5px;
            font-weight: bold;
        }

        .btn-reservar:hover {
            background-color: #c82333;
        }

        .pin-icon {
            color: #dc3545;
            margin-right: 5px;
        }

        .phone-icon {
            color: #0288d1;
            margin-right: 5px;
        }

        .bodega-section-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        /* Estilos para el menú de reserva */
        .reservation-menu {
            padding: 20px;
            border-top: 1px solid #e0e0e0;
            background-color: #f9f9f9;
        }

        /* Estilos para el calendario */
        .calendar-container {
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            background-color: #fff;
            width: 350px;
            height: 320px;
            margin: 0 auto;
            padding: 0;
        }

        .xdsoft_datetimepicker .xdsoft_datepicker {
            width: 100% !important;
            float: left;
            padding-left: 0px !important;
            padding-right: 6px !important;
        }

        .calendar-header {
            background-color: #dc3545;
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
        }


        /* Estilos para el botón siguiente */
        .btn-siguiente {
            background-color: #dc3545;
            color: white;
            font-weight: bold;
            padding: 8px 20px;
            border: none;
            border-radius: 5px;
        }

        .btn-siguiente:hover {
            background-color: #c82333;
        }

        /* Estilos para el mensaje de alerta */
        .alert-warning {
            background-color: #fff3cd;
            border-color: #ffeeba;
            color: #856404;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
        }

        #datetimepicker {
            width: 100% !important;
            height: 100% !important;
            padding: 0;
        }

        .xdsoft_datetimepicker .xdsoft_month {
            width: 130px !important;
            text-align: right
        }

        /* Ajustar tamaño del widget del calendario */
        .xdsoft_datetimepicker {
            width: 100% !important;
            height: 100% !important;
            max-width: 100%;
        }

        /* Ajustar las celdas del calendario */
        .xdsoft_calendar {
            width: auto !important;
            height: auto;
        }

        /* Ajustar los botones del calendario */
        .xdsoft_datepicker {
            width: 100%;
        }
        /* Estilos adicionales */
.btn-primary {
    background-color: #176ca8;
    border-color: #176ca8;
}
.btn-danger {
    background-color: #c7293e;
    border-color: #c7293e;
}
.form-check-input:checked {
    background-color: #176ca8;
    border-color: #176ca8;
}
.text-danger {
    color: #c7293e !important;
}