/* css/public.css - Estilos Premium para SUMCONCE.com */

:root {
    --primary-color: #162c3f; /* Azul Oscuro SUMCONCE */
    --primary-light: #223f59;
    --accent-color: #21a0d2; /* Celeste SUMCONCE */
    --accent-hover: #1782ac;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --font-main: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background: rgba(22, 44, 63, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    transition: var(--transition);
}

.nav-logo img {
    height: 45px;
    display: block;
    filter: brightness(0) invert(1); /* Hace el logo blanco para que resalte en el fondo azul oscuro */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-color);
}

.btn-login {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(33, 160, 210, 0.3);
}

.btn-login:hover {
    background: var(--white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* HERO HOME */
.hero-home {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1b354d 0%, #0d1a26 100%);
    padding: 120px 20px 80px;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/nuevo_gomix.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.badge-exclusivo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33, 160, 210, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-home h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-home p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* PAGE HEADER (Internal pages) */
.page-header {
    background: linear-gradient(135deg, #162c3f 0%, #0c1a26 100%);
    color: var(--white);
    padding: 140px 50px 60px;
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header p {
    font-size: 1.15rem;
    color: #cbd5e1;
}

/* ALIANZA SECTION */
.alianza-section {
    padding: 100px 50px;
    background: var(--white);
}

.alianza-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.alianza-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.alianza-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.alianza-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-item i {
    font-size: 24px;
    color: var(--accent-color);
    background: rgba(33, 160, 210, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.point-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.point-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.alianza-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* SOLUCIONES PREVIEW & GENERAL GRIDS */
.soluciones-preview {
    padding: 100px 50px;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card-preview {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(33, 160, 210, 0.2);
}

.card-image-container {
    position: relative;
    height: 220px;
    background: #e2e8f0;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-md);
}

.status-badge.local { background: #16a34a; } /* Verde - Stock Local */
.status-badge.short { background: #ea580c; } /* Naranja - Corto Plazo */
.status-badge.sixty { background: #2563eb; } /* Azul - 60 Días */

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    height: 66px;
    overflow: hidden;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.specs span {
    font-size: 11px;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-tds {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-tds:hover {
    background: var(--accent-color);
}

/* PROCESO SECTION */
.proceso-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 50px;
    text-align: center;
}

.proceso-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.proceso-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.proceso-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.proceso-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.step-num {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 20px;
    background: rgba(33, 160, 210, 0.15);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.proceso-step h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.proceso-step p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

/* CONTACT CONTAINER (Lead Form) */
.contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    background: rgba(33, 160, 210, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.info-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.info-item p strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent-color);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--font-main);
    box-sizing: border-box;
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(33, 160, 210, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(33, 160, 210, 0.3);
}

.btn-submit:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(22, 44, 63, 0.3);
}

/* ALERTS */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.alert.danger {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

/* PRODUCT TECHNICAL CATALOG */
.catalog-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 50px;
}

.filter-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    border: 1px solid rgba(0,0,0,0.02);
}

.product-img-container {
    position: relative;
    background: #ffffff;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.product-info-detail {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info-detail h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.product-info-detail .desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
}

.technical-specs {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.technical-specs strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 14px;
}

.technical-specs ul {
    list-style: none;
}

.technical-specs ul li {
    font-size: 13.5px;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.technical-specs ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.product-actions {
    display: flex;
    gap: 15px;
}

.btn-download {
    flex: 1;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-download:hover {
    background: var(--accent-color);
}

.btn-quote {
    flex: 1;
    text-align: center;
    background: var(--accent-color);
    color: var(--white);
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-quote:hover {
    background: var(--primary-color);
}

/* FOOTER NEW */
footer {
    background: #0d1a26;
    color: var(--white);
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 50px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #cbd5e1;
    font-size: 14px;
    max-width: 320px;
}

.footer-contact h3,
.footer-links-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-contact p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--accent-color);
    width: 20px;
}

.footer-links-section {
    display: flex;
    flex-direction: column;
}

.footer-links-section a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #64748b;
}

/* WIDGETS INTERACTIVOS DE LA PÁGINA DE INICIO */

.seccion-interactiva {
    padding: 100px 50px;
    background: var(--white);
    border-top: 1px solid #f1f5f9;
}

.interactivo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

/* CALCULADORA DE CONSUMO */
.calculadora-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
}

.calculadora-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.calc-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    font-family: var(--font-main);
    transition: var(--transition);
}

.calc-tab-btn:hover {
    color: var(--primary-color);
    background: rgba(22, 44, 63, 0.05);
}

.calc-tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.calc-results {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-result-row span {
    font-weight: 500;
    color: var(--text-light);
}

.calc-result-row strong {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 800;
}

.calc-logistica-alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-logistica-alert.local {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.calc-logistica-alert.short {
    background: #ffedd5;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

.calc-logistica-alert.sixty {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ASISTENTE DE SOLUCIONES */
.asistente-card {
    background: var(--bg-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.asistente-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.asist-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.asist-opt-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.asist-opt-btn:hover {
    border-color: var(--accent-color);
    background: rgba(33, 160, 210, 0.03);
    transform: translateX(4px);
}

.asist-opt-btn.active {
    border-color: var(--accent-color);
    background: var(--primary-color);
    color: var(--white);
}

.asist-result-box {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #cbd5e1;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asist-placeholder {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.asist-product-info h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.asist-product-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.asist-product-actions {
    display: flex;
    gap: 10px;
}

.btn-asist-tds {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-asist-tds:hover {
    background: var(--accent-color);
}

.btn-asist-quote {
    flex: 1;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-asist-quote:hover {
    background: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .alianza-container { grid-template-columns: 1fr; }
    .product-item { grid-template-columns: 1fr; }
    .product-img-container { height: 250px; }
    .interactivo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-home h1 { font-size: 2.2rem; }
    .navbar { padding: 15px 20px; }
    .contact-container { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .calc-inputs { grid-template-columns: 1fr; }
}
