/*
Theme Name: CWP Business Server
Description: Diseña crea e imagina.
Author: CodeForce
Version: 1.3.1
Text Domain: cwpbusinessserver
*/

/* ==============================================
   VARIABLES Y RESET BÁSICO
   ============================================== */
:root {
    --primary-blue: #173b82;
    --primary-orange: #ff7900;
    --dark-blue: #0b2239;
    --light-bg: #f5f7fa;
    --text-dark: #1a1a1a;
    --text-grey: #555555;
    --white: #ffffff;
}

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

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 4%;
    margin: 0 auto;
}

.bg-light-grey {
    background-color: var(--light-bg);
}

.hero-section, 
.products-section, 
.services-section, 
.brands-section, 
.certifications-section, 
.sectors-section,
.cta-section,
.aliados-section,
.quienes-somos-section,
.hero-cotizador-section,
.cta-taller-section,
.site-footer {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
}

/* ==============================================
   BOTÓN BROCHURE EN CABECERA (HEADER)
   ============================================== */
.btn-header-brochure {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-header-brochure:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 121, 0, 0.3);
}

/* ==============================================
   SECCIÓN HERO
   ============================================== */
.hero-section {
    transition: background 1s ease-in-out;
    background: linear-gradient(rgba(11, 34, 57, 0.4), rgba(11, 34, 57, 0.4)), url('https://via.placeholder.com/1920x800/333/fff?text=Fondo+Ascensor') no-repeat center center/cover;
    height: 100vh;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 92%; 
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 50px;
    text-align: left;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    max-width: 900px;
}

.hero-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 750px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e65c00;
}

