/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #666666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #FF0000;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #666666;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FF0000;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}

.espacio-img {
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
}

.espacio-text {
    margin-bottom: 30px;
}

.imagenes {
    line-height: 1.8;
    line
}

.colorprimario {
    background: FFFFFF;
}



/**********************************/
/********* Form Input CSS *********/
/**********************************/
.form-control,
.custom-select {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #FF0000;
    border-radius: 0;
    margin-bottom: 15px
}

.custom-radio,
.custom-checkbox {
    margin-bottom: 15px;
}

.custom-radio .custom-control-label::before,
.custom-checkbox .custom-control-label::before {
    border-color: #FF0000;
    border-radius: 0;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    color: #ffffff;
    background: #FF0000;
}

button.btn {
    color: #ffffff;
    background: #FF0000;
    border-radius: 0;
}



/************ ESTILOS CONTACTO FORM ****************/

    
        .sjm-contact-reset * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .sjm-contact-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            padding: 20px;
        }

        .sjm-contact-container {
            max-width: 1200px;
            margin: 40px auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .sjm-contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .sjm-form-section {
            padding: 50px;
            background: white;
        }

        .sjm-form-section h2 {
            color: #FF0000;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .sjm-form-section p {
            color: #667;
            margin-bottom: 30px;
        }

        .sjm-contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .sjm-info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #333;
        }

        .sjm-info-icon {
            width: 40px;
            height: 40px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
        }

        .sjm-info-text {
            font-size: 15px;
            line-height: 1.6;
        }

        .sjm-info-text strong {
            display: block;
            color: #dc2626;
            margin-bottom: 3px;
        }

        .sjm-form-group {
            margin-bottom: 20px;
        }

        .sjm-form-group label {
            display: block;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .sjm-form-group input, 
        .sjm-form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .sjm-form-group input:focus, 
        .sjm-form-group textarea:focus {
            outline: none;
            border-color: #FF0000;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        .sjm-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .sjm-submit-btn {
            width: 100%;
            padding: 15px;
            background: #FF0000;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .sjm-submit-btn:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
        }

        .sjm-submit-btn:active {
            transform: translateY(0);
        }

        .sjm-submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
        }

        .sjm-image-section {
            display: grid;
            align-items: center;
            justify-content: center;
            padding: 0px;
            position: inherit;
            overflow: hidden;
        }

        .sjm-image-section::before {
            content: '';
            position: grid;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            animation: sjm-pulse 15s infinite;
        }

        @keyframes sjm-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .sjm-image-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .sjm-placeholder-image {
            width: 100%;
            max-width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .sjm-success-message {
            display: none;
            padding: 15px;
            background: #dcfce7;
            border: 2px solid #86efac;
            border-radius: 8px;
            color: #166534;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .sjm-error-message {
            display: none;
            padding: 15px;
            background: #fee2e2;
            border: 2px solid #fca5a5;
            border-radius: 8px;
            color: #991b1b;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .sjm-success-message.sjm-show,
        .sjm-error-message.sjm-show {
            display: block;
        }

        @media (max-width: 968px) {
            .sjm-contact-wrapper {
                grid-template-columns: 1fr;
            }

            .sjm-image-section {
                display: none; 
            }

            .sjm-form-section {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .sjm-contact-container {
                margin: 20px auto;
            }

            .sjm-form-section {
                padding: 25px;
            }

            .sjm-form-section h2 {
                font-size: 24px;
            }

            .sjm-info-item {
                font-size: 14px;
            }
        }
    

/********* Top Header CSS *********/
/**********************************/
.top-header {
    padding: 7px 0;
    background: #ffffff;
    border-bottom: 3px solid #dc3545;
}

.top-header .logo {
    text-align: left;
    overflow: hidden;
}

.top-header .logo a img {
    max-height: 65px;
}

.top-header .search {
    width: 100%;
}

.top-header .search input[type=text] {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #FF0000;
}

.top-header .search button {
    position: absolute;
    width: 40px;
    height: 38px;
    top: 1px;
    right: 16px;
    padding: 0 15px;
    border: none;
    background: none;
    color: #FF0000;
}

.top-header .search button:hover {
    background: #FF0000;
    color: #ffffff;
}

.top-header .user {
    width: 100%;
    text-align: right;
}

.top-header .user .dropdown {
    display: inline-block;
    margin-right: 15px;
}

.top-header .user .dropdown-menu {
    border-radius: 0;
}

.top-header .user .cart {
    display: inline-block;
}

.top-header .user .cart i {
    color: #FF0000;
    font-size: 18px;
}

.top-header .user .cart span {
    color: #666666;
    font-size: 14px;
}

@media (min-width: 768px) {
    .top-header {
        max-height: 90px;
    }
}

@media (max-width: 767.98px) {
    .top-header .logo,
    .top-header .search,
    .top-header .user {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .top-header .user {
        margin-bottom: 0;
    }
}



/**********************************/
/********* Header Nav CSS *********/
/**********************************/
/* Estilos existentes del header */
.header {
    position: relative;
}

.header .navbar {
    height: 100%;
    padding: 20px;
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}


  /* ========================================
           ESTILOS COTIZADOR HEADER
        ======================================== */

.cotizador-intro-seo {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.cotizador-intro-seo h2 {
    color: RED;
    margin-bottom: 20px;
}

.cotizador-intro-seo p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}


  /* ========================================
           ESTILOS FAQ - NO AFECTAN TU PROYECTO
           Todas las clases tienen prefijo sjm-faq-
        ======================================== */
        
        .sjm-faq-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .sjm-faq-section-title {
            color: #dc3545;
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .sjm-faq-item {
            background: #ffffff;
            border: 2px solid #dc3545;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .sjm-faq-item:hover {
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
            transform: translateY(-2px);
        }

        .sjm-faq-question {
            background: #dc3545;
            color: #ffffff;
            padding: 20px 25px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .sjm-faq-question-text {
            flex: 1;
            margin: 0;
            padding: 0;
        }

        .sjm-faq-icon {
            font-size: 28px;
            font-weight: bold;
            transition: transform 0.3s ease;
            margin-left: 15px;
            line-height: 1;
        }

        .sjm-faq-question.sjm-active .sjm-faq-icon {
            transform: rotate(45deg);
        }

        .sjm-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .sjm-faq-answer.sjm-active {
            padding: 25px;
            max-height: 600px;
        }

        .sjm-faq-answer-text {
            color: #333333;
            font-size: 16px;
            line-height: 1.8;
            margin: 0;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .sjm-faq-page-separator {
            margin: 80px auto;
            padding: 20px;
            background: #fff3cd;
            border: 2px dashed #ffc107;
            border-radius: 8px;
            text-align: center;
            color: #856404;
            font-weight: bold;
            font-size: 18px;
            max-width: 1200px;
        }

        @media (max-width: 768px) {
            .sjm-faq-container {
                margin: 40px auto;
                padding: 0 15px;
            }

            .sjm-faq-section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }
            
            .sjm-faq-question {
                font-size: 16px;
                padding: 15px 20px;
            }
            
            .sjm-faq-icon {
                font-size: 24px;
            }
            
            .sjm-faq-answer.sjm-active {
                padding: 20px;
            }
            
            .sjm-faq-answer-text {
                font-size: 15px;
            }
        }


/* Nuevos estilos para el top header */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-right: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333333;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a[href*="whatsapp"]:hover {
    background: #25D366;
}

.social-icons a[href*="facebook"]:hover {
    background: #1877F2;
}

.social-icons a[href*="mailto"]:hover {
    background: #dc3545;
}

.btn-cotizar {
    display: inline-block;
    padding: 12px 25px;
    background: #dc3545;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-cotizar:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* Responsive */
@media (min-width: 768px) {
    .header,
    .header .navbar {
        background: #333333 !important;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header a.nav-link {
        padding: 8px 15px;
        font-size: 17px;
        text-transform: uppercase;
    }
}

@media (max-width: 768px) {
    
    .header-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
        padding-right: 0;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .btn-cotizar {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .header,
    .header .navbar {
        background: #333333 !important;
    }
    
    .header a.nav-link {
        padding: 5px;
    }
    
    .header .dropdown-menu {
        box-shadow: none;
    }
}

<!-- ========================================
     CSS - google-reviews.css
     ======================================== -->

/* Reset específico para el widget */
.sjm-reviews-main-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sjm-reviews-main-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #202124;
    padding: 60px 20px;
}

.sjm-reviews-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 400;
    color: red;
    font-weight: bold;
}

/* Configuración API */
.sjm-api-config-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sjm-api-config-box h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sjm-api-description {
    color: #856404;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.sjm-api-input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
}

.sjm-api-btn {
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
    font-size: 0.9rem;
    font-family: inherit;
}

.sjm-api-btn-primary {
    background: #1a73e8;
    color: white;
}

.sjm-api-btn-primary:hover {
    background: #1557b0;
}

.sjm-api-btn-secondary {
    background: #6c757d;
    color: white;
    margin-left: 10px;
}

.sjm-api-btn-secondary:hover {
    background: #5a6268;
}

.sjm-api-help {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #856404;
}

.sjm-api-help a {
    color: #1a73e8;
    text-decoration: none;
}

.sjm-api-help a:hover {
    text-decoration: underline;
}

/* Contenedor de reseñas */
.sjm-reviews-wrapper {
    position: relative;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.sjm-reviews-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.sjm-reviews-container::-webkit-scrollbar {
    display: none;
}

/* Tarjetas de reseñas */
.sjm-review-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    min-width: 420px;
    max-width: 420px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sjm-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.sjm-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sjm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
    color: white;
}

.sjm-avatar-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.sjm-avatar-orange { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.sjm-avatar-green { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.sjm-avatar-blue { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.sjm-avatar-pink { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.sjm-review-info {
    flex-grow: 1;
    min-width: 0;
}

.sjm-review-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sjm-review-date {
    color: #5f6368;
    font-size: 0.9rem;
}

.sjm-google-icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
    flex-shrink: 0;
}

.sjm-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.sjm-star {
    color: #fbbc04;
    font-size: 22px;
}

.sjm-verified {
    color: #1a73e8;
    font-size: 18px;
    margin-left: 8px;
}

.sjm-review-text {
    color: #3c4043;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sjm-review-text.sjm-expanded {
    -webkit-line-clamp: unset;
}

.sjm-read-more {
    color: #1a73e8;
    margin-top: 12px;
    display: inline-block;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.sjm-read-more:hover {
    text-decoration: underline;
}

/* Botones de navegación */
.sjm-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #dadce0;
    color: #5f6368;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sjm-nav-button:hover {
    background: #f8f9fa;
    border-color: #5f6368;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sjm-nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.sjm-nav-prev {
    left: 0;
}

.sjm-nav-next {
    right: 0;
}

/* Sección escribir reseña */
.sjm-write-review-section {
    text-align: center;
    margin-top: 60px;
}

.sjm-write-review-btn {
    background: transparent;
    border: 2px solid #dadce0;
    color: #5f6368;
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    font-family: inherit;
}

.sjm-write-review-btn:hover {
    background: #f8f9fa;
    border-color: #5f6368;
}

.sjm-loading {
    text-align: center;
    padding: 40px;
    color: #5f6368;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .sjm-reviews-main-container {
        padding: 40px 10px;
    }

    .sjm-reviews-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .sjm-reviews-wrapper {
        padding: 0 50px;
    }

    .sjm-review-card {
        min-width: 300px;
        max-width: 300px;
        padding: 24px;
    }

    .sjm-review-name {
        font-size: 1rem;
    }

    .sjm-review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }

    .sjm-nav-button {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .sjm-nav-prev {
        left: 5px;
    }

    .sjm-nav-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .sjm-reviews-wrapper {
        padding: 0 45px;
    }

    .sjm-review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 20px;
    }
}


/**********************************/
/********* TITULOSEO CSS *********/
/**********************************/

.tituloseo {
    position: relative;
    height: 100%;
    padding: 20;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #DEDEDE;
    text-align: center;    
}


/**********************************/
/********* Header Slider **********/
/**********************************/
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    opacity: 0;
    transition: .3s;
}

.slick-prev {
    left: 55px;
}

.slick-next {
    right: 55px;
}

.slick-slider:hover .slick-prev {
    left: 15px;
    opacity: 1;
}

.slick-slider:hover .slick-next {
    right: 15px;
    opacity: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #FF0000;
    background: #ffffff;
}

.slick-prev::before,
.slick-next::before {
    font-family: "FontAwesome";
    font-size: 30px;
    color: #FF0000;
}

.slick-prev::before {
    content: "\f104";
}

.slick-next::before {
    content: "\f105";
}

.slick-dots li button:before {
    color: #ffffff;
    font-size: 15px;
}

.slick-dots li.slick-active button:before {
    color: #353535;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.home-slider {
    position: relative;
    width: 100%;
}

.home-slider .main-slider-item {
    padding: 0 2.5px;
}

.home-slider .slick-dots {
    bottom: 15px;
}


/* AJUSTES PARA MÓVIL */
@media (max-width: 768px) {
    /* Reducir altura del slider en móvil */
    .home-slider {
        max-height: 160px;
        overflow: hidden;
    }
    
    .home-slider .main-slider-item {
        height: 160px;
    }
    
    .home-slider .main-slider-item img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        object-position: center;
    }
    
    /* Ajustar flechas en móvil */
    .slick-prev,
    .slick-next {
        width: 30px;
        height: 30px;
        opacity: 1; /* Siempre visibles en móvil */
    }
    
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
    
    .slick-prev::before,
    .slick-next::before {
        font-size: 24px;
    }
    
    /* Ajustar dots en móvil */
    .home-slider .slick-dots {
        bottom: 10px;
    }
    
    .slick-dots li button:before {
        font-size: 12px;
    }
}

/* Para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .home-slider {
        max-height: 400px;
        overflow: hidden;
    }
    
    .home-slider .main-slider-item img {
        height: 400px;
        object-fit: cover;
    }
}


/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.breadcrumb-wrap .breadcrumb {
    margin: 15px 0 0 0;
    padding: 0;
    background: none;
}



/**********************************/
/********** Category CSS **********/
/**********************************/
.category {
    position: relative;
    padding: 0 7.5px;
    background: #ffffff;
}

@media (max-width: 575.98px) {
    .category {
        padding: 45px 7.5px 30px 7.5px;
    }
}

.category .col-md-4,
.category .col-md-6 {
    padding: 0 7.5px;
}

.category .category-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.category .category-img img {
    width: 100%;
}

.category .category-img:hover img {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.category .category-name {
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0; 
    left: 0;
    opacity: 0;
    background: rgba(63, 105, 170, .5);
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
}

.category .category-name:hover {
    opacity: 1;     
}

.category .category-name h2 {
    margin: 0 0 -50px 0;
    padding: 15px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    transition: .5s;
}

.category .category-name:hover h2 {
    margin: 0;       
}



/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.section-header h2,
.section-header h3 {
    position: relative;
    color: #FF0000;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 15px;
}

.section-header h2::after,
.section-header h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 5px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #FF0000;
}

.section-header p {
    font-size: 16px;
    text-align: center;
    margin: 0
}



/**********************************/
/*********** Feature CSS **********/
/**********************************/
.feature {
    position: relative;
    padding: 0;
}

.feature .feature-col {
    height: inherit;
    border-right: 1px solid #dddddd;
    padding: 60px 0;
}

.feature .feature-col:last-child {
    border-right: none;
}

.feature .feature-content {
    position: relative;
    width: 100%;
    padding: 0 30px;
    text-align: center;
}

.feature .feature-content i {
    color: #FF0000;
    font-size: 60px;
    margin-bottom: 10px;
}

.feature .feature-content h2 {
    color: #666666;
    font-size: 20px;
    font-weight: 700;
}

.feature .feature-content p {
    color: #666666;
    font-size: 15px;
    margin: 0;
}



/**********************************/
/******** Product Item CSS ********/
/**********************************/
.product-item {
    position: relative;
    background-color: #f7f7f7;
    padding-bottom: 15px;
}

.product-item .product-image {
    position: relative;
    overflow: hidden;
}

.product-item .product-image a {
    display: block;
    background: #FF0000;
    margin-bottom: 15px; 
    transition: .3s;
}

.product-item:hover .product-image a {
    background: rgba(63, 105, 170, .5);
}

.product-item .product-image img {
    width: 100%; 
}

.product-item:hover .product-image img {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.product-item .product-image .product-action {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    left: 0;
    top: 50%;
    text-align: center;
    transition: .5s;
    opacity: 0; 
}

.product-item:hover .product-image .product-action {
    top: calc(50% - 25px);
    opacity: 1; 
}

.product-item .product-image .product-action a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 6px 0;
    margin-right: 5px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    background: #FF0000;
}

.product-item .product-image .product-action a:last-child {
    margin-right: 0;
}

.product-item .product-image .product-action a:hover {
    color: #FF0000;
    background: #ffffff;
}

.product-item .product-content {
    position: relative;
    width: 100%;
    text-align: center;
    background: #f7f7f7;
}

.product-item .product-content .title,
.product-item .product-content .ratting,
.product-item .product-content .price {
    position: relative;
    width: 100%;
}

.product-item .product-content .title {
    margin-bottom: 5px;
}

.product-item .product-content .title a {
    color: #FF0000;
    font-size: 18px;
    font-weight: 600;
}

.product-item .product-content .ratting i {
    font-size: 14px;
    color: #FF0000;
}

.product-item .product-content .price {
    font-size: 30px;
    color: #FF0000;
    font-weight: 700; 
}

.product-item .product-content .price span {
    margin-left: 12px;
    text-decoration: line-through;
    font-weight: 700;
    color: #666666;
}

.product-slider.slick-slider:hover .slick-prev {
    left: 30px;
    opacity: 1;
}

.product-slider.slick-slider:hover .slick-next {
    right: 30px;
    opacity: 1;
}



/**********************************/
/******** Featured Product ********/
/**********************************/
.featured-product {
    position: relative;
    padding: 45px 0 60px 0;
}

.recent-product {
    position: relative;
    padding: 60px 0;
}


/**********************************/
/******** Product View CSS ********/
/**********************************/
.product-view {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.product-view .product-search {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.product-view .product-search input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #FF0000;
}

.product-view .product-search button {
    position: absolute;
    width: 35px;
    height: 33px;
    top: 1px;
    right: 1px;
    text-align: center;
    background: #ffffff;
    color: #FF0000;
    border: none;
}

.product-view .product-search button i {
    font-size: 16px;
}

.product-view .product-search button:hover {
    background: #FF0000;
    color: #ffffff;
}

.product-view .product-short {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    text-align: right;
}

.product-view .product-short .dropdown a.dropdown-toggle {
    display: block;
    width: 100%;
    height: 35px;
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid #FF0000;
    text-align: left;
}

.product-view .product-short .dropdown a.dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

.product-view .product-short .dropdown-menu {
    margin: -2px 0 0 0;
    border-radius: 0;
}

.product-view .product-item {
    margin-bottom: 30px;
}

.product-view .pagination {
    margin: 0;
}

.product-view .pagination .page-item .page-link {
    color: #FF0000;
    background: #ffffff;
    border-color: #FF0000;
    border-radius: 0;
}

.product-view .pagination .page-item:hover .page-link,
.product-view .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #FF0000;
}



/**********************************/
/******* Product Detail CSS *******/
/**********************************/
.product-detail {
    position: relative;
    width: 100%;
    padding: 10px 0 15px 0;
}

.action {
    text-align: center;
}


.product-detail .product-detail-top,
.product-detail .product-detail-bottom,
.product-detail .product-slider.product-slider-3 {
    margin-bottom: 45px;
}

.product-detail .product-slider-single img {
    width: 100%;
    background: #FF0000;
}

.product-detail .product-content,
.product-detail .product-content .title,
.product-detail .product-content .ratting,
.product-detail .product-content .price,
.product-detail .product-content .details,
.product-detail .product-content .quantity,
.product-detail .product-content .action {
    position: relative;
    width: 100%;
}

.product-detail .product-content .title h2 {
    color: #FF0000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-detail .product-content .ratting i {
    color: #FF0000;
    font-size: 18px;
}

.product-detail .product-content .price {
    color: #FF0000;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-detail .product-content .price span {
    color: #666666;
    text-decoration: line-through;
    margin-left: 12px;
}

.product-detail .product-content .details {
    margin-bottom: 20px;
}

.product-detail .product-content .details p {
    color: #666666;
    font-size: 16px;
}

.product-detail .product-content .quantity {
    margin-bottom: 20px;
}

.product-detail .product-content .quantity h4 {
    display: inline-block;
    color: #666666;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
}

.product-detail .product-content .quantity .qty {
    display: inline-block;
}

.product-detail .product-content .quantity button {
    width: 30px;
    height: 30px;
    padding: 2px 0;
    text-align: center;
    color: #ffffff;
    background: #FF0000;
    border: none;
}

.product-detail .product-content .quantity input {
    width: 60px;
    height: 30px;
    color: #ffffff;
    text-align: center;
    background: rgba(63, 105, 170, .5);
    border: none;
}

.product-detail .product-content .action a {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 7px 0;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    background: #FF0000;
    border: 1px solid #FF0000;
}

.product-detail .product-content .action a:hover {
    color: #FF0000;
    background: #ffffff;
}

.product-detail  .nav.nav-pills .nav-link {
    color: #ffffff;
    background: rgba(63, 105, 170, .5);
    border-radius: 0;
}

.product-detail  .nav.nav-pills .nav-link:hover,
.product-detail  .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FF0000;
}

.product-detail .tab-content {
    background: rgba(63, 105, 170, .1);
}

.product-detail .tab-content {
    padding: 10px;
}

.product-detail .tab-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail .tab-content ul li {
    margin-bottom: 10px;
}

.product-detail .tab-content ul li::before {
    content: '\f061';
    font-family: 'FontAwesome';
    padding-right: 5px;
}

.product-detail .tab-content .reviews-submitted {
    position: relative;
    margin-bottom: 45px;
}

.product-detail .tab-content .reviewer {
    color: #FF0000;
    font-size: 18px;
    font-weight: 600;
}

.product-detail .tab-content .reviewer span {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.product-detail .tab-content .ratting {
    color: #FF0000;
    margin-bottom: 15px;
}

.product-detail .tab-content .reviews-submit .ratting {
    font-size: 24px;
}

.product-detail .tab-content .form input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    background: #ffffff;
    border: none;
    margin-bottom: 15px;
}

.sombraimagen {
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}

.form2 {
    width: 100%;
    height: 35px;
    padding: 20 15px;
    color: #FFFFFF;
    background: red;
    border: 1px solid #667;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); 
    margin-bottom: 15px;
    text-decoration: none;
    font-weight: bold;    
}

.product-detail .tab-content .form textarea {
    width: 100%;
    height: 80px;
    padding: 6px 15px;
    color: #666666;
    background: #ffffff;
    border: none;
    margin-bottom: 15px;
}

.product-detail .tab-content .form button {
    display: inline-block;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    background: #ffffff;
    border: none;
    margin-bottom: 15px;
}

.product-detail .tab-content .form button:hover {
    color: #ffffff;
    background: #FF0000;
}



/**********************************/
/********** Sidebar CSS ***********/
/**********************************/
.sidebar-widget {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget .title {
    position: relative;
    color: #FF0000;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-widget .title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #FF0000;
}

.sidebar-widget.brands ul,
.sidebar-widget.category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-widget.brands ul li,
.sidebar-widget.category ul li {
    margin-bottom: 12px; 
}

.sidebar-widget.brands ul li:last-child,
.sidebar-widget.category ul li:last-child {
    margin-bottom: 0; 
}

.sidebar-widget.brands ul li a,
.sidebar-widget.category ul li a {
    color: #FF0000;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    display: inline-block;
    line-height: 23px;
}

.sidebar-widget.brands ul li a::before,
.sidebar-widget.category ul li a::before {
    content: '\f061';
    font-family: 'FontAwesome';
    padding-right: 5px;
}

.sidebar-widget.brands ul li a:hover,
.sidebar-widget.category ul li a:hover {
    padding-left: 10px; 
}

.sidebar-widget.brands ul li span,
.sidebar-widget.category ul li span {
    display: inline-block;
    float: right;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

.sidebar-widget.image a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar-widget.image img {
    max-width: 100%;
    transition: .3s;
}

.sidebar-widget.image img:hover {
    transform: scale(1.1);
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.sidebar-widget.tag a {
    display: inline-block;
    margin: 0 0 4px 0;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 400;
    color: #FF0000;
    background: #ffffff;
    border: 1px solid #FF0000;
}

.sidebar-widget.tag a:hover {
    color: #ffffff;
    background: #FF0000;
}



/**********************************/
/************ Cart CSS ************/
/**********************************/
.cart-page {
    position: relative;
    padding: 60px 0;
}

.cart-page .table {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.cart-page .table .thead-dark th {
    text-align: center;
    background: #FF0000;
    border-color: #FF0000;
    vertical-align: middle;
}

.cart-page .table td {
    color: #666666;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
}

.cart-page .table img {
    max-width: 100px;
    max-height: 100px;
}

.cart-page .table .qty {
    display: inline-block;
}

.cart-page .table button {
    height: 30px;
    padding: 2px 10px;
    text-align: center;
    color: #ffffff;
    background: #FF0000;
    border: none;
}

.cart-page .table input {
    width: 60px;
    height: 30px;
    color: #ffffff;
    text-align: center;
    background: rgba(63, 105, 170, .5);
    border: none;
}

.cart-page .coupon {
    position: relative;
    width: 100%;
}

.cart-page .coupon input {
    width: calc(100% - 135px);
    height: 50px;
    padding: 0 15px;
    color: #666666;
    background: #ffffff;
    border: 1px solid #FF0000;
    margin-right: 10px;
}

.cart-page .coupon button {
    width: 120px;
    height: 50px;
    padding: 2px 10px;
    text-align: center;
    color: #ffffff;
    background: #FF0000;
    border: none;
}

.cart-page .cart-summary {
    position: relative;
    width: 100%;
}

.cart-page .cart-summary .cart-content {
    padding: 30px;
    background: #FF0000;
}

.cart-page .cart-summary .cart-content h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
}

.cart-page .cart-summary .cart-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.cart-page .cart-summary .cart-content p span,
.cart-page .cart-summary .cart-content h4 span {
    float: right;
}

.cart-page .cart-summary .cart-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid #ffffff;
    margin: 0;
}

.cart-page .cart-summary .cart-btn button {
    margin-top: 15px;
    width: calc(50% - 15px);
    height: 50px;
    padding: 2px 10px;
    text-align: center;
    color: #ffffff;
    background: #FF0000;
    border: none;
}

.cart-page .cart-summary .cart-btn button:first-child {
    margin-right: 25px;
    color: #FF0000;
    background: #ffffff;
    border: 1px solid #FF0000;
}



/**********************************/
/********** Checkout CSS **********/
/**********************************/
.checkout {
    position: relative;
    padding: 60px 0;
}

.checkout .billing-address,
.checkout .shipping-address {
    position: relative;
    width: 100%;
}

.checkout .shipping-address {
    display: none;
    margin-top: 30px;
}

.checkout .billing-address h2,
.checkout .shipping-address h2 {
    color: #666666;
    font-size: 30px;
    font-weight: 700;
}

.checkout .checkout-summary,
.checkout .checkout-payment {
    position: relative;
    width: 100%;
}

.checkout .checkout-payment {
    margin-top: 30px;
}

.checkout .checkout-summary h2,
.checkout .checkout-payment h2 {
    color: #666666;
    font-size: 30px;
    font-weight: 700;
}

.checkout .checkout-summary .checkout-content,
.checkout .checkout-payment .payment-methods {
    padding: 30px;
    background: #FF0000;
}

.checkout .checkout-summary .checkout-content h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
}

.checkout .checkout-summary .checkout-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.checkout .checkout-summary .checkout-content p.sub-total,
.checkout .checkout-summary .checkout-content p.ship-cost {
    padding-top: 15px;
    border-top: 1px solid #ffffff;
}

.checkout .checkout-summary .checkout-content p span,
.checkout .checkout-summary .checkout-content h4 span {
    float: right;
}

.checkout .checkout-summary .checkout-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid #ffffff;
    margin: 0;
}

.checkout .checkout-payment .payment-methods {
    color: #ffffff;
}

.checkout .checkout-payment .payment-methods .payment-content {
    display: none;
}

.checkout .checkout-payment .checkout-btn button {
    margin-top: 15px;
    width: calc(50% - 15px);
    height: 50px;
    padding: 2px 10px;
    text-align: center;
    color: #ffffff;
    background: #FF0000;
    border: none;
}



/**********************************/
/********* My Account CSS *********/
/**********************************/
.my-account {
    position: relative;
    padding: 60px 0;
}

.my-account .nav.nav-pills .nav-link {
    padding: 15px 22px;
    color: #FF0000;
    font-weight: 400;
    background: rgba(63, 105, 170, .1);
    border-radius: 0;
    border-bottom: 1px solid #ffffff;
}

.my-account .nav.nav-pills .nav-link:hover,
.my-account .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FF0000;
}

.my-account .tab-content {
    padding: 30px;
    background: rgba(63, 105, 170, .1);
}

.my-account .tab-content .table {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.my-account .tab-content .table .thead-dark th {
    text-align: center;
    background: #FF0000;
    border-color: #FF0000;
    vertical-align: middle;
}

.my-account .tab-content .table td {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    vertical-align: middle;
}

.my-account .tab-content button {
    height: 35px;
    padding: 2px 15px;
    text-align: center;
    color: #ffffff;
    background: #FF0000;
    border: none;
}

.my-account .tab-content input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    color: #666666;
    background: #ffffff;
    border: 1px solid #ffffff;
    margin-bottom: 15px;
}



/**********************************/
/********* Newsletter CSS *********/
/**********************************/
.newsletter {
    position: relative;
    padding: 30px 0;
    text-align: center;
    background: red;
}

.newsletter .section-header h2,
.newsletter .section-header h3,
.newsletter .section-header p {
    color: #ffffff;
}

.newsletter .section-header h2::after,
.newsletter .section-header h3::after {
    background: #ffffff;
}

.newsletter .form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter .form input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #ffffff;
}

.newsletter .form button {
    position: absolute;
    width: 80px;
    height: 40px;
    top: 0;
    right: 0;
    padding: 0 15px;
    border: none;
    background: #FF0000;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.claseh3blanca {
    color: white;
}

.claseh3roja {
    color: red;
}

.col-lg-12 {
    margin-bottom: 30px;
}

/**********************************/
/*********** Brand CSS ************/
/**********************************/
.brand {
    position: relative;
    padding: 0 0 60px 0;
}

.brand-item {
    text-align: center; 
}

.brand-item img {
    max-width: 100%;
    margin: auto; 
}



/**********************************/
/********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding: 60px 0;
}

.contact .contact-info .section-header h3,
.contact .contact-info .section-header p {
    text-align: left;
}

.contact .contact-info .section-header p {
    font-weight: 400;
}

.contact .contact-info .section-header h3::after {
    left: 0;
}

.contact .contact-info img {
    max-width: 100%;
    margin-bottom: 15px;
}

.contact .contact-info h4 {
    margin-bottom: 10px;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
}

.contact .contact-info h4 i {
    color: #FF0000;
    margin-right: 5px;
}

.contact .social {
    position: relative;
    width: 100%;
}

.contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 1px solid #FF0000;
}

.contact .social a i {
    color: #FF0000;
}

.contact .social a:hover {
    background: #FF0000;
}

.contact .social a:hover i {
    color: #ffffff;
}

.contact .form {
    color: #666666;
}

@media (max-width: 767.98px) {
    .contact .form {
        margin-bottom: 30px;
    }
}

.contact .form input,
.contact .form textarea {
    color: #666666;
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border: 1px solid #FF0000;
    border-radius: 0;
    box-shadow: none;
}

.contact .form input:focus,
.contact .form textarea:focus {
    box-shadow: none;
}

.contact .form button[type="submit"] {
    padding: 6px 25px 7px 25px;
    color: #FF0000;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 0;
    border: 1px solid #FF0000;
    background: #ffffff;
}

.contact .form button[type="submit"]:hover {
    background: #FF0000;
    color: #FFFFFF;
}



/**********************************/
/****** Register & Login CSS ******/
/**********************************/
.login {
    position: relative;
    padding: 60px 0;
}



/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
    position: relative;
    padding: 60px 0 0 0;
    background: #FF0000;
}

@media (min-width: 992px) {
    .footer .container-fluid {
        max-width: 95%;
    }
}

.footer .footer-widget {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.footer .footer-widget h1 {
    color: #ffffff;
    margin-bottom: 18px; 
}

.footer .footer-widget .title {
    color: #ffffff;
    white-space: nowrap;
}

.footer .footer-widget p {
    color: #ffffff;
}

.footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget ul li {
    margin-bottom: 12px; 
}

.footer .footer-widget ul li:last-child {
    margin-bottom: 0; 
}

.footer .footer-widget ul li a {
    color: #ffffff;
    white-space: nowrap;
    display: block;
    line-height: 23px;
}

.footer .footer-widget ul li a::before {
    content: '\f061';
    font-family: 'FontAwesome';
    padding-right: 5px;
}

.footer .footer-widget ul li a:hover {
    padding-left: 10px; 
}

.footer .contact-info p {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
}

.footer .contact-info p i {
    color: #ffffff;
    margin-right: 5px;
}

.footer .social {
    position: relative;
    width: 100%;
}

.footer .social a {
    display: inline-block;
    margin: 10px 5px 0 0;
    width: 35px;
    height: 35px;
    padding: 2px 0;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ffffff;
}

.footer .social a i {
    color: #ffffff;
}

.footer .payment {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #4977bf;
}

@media (min-width: 992px) {
    .footer .payment {
        max-width: 80%;
        margin: 0 auto;
    }
}

.footer .payment-method,
.footer .payment-security {
    overflow: hidden;
}

.footer .payment-method {
    text-align: left;
}

.footer .payment-security {
    text-align: right;
}

@media (max-width: 768.98px) {
    .footer .payment-method,
    .footer .payment-security {
        text-align: center; 
    } 
}

.footer .payment-method p,
.footer .payment-security p{
    display: inline-block;
    margin: 0 10px 0 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
}

.footer .payment-method img,
.footer .payment-security img {
    height: 25px;
}


/* Reset para el cotizador */
.cotizador-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Contenedor principal - más compacto */
.cotizador-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1120px;
    margin: 20px auto 60px auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(220, 38, 38, 0.15);
    overflow: hidden;
}

/* Header compacto */
.cotizador-header {
    background: red;
    color: white;
    padding: 20px;
    text-align: center;
}

.cotizador-header h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.cotizador-header p {
    font-size: 13px;
    opacity: 0.9;
}

/* Content compacto */
.cotizador-content {
    padding: 20px;
}

/* Secciones con animación de expansión */
.cotizador-section {
    margin-bottom: 0;
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cotizador-section.cotizador-active {
    display: block;
    opacity: 1;
    max-height: 10000px;
    margin-bottom: 20px;
    animation: cotizadorExpandir 0.5s ease-out;
}

@keyframes cotizadorExpandir {
    from { 
        opacity: 0;
        transform: translateY(-15px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Título de sección más compacto */
.cotizador-section-title {
    font-size: 17px;
    color: #dc2626;
    margin-bottom: 12px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #fee2e2;
}

/* Option groups compactos */
.cotizador-option-group {
    margin-bottom: 15px;
}

.cotizador-option-label {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Info box más pequeño */
.cotizador-info-box {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 12px;
    color: #92400e;
    line-height: 1.5;
}

.cotizador-info-box.cotizador-info-blue {
    background: #dbeafe;
    border-left-color: #3b82f6;
    color: #1e3a8a;
}

.cotizador-info-box strong {
    display: block;
    margin-bottom: 4px;
    color: #78350f;
    font-size: 13px;
}

.cotizador-info-box.cotizador-info-blue strong {
    color: #1e40af;
}

/* Radio buttons más prominentes */
.cotizador-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.cotizador-radio-option {
    position: relative;
}

.cotizador-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.cotizador-radio-option label {
    display: block;
    padding: 14px 18px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.cotizador-radio-option input[type="radio"]:checked + label {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.cotizador-radio-option label:hover {
    border-color: #dc2626;
    background: #fff;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

/* Select compacto */
.cotizador-select {
    width: 100%;
    padding: 11px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.cotizador-select:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
}

/* Checkbox más compacto */
.cotizador-checkbox-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.cotizador-checkbox-option:hover {
    border-color: #dc2626;
    background: #fff;
}

.cotizador-checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #dc2626;
}

.cotizador-checkbox-option label {
    cursor: pointer;
    font-size: 13px;
    color: #374151;
    flex: 1;
}

/* Counter compacto */
.cotizador-counter-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
}

.cotizador-counter-label {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.cotizador-unit-price {
    color: #dc2626;
    font-size: 11px;
    display: block;
    margin-top: 2px;
    font-weight: 600;
}

.cotizador-counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cotizador-counter-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #dc2626;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.cotizador-counter-btn:hover {
    background: #b91c1c;
    transform: scale(1.08);
}

.cotizador-counter-btn:active {
    transform: scale(0.95);
}

.cotizador-counter-value {
    font-size: 17px;
    font-weight: bold;
    color: #dc2626;
    min-width: 25px;
    text-align: center;
}

/* Input group compacto */
.cotizador-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
}

.cotizador-input-group label {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    min-width: 110px;
}

.cotizador-input-number {
    flex: 1;
    padding: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #dc2626;
}

.cotizador-input-number:focus {
    outline: none;
    border-color: #dc2626;
}

/* Accessories list compacto */
.cotizador-accessories-list {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
}

.cotizador-accessory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 12px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.cotizador-accessory-item:last-child {
    border-bottom: none;
}

.cotizador-accessory-name {
    font-weight: 500;
}

.cotizador-accessory-price {
    color: #dc2626;
    font-weight: 600;
}

/* Price display compacto */
.cotizador-price-display {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
}

.cotizador-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    color: #374151;
}

.cotizador-price-item.cotizador-price-total {
    border-top: 2px solid #dc2626;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #dc2626;
}

/* Botones compactos */
.cotizador-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cotizador-btn-primary {
    background: #dc2626;
    color: white;
    margin-bottom: 8px;
}

.cotizador-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cotizador-btn-secondary {
    background: #f9fafb;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.cotizador-btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.cotizador-btn-back {
    background: #6b7280;
    color: white;
    margin-bottom: 8px;
}

.cotizador-btn-back:hover {
    background: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .cotizador-container {
        max-width: 95%;
        margin: 15px auto;
    }

    .cotizador-header {
        padding: 15px;
    }

    .cotizador-header h1 {
        font-size: 18px;
    }

    .cotizador-header p {
        font-size: 12px;
    }

    .cotizador-content {
        padding: 15px;
    }

    .cotizador-section-title {
        font-size: 16px;
    }

    .cotizador-radio-group {
        grid-template-columns: 1fr;
    }

    .cotizador-radio-option label {
        font-size: 13px;
        padding: 12px;
    }

    .cotizador-option-label,
    .cotizador-counter-label,
    .cotizador-checkbox-option label {
        font-size: 12px;
    }

    .cotizador-info-box {
        font-size: 11px;
        padding: 8px 10px;
    }

    .cotizador-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cotizador-input-group label {
        min-width: auto;
    }

    .cotizador-accessory-item {
        font-size: 11px;
    }

    .cotizador-price-item {
        font-size: 12px;
    }

    .cotizador-price-item.cotizador-price-total {
        font-size: 16px;
    }

    .cotizador-btn {
        font-size: 14px;
        padding: 11px;
    }
}

@media (max-width: 480px) {
    .cotizador-container {
        margin: 10px;
    }

    .cotizador-header {
        padding: 12px;
    }

    .cotizador-header h1 {
        font-size: 16px;
    }

    .cotizador-content {
        padding: 12px;
    }

    .cotizador-counter-controls {
        gap: 10px;
    }

    .cotizador-counter-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .cotizador-counter-value {
        font-size: 15px;
    }
}

/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/
.footer-bottom {
    position: relative;
    padding: 25px 0;
    background: #ffffff;
}

.footer-bottom .copyright {
    text-align: left;
}

.footer-bottom .template-by {
    text-align: right;
}

.footer-bottom .copyright p,
.footer-bottom .template-by p {
    color: #666666;
    font-weight: 400;
    margin: 0;
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
    font-weight: 600;
}

@media (max-width: 768.98px) {
    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center; 
    } 
}