/* ======================================
   TOYOTA TOMEBAMBA - ESTILOS PRINCIPALES
   Desarrollado por: Carlos David Donoso Cordero (ddchack) - 2025
   Colores corporativos: Negro y Rojo Toyota
   ====================================== */

:root {
    --toyota-red: #e60012;
    --toyota-dark: #1a1a1a;
    --toyota-black: #000000;
    --toyota-gray: #666;
    --toyota-light-gray: #f8f9fa;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 90px; /* Espacio para el menú fijo */
}

/* ========================================
   MENÚ SUPERIOR FIJO (STICKY) - FONDO BLANCO
   ======================================== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--toyota-red);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 1);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-custom .navbar-brand img {
    height: 70px;
    max-height: 70px;
    transition: all 0.3s;
}

.navbar-custom.scrolled .navbar-brand img {
    height: 60px;
}

.navbar-custom .nav-link {
    color: var(--toyota-dark);
    font-weight: 600;
    margin: 0 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.navbar-custom .nav-link:hover {
    color: var(--toyota-red);
    background: rgba(230, 0, 18, 0.05);
}

.navbar-custom .nav-link.active {
    color: var(--toyota-red);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--toyota-red);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: 2px solid var(--toyota-red);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(230, 0, 18, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(230, 0, 18, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown en menú */
.navbar-custom .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--toyota-red);
    border-radius: 8px;
    padding: 0;
    margin-top: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-custom .dropdown-item {
    color: var(--toyota-dark);
    padding: 12px 20px;
    transition: all 0.3s;
}

.navbar-custom .dropdown-item:hover {
    background: var(--toyota-red);
    color: #fff;
}

/* ========================================
   SLIDER / CAROUSEL
   ======================================== */
.carousel-item {
    height: 500px;
    background: #333;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--toyota-red);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--toyota-red);
    border-radius: 50%;
    padding: 20px;
}

/* ========================================
   CARDS DE VEHÍCULOS
   ======================================== */
.vehicle-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    background: white;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(230, 0, 18, 0.2);
    border-color: var(--toyota-red);
}

.vehicle-card .card-img-container {
    height: 200px;
    background: linear-gradient(180deg, var(--toyota-light-gray) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.vehicle-card .card-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--toyota-red) 0%, var(--toyota-black) 100%);
}

.vehicle-card .card-img-top {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.vehicle-card .card-body {
    padding: 20px;
}

.vehicle-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--toyota-dark);
    min-height: 45px;
    margin-bottom: 15px;
    text-align: center;
}

.vehicle-card .specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    min-height: 90px;
}

.vehicle-card .specs-list li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.vehicle-card .specs-list li i {
    color: var(--toyota-red);
    margin-right: 8px;
    width: 16px;
}

.vehicle-card .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--toyota-red);
    text-align: center;
    margin: 15px 0;
    min-height: 30px;
}

/* ========================================
   BADGES DE GARANTÍA
   ======================================== */
.badge-garantia {
    background: linear-gradient(135deg, var(--toyota-black) 0%, var(--toyota-dark) 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--toyota-red);
}

.badge-hibrido {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    color: white;
    border: 1px solid var(--toyota-red);
}

/* ========================================
   TABS DE SERVICIOS
   ======================================== */
.services-tabs .nav-tabs {
    border: none;
    margin-bottom: 30px;
}

.services-tabs .nav-link {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin: 0 5px 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
    color: var(--toyota-dark);
}

.services-tabs .nav-link:hover {
    border-color: var(--toyota-red);
    background: #fff;
    transform: translateY(-2px);
}

.services-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    color: white;
    border-color: var(--toyota-red);
}

.services-tabs .nav-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* ========================================
   WHATSAPP FLOTANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ========================================
   SECCIÓN DE VENTAJAS
   ======================================== */
.advantage-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
    border-top: 3px solid var(--toyota-red);
}

.advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 0, 18, 0.15);
}

.advantage-box i {
    font-size: 3rem;
    color: var(--toyota-red);
    margin-bottom: 20px;
}

/* ========================================
   FILTROS DE VEHÍCULOS
   ======================================== */