.hero-navigation {
    position: absolute;
    right: 4%;
    bottom: 80px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.hero-bottom-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-bottom-bar {
    display: flex;
    align-items: flex-end;
    height: 60px;
}

.cat-item {
    flex: 1;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-item:hover {
    height: 60px;
    font-size: 0.9rem;
}

.bg-orange { background-color: var(--primary-orange); }
.bg-black { background-color: #111111; }
.bg-blue { background-color: var(--primary-blue); }
.bg-green { background-color: #80c224; }

/* ==============================================
   SECCIÓN PRODUCTOS
   ============================================== */
.products-section {
    padding: 80px 0;
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.product-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.view-products {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow-circle {
    background-color: var(--primary-orange);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ==============================================
   SECCIÓN SERVICIOS
   ============================================== */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.separator {
    width: 30%;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 0 auto 50px auto;
}

.left-sep {
    margin: 15px 0 30px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service-card .card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    color: var(--dark-blue);
    display:none !important;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ==============================================
   SECCIÓN MARCAS EXCLUSIVAS (DISEÑO REPARADO SLIDER)
   ============================================== */
.brands-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9fbfd;
}

.brands-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-items {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    overflow-x: hidden;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    padding: 10px 0;
}

.brand-card {
    background-color: var(--white);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
    min-width: 220px;
    height: 120px;
}

.brand-card img {
    width: 100%;
    height: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.orange-btn {
    flex-shrink: 0;
}

/* ==============================================
   SECCIÓN CERTIFICACIONES (NUEVO DISEÑO LIMPIO Y CENTRADO)
   ============================================== */
.certifications-section {
    padding: 100px 0;
    background-color: var(--white);
}

.cert-wrap {
    max-width: 1050px; 
    width: 85%;
    margin: 0 auto;
}

.cert-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.cert-left {
    flex: 0 0 45%; 
}

.cert-left h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cert-left p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 25px;
}

.cert-links {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.cert-links strong {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.link-orange {
    color: var(--primary-orange);
    text-decoration: underline;
    font-weight: 800;
    font-size: 1rem;
    transition: color 0.3s;
}

.link-orange:hover {
    color: var(--dark-blue);
}

.sgs-logos {
    display: none; 
}

.cert-right {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
}

.cert-right img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==============================================
   SECCIÓN SECTORES QUE ATENDEMOS
   ============================================== */
.sectors-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sector-card {
    background-color: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-orange);
}

.sector-card h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
}

.sector-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

/* ==============================================
   SECCIÓN CALL TO ACTION - PROYECTO INDUSTRIAL
   ============================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* ==============================================
   NUEVO WIDGET 1: ALIADOS
   ============================================== */
.aliados-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.aliados-header h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    font-weight: 900;
    margin-bottom: 50px;
}

.aliados-header h2 .highlight {
    color: var(--primary-orange);
}

.aliados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.aliado-card {
    background-color: var(--white);
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.aliado-card:hover {
    transform: translateY(-10px);
}

.aliado-icon {
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliado-icon img {
    max-height: 100%;
    max-width: 50px;
    object-fit: contain;
}

.aliado-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   NUEVO WIDGET 2: QUIÉNES SOMOS
   ============================================== */
.quienes-somos-section {
    padding: 100px 0;
    background-color: var(--white);
}

.qs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qs-content h2 {
    font-size: 3.2rem;
    color: var(--dark-blue);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.qs-content h2 .highlight {
    color: var(--primary-orange);
}

.qs-content p {
    font-size: 1.05rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 25px;
}

.qs-certifications {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.qs-cert {
    text-align: center;
}

.qs-cert img {
    width: 65px;
    height: auto;
    margin-bottom: 10px;
}

.qs-cert strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-blue);
    font-weight: 800;
}

.qs-cert span {
    font-size: 0.85rem;
    color: var(--text-grey);
}

.qs-image-wrapper {
    position: relative;
    padding: 20px;
}

.qs-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background-color: var(--dark-blue);
    border-radius: 20px;
    z-index: 1;
}

.qs-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: var(--primary-orange);
    border-radius: 20px;
    z-index: 1;
}

.qs-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: block;
}

/* ==============================================
   NUEVO WIDGET 3: HERO COTIZADOR TALLER
   ============================================== */
.hero-cotizador-section {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-cotizador-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 34, 57, 0.85); /* Azul oscuro translúcido */
    z-index: 1;
}

.hero-cotizador-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hc-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hc-content h1 .highlight {
    color: var(--primary-orange);
}

.hc-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
    color: #e0e5ea;
}

.hc-buttons {
    display: flex;
    gap: 15px;
}

.btn-dark {
    background-color: #123052;
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-dark:hover {
    background-color: #0b1c31;
}

.hc-form-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--text-dark);
}

.hc-form-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hc-form-box p {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 25px;
}

.hc-form-group {
    margin-bottom: 15px;
    position: relative;
}

.hc-form-group input, 
.hc-form-group select, 
.hc-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.hc-form-group input:focus, 
.hc-form-group select:focus, 
.hc-form-group textarea:focus {
    border-color: var(--primary-orange);
}

.hc-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.hc-btn-submit {
    width: 100%;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.hc-btn-submit:hover {
    background-color: #e65c00;
}

/* ==============================================
   NUEVO WIDGET 4: CTA TALLER
   ============================================== */
.cta-taller-section {
    padding: 80px 0;
    background: black;
    text-align: center;
    color: var(--white);
}

.cta-taller-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-taller-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-taller-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ==============================================
   PIE DE PÁGINA (FOOTER)
   ============================================== */
.site-footer {
    border-top: 1px solid #eaeaea;
    padding: 60px 0 0 0;
    background-color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.flags {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.footer-col h4 {
    color: var(--dark-blue);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-orange);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.contact-info .phone {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: bold;
}

.email-link {
    color: var(--primary-blue);
    margin-top: 10px;
}

.mt-20 {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.bg-blue-social { background-color: #2b568c; }
.bg-orange-social { background-color: var(--primary-orange); }

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding: 25px 0;
    text-align: center;
    background-color: var(--white);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--dark-blue);
}

/* ==============================================
   RESPONSIVO Y MÓVIL EXACTO
   ============================================== */
@media (max-width: 992px) {
    .btn-header-brochure {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-left: 10px;
    }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .aliados-grid { grid-template-columns: repeat(2, 1fr); }
    .qs-grid { grid-template-columns: 1fr; }
    .hero-cotizador-grid { grid-template-columns: 1fr; }
    
    /* Responsive Certificaciones */
    .cert-grid { 
        flex-direction: column; 
        gap: 40px; 
    }
    .cert-left, .cert-right {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }
    .cert-right {
        justify-content: center;
    }
    .cert-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .btn-header-brochure {
        display: none; /* En celular se oculta para no deformar el menú, ideal moverlo dentro del nav móvil */
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .hero-navigation {
        bottom: 100px;
        right: 4%;
    }

    .hero-bottom-bar-wrapper {
        bottom: 0;
    }
    
    .hero-bottom-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cat-item {
        flex: 0 0 auto;
        padding: 0 20px;
        white-space: nowrap;
    }
    
    .products-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .aliados-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-flex { flex-direction: column; gap: 15px; }
    
    .cert-left h2 {
        font-size: 2.5rem;
    }

    .cta-content h2, .cta-taller-content h2 { 
        font-size: 2rem; 
    }
    .cta-content p, .cta-taller-content p { 
        font-size: 1rem; 
    }
    
    .aliados-header h2 { font-size: 2.2rem; }
    .qs-content h2 { font-size: 2.5rem; text-align: center; }
    .qs-content p { text-align: center; }
    .qs-certifications { justify-content: center; }
    .hc-content h1 { font-size: 2.5rem; text-align: center; }
    .hc-content p { text-align: center; margin: 0 auto 30px auto; }
    .hc-buttons { justify-content: center; flex-direction: column; }

    /* ==============================================
       AJUSTE EXACTO SLIDER MARCAS EN MÓVIL (RECUPERADO)
       ============================================== */
    .brands-slider {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 20px;
    }
    
    .brands-slider .brand-items {
        order: 1; 
        width: 100%;
        margin-bottom: 10px;
        gap: 0; 
        scroll-snap-type: x mandatory; 
    }
    
    .brands-slider .brand-card {
        min-width: 100%; 
        scroll-snap-align: center; 
        height: 150px;
        padding: 30px;
    }
    
    .brands-slider .brand-card img {
        max-height: 100px;
    }
    
    .brands-slider .nav-btn.prev-brand {
        order: 2; 
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .brands-slider .nav-btn.next-brand {
        order: 3; 
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}