/* ============================================
   TRACTOFRENOS MARTINEZ
   Colores principales:
   - Rojo TFM: #C1272D
   - Rojo claro: #d63a40
   - Gris oscuro: #1a1a1a
   - Blanco: #ffffff
============================================ */

/* === Variables === */
:root {
    --color-primary: #C1272D;
    --color-primary-light: #d63a40;
    --color-secondary: #636e72;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #444;
    --font-family: 'Open Sans', sans-serif;
    --font-heading: 'Jura', sans-serif;
}

/* === Reset y Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Las animaciones fade-left/fade-right de AOS desplazan los elementos 100px en
   horizontal mientras esperan a entrar en pantalla, lo que genera scroll lateral
   y una franja en blanco a la derecha. Se recorta aqui y no en html/body porque
   el header es sticky y overflow en la raiz lo rompe. 'clip' en vez de 'hidden'
   para no convertir el wrapper en contenedor de scroll. */
.wrapper {
    min-height: 100vh;
    background-color: var(--color-white);
    overflow-x: hidden;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* === Header/Navbar === */
.header-tfm {
    background-color: var(--color-dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header-tfm .navbar {
    padding: 0.8rem 0;
}

.logo-tfm {
    max-height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-tfm:hover {
    transform: scale(1.05);
}

.header-tfm .nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.header-tfm .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-tfm .nav-link:hover::after,
.header-tfm .nav-link.active::after {
    width: 80%;
}

.header-tfm .nav-link:hover,
.header-tfm .nav-link.active {
    color: var(--color-primary) !important;
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: var(--color-white) !important;
    border: 2px solid #25D366;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-small {
    position: relative;
    height: 300px;
    background-image: url('../images/bn1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
}

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

.hero-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-hero-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--color-primary) !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    background-color: var(--color-primary-light) !important;
    border-color: var(--color-primary-light) !important;
    color: var(--color-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 39, 45, 0.4);
}

.btn-hero-secondary {
    background-color: transparent !important;
    color: var(--color-white) !important;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--color-white) !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === Section Titles === */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
}

/* === Bienvenida / Intro Section === */
.bienvenida-section {
    background-color: var(--color-white);
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 0;
}

/* === Checkmark list === */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-text);
}

.check-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* === Servicios Section === */
.servicios-section {
    background-color: var(--color-white);
}

.servicio-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.servicio-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.servicio-img {
    height: 220px;
    overflow: hidden;
}

.servicio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servicio-card:hover .servicio-img img {
    transform: scale(1.1);
}

.servicio-content {
    padding: 1.5rem;
}

.servicio-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.servicio-description {
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* === A-Tech Distributor Section === */
.atech-section {
    background-color: var(--color-light);
    border-left: 4px solid var(--color-primary);
}

.atech-section img {
    max-width: 200px;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-primary {
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--color-white) !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    background-color: transparent !important;
    color: var(--color-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background-color: transparent !important;
    color: var(--color-white) !important;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--color-white) !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* === WhatsApp Button (general) === */
.btn-whatsapp {
    background-color: #25D366 !important;
    color: var(--color-white) !important;
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid #25D366 !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    color: var(--color-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* === Footer === */
.footer-tfm {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding-top: 3rem;
}

.logo-footer {
    max-width: 130px;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* === Nosotros Page === */
.nosotros-content {
    background-color: var(--color-white);
}

.valor-card {
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.valor-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.valor-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.valor-text {
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

.experiencia-section {
    background-color: var(--color-light);
    border-radius: 10px;
}

.experiencia-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.experiencia-label {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 500;
}

/* === Venta Page === */
.producto-grid-card {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    overflow: hidden;
}

.producto-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: var(--color-primary);
}

.producto-grid-card .card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.sidebar-panel {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #eee;
}

.sidebar-panel h5 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
}

/* === Recoleccion Page === */
.recoleccion-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.recoleccion-hero .hero-overlay {
    background: rgba(193, 39, 45, 0.8);
}

.ideal-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.ideal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.ideal-card i {
    font-size: 2rem;
    color: var(--color-primary);
}

/* === Reparacion Page === */
.ventaja-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.ventaja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: var(--color-primary);
}

.ventaja-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.ahorro-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 10px;
    padding: 3rem;
    color: var(--color-white);
    text-align: center;
}

.ahorro-highlight h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
}

/* === Catalogo Page === */
.catalogo-hero {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #333 100%);
    display: flex;
    align-items: center;
}

.catalogo-sidebar {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    padding: 1.5rem;
    border: 1px solid #eee;
}

.catalogo-sidebar h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.catalogo-sidebar .list-group-item {
    border: none;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalogo-sidebar .list-group-item:hover,
.catalogo-sidebar .list-group-item.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 5px;
}

.producto-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: var(--color-primary);
}

.producto-card-img {
    height: 200px;
    overflow: hidden;
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-card-img img {
    transform: scale(1.05);
}

.producto-card-body {
    padding: 1.2rem;
}

.producto-card-categoria {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.producto-card-nombre {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0.5rem 0;
}

.producto-card-precio {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.producto-card-precio-original {
    font-size: 0.9rem;
    color: var(--color-secondary);
    text-decoration: line-through;
}

.btn-ver-mas {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-ver-mas:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* === Producto Detail Page === */
.producto-detalle-img {
    background: var(--color-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.producto-detalle-img img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.producto-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-thumbnail:hover,
.producto-thumbnail.active {
    border-color: var(--color-primary);
}

.producto-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.badge-stock {
    background-color: #28a745;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.badge-no-stock {
    background-color: #dc3545;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.precio-detalle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.precio-original-detalle {
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-decoration: line-through;
}

.ahorro-badge {
    background-color: var(--color-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tabla-especificaciones {
    width: 100%;
}

.tabla-especificaciones td {
    padding: 0.7rem;
    border-bottom: 1px solid #eee;
}

.tabla-especificaciones td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    width: 40%;
}

/* === Contacto Page === */
.contacto-section {
    background-color: var(--color-white);
}

.contacto-info-card {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 10px;
}

.contacto-icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contacto-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contacto-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.sucursal-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.sucursal-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.sucursal-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
}

.contacto-form-card {
    background-color: var(--color-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.form-control-lg {
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(193, 39, 45, 0.15);
}

.btn-contacto-submit {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-contacto-submit:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 39, 45, 0.3);
    color: var(--color-white);
}

/* === Breadcrumb === */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--color-white);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* === Responsive === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }

    .hero-section-small {
        height: 220px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        display: block;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .experiencia-number {
        font-size: 2.5rem;
    }

    .ahorro-highlight h2 {
        font-size: 2.5rem;
    }

    .precio-detalle {
        font-size: 1.5rem;
    }
}

/* === Bootstrap Overrides === */
.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.rounded {
    border-radius: 10px !important;
}