.filter-buttons {
    text-align: center;
    margin-bottom: 30px;
}

.filter-buttons .btn {
    margin: 5px;
    min-width: 120px;
    border-radius: 25px;
    font-weight: 600;
}

.filter-buttons .btn-primary {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    border: none;
}

.filter-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
}

.filter-buttons .btn-outline-primary {
    color: var(--toyota-red);
    border: 2px solid var(--toyota-red);
    background: white;
}

.filter-buttons .btn-outline-primary:hover {
    background: var(--toyota-red);
    color: white;
}

/* ========================================
   MODELOS DESTACADOS
   ======================================== */
.featured-model {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    border-top: 3px solid var(--toyota-red);
}

.featured-model:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 0, 18, 0.2);
}

.featured-model-img {
    height: 200px;
    background: var(--toyota-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.featured-model-img img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
}

/* ========================================
   HERO SECTION (MODELO.PHP)
   ======================================== */
.hero-modelo {
    background: linear-gradient(135deg, var(--toyota-black) 0%, var(--toyota-dark) 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-modelo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--toyota-red);
}

.hero-modelo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e60012" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-combustible {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.badge-gasolina {
    background: linear-gradient(135deg, var(--toyota-black) 0%, var(--toyota-dark) 100%);
    color: white;
    border: 2px solid var(--toyota-red);
}

/* ========================================
   IMAGEN PRINCIPAL (MODELO.PHP)
   ======================================== */
.imagen-principal-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 3;
    border-top: 4px solid var(--toyota-red);
}

.imagen-principal {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* ========================================
   PRECIO DESTACADO (MODELO.PHP)
   ======================================== */
.precio-destacado {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
}

.precio-destacado .precio-valor {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.precio-destacado .precio-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   BOTONES CTA
   ======================================== */
.btn-cotizar {
    background: white;
    border: 2px solid white;
    color: var(--toyota-red);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-cotizar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: var(--toyota-red);
    color: white;
    border-color: white;
}

.btn-comparar {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-comparar:hover {
    background: white;
    color: var(--toyota-red);
    transform: translateY(-2px);
}

/* ========================================
   TABS DE ESPECIFICACIONES (MODELO.PHP)
   ======================================== */
.specs-tabs {
    margin-top: 50px;
}

.specs-tabs .nav-tabs {
    border: none;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.specs-tabs .nav-link {
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    color: var(--toyota-gray);
    font-weight: 600;
    transition: all 0.3s;
}

.specs-tabs .nav-link:hover {
    background: var(--toyota-light-gray);
    color: var(--toyota-red);
}

.specs-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    color: white;
}

.specs-tabs .tab-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

/* ========================================
   CARDS DE ESPECIFICACIONES
   ======================================== */
.spec-card {
    background: var(--toyota-light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--toyota-red);
    transition: all 0.3s;
}

.spec-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-card h6 {
    color: var(--toyota-red);
    font-weight: 700;
    margin-bottom: 10px;
}

.spec-card p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--toyota-dark);
}

/* ========================================
   TABLA DE VARIANTES
   ======================================== */
.variantes-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.variantes-table table {
    margin: 0;
}

.variantes-table thead {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    color: white;
}

.variantes-table thead th {
    font-weight: 600;
    border: none;
    padding: 20px 15px;
}

.variantes-table tbody tr {
    transition: all 0.3s;
}

.variantes-table tbody tr:hover {
    background: var(--toyota-light-gray);
}

.variantes-table tbody td {
    padding: 20px 15px;
    vertical-align: middle;
}

/* ========================================
   GALERÍA DE IMÁGENES
   ======================================== */
.galeria-imagenes {
    margin-top: 50px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
    border-color: var(--toyota-red);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.galeria-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeria-item:hover::after {
    opacity: 1;
}

/* ========================================
   MODELOS RELACIONADOS
   ======================================== */
.modelo-relacionado {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border-top: 3px solid var(--toyota-red);
}

.modelo-relacionado:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(230, 0, 18, 0.2);
}

.modelo-relacionado img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 20px;
    background: var(--toyota-light-gray);
}

.modelo-relacionado .card-body {
    padding: 20px;
}

/* ========================================
   GARANTÍA BADGE
   ======================================== */
.garantia-badge {
    background: linear-gradient(135deg, var(--toyota-black) 0%, var(--toyota-dark) 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid var(--toyota-red);
}

.garantia-badge i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--toyota-red);
}

/* ========================================
   MODAL COMPARADOR
   ======================================== */
.modal-comparador .modal-dialog {
    max-width: 900px;
}

.comparador-header {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    color: white;
    padding: 25px;
    border-radius: 10px 10px 0 0;
}

.comparador-body {
    padding: 30px;
}

.modelo-select-card {
    background: var(--toyota-light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid var(--toyota-red);
}

.tabla-comparacion {
    margin-top: 30px;
}

.tabla-comparacion th {
    background: var(--toyota-dark);
    color: white;
    font-weight: 600;
    padding: 15px;
}

.tabla-comparacion td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.tabla-comparacion tr:hover {
    background: var(--toyota-light-gray);
}

/* ========================================
   TÍTULOS Y TEXTOS
   ======================================== */
.text-white-important {
    color: white !important;
}

/* ========================================
   SECCIONES OSCURAS
   ======================================== */
.bg-dark {
    background: linear-gradient(135deg, var(--toyota-black) 0%, var(--toyota-dark) 100%) !important;
}

section.bg-dark.text-white {
    background: linear-gradient(135deg, var(--toyota-black) 0%, var(--toyota-dark) 100%) !important;
    position: relative;
}

section.bg-dark.text-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--toyota-red);
}

/* ========================================
   BOTONES GENERALES
   ======================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--toyota-red) 0%, #c10010 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 0, 18, 0.4);
}

.btn-outline-primary {
    color: var(--toyota-red);
    border: 2px solid var(--toyota-red);
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    background: white;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--toyota-red);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-danger {
    color: var(--toyota-red);
    border: 2px solid var(--toyota-red);
    transition: all 0.3s;
}

.btn-outline-danger:hover {
    background: var(--toyota-red);
    color: white;
}

.btn-danger {
    background: var(--toyota-red);
    border: none;
}

.btn-danger:hover {
    background: #c10010;
}

/* ========================================
   BADGES
   ======================================== */
.badge-primary {
    background: var(--toyota-red);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
}

.badge-success {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
}

/* ========================================
   TARJETAS GENERALES
   ======================================== */
.card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--toyota-red);
}

.card .btn-link {
    color: var(--toyota-red);
    font-weight: 600;
    text-decoration: none;
}

.card .btn-link:hover {
    color: var(--toyota-dark);
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   ANIMACIÓN DE MENÚ
   ======================================== */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-custom {
    animation: slideDown 0.5s ease-out;
}

/* ========================================
   FIRMA OCULTA - ddchack
   ======================================== */
.ddchack-signature {
    display: none;
    visibility: hidden;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .carousel-item {
        height: 300px;
    }

    .navbar-custom .navbar-brand img {
        height: 50px;
    }

    .navbar-custom.scrolled .navbar-brand img {
        height: 45px;
    }

    .navbar-custom .nav-link {
        margin: 5px 0;
    }

    .vehicle-card .card-title {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .hero-modelo {
        padding: 40px 0 30px;
    }

    .imagen-principal-container {
        padding: 20px;
        margin-top: -30px;
    }

    .imagen-principal {
        max-height: 250px;
    }

    .precio-destacado .precio-valor {
        font-size: 2rem;
    }

    .btn-cotizar,
    .btn-comparar {
        width: 100%;
        margin-bottom: 10px;
    }

    .specs-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .specs-tabs .tab-content {
        padding: 20px;
    }

    .variantes-table {
        font-size: 0.85rem;
    }
}

/* Responsive para proceso 5S (5 columnas) */
@media (min-width: 992px) {
    .col-md-20pct {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991px) {
    .col-md-20pct {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-20pct {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* ========================================
   FIN DEL ARCHIVO CSS
   Desarrollado por: Carlos David Donoso Cordero (ddchack)
   ======================================== */