:root{
    --primary:#0D2B5B;
    --primary-dark:#071b3d;
    --accent:#25D366;
    --accent-dark:#1fa957;
    --text:#162231;
    --muted:#5f6b7a;
    --surface:#ffffff;
    --surface-soft:#f5f7fb;
    --border:rgba(13,43,91,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

body{
    background:linear-gradient(180deg, #f9fbff 0%, #f3f6fb 100%);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    font-family:"Segoe UI", Roboto, Arial, sans-serif;
}

.container{
    width:min(1100px, 92%);
    margin:0 auto;
}

.header{
    background:rgba(13,43,91,.96);
    backdrop-filter:blur(10px);
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,.14);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo img{
    height:70px;
    display:block;
}

.nav ul{
    display:flex;
    list-style:none;
    gap:24px;
    flex-wrap:wrap;
}

.nav a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.hero{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    color:#fff;
    text-align:center;
    padding:140px 20px;
    min-height:calc(100vh - 90px);
}

.hero::before{
    content:"";
    position:absolute;
    inset:-8px;
    background:
        linear-gradient(rgba(13,43,91,.82), rgba(8,26,53,.82)),
        url("../img/trabajos/ventanal en aluminio.jpeg") center/cover no-repeat;
    transform:translateZ(0);
    will-change:transform;
    z-index:-1;
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:1;
    width:min(900px, 92%);
    margin:0 auto;
}

.hero h1{
    font-size:clamp(2rem, 5vw, 3.8rem);
    margin-bottom:18px;
    text-shadow:0 18px 35px rgba(0,0,0,.28);
}

.hero p{
    font-size:1.15rem;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-subtitle{
    font-size:1.1rem;
    max-width:760px;
    margin:0 auto 24px;
    line-height:1.75;
    color:#eef5ff;
}

.hero-meta{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:32px;
}

.hero-meta span{
    background:rgba(255,255,255,.14);
    padding:10px 16px;
    border-radius:999px;
    font-size:0.95rem;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
}

.hero-buttons{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:14px 22px;
    border-radius:10px;
    font-weight:700;
    transition:.3s ease;
    -webkit-appearance:none;
    appearance:none;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:linear-gradient(135deg, var(--accent), var(--accent-dark));
    color:#fff;
    border:none;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(37,211,102,.25);
}

.btn-whatsapp{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.section{
    padding:80px 0;
}

.section-alt{
    background:var(--surface-soft);
}

.section h2,
.experiencia h2{
    text-align:center;
    color:#0D2B5B;
    margin-bottom:28px;
    font-size:clamp(1.6rem, 4vw, 2.4rem);
}

.section-intro{
    text-align:center;
    color:var(--muted);
    max-width:760px;
    margin:0 auto 30px;
    line-height:1.8;
}

.trust-strip{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:16px;
    margin:24px 0 36px;
}

.trust-item{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    border-radius:14px;
    padding:14px 16px;
    text-align:center;
    color:#eef5ff;
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px);
}

.porque-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.porque-card{
    background:#fff;
    border-radius:14px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.porque-card .icon{
    font-size:34px;
    margin-bottom:12px;
}

.porque-card h3{color:#0D2B5B; margin-bottom:8px}


.sistemas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    margin-top:40px;
}

.system-card{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    background:#fff;
    transition:.35s ease;
}

.system-card:hover{
    transform:translateY(-6px);
}

.system-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.system-card-content{
    padding:22px;
}

.system-card-content h3{
    margin-bottom:12px;
    color:#0d2b5b;
}

.system-card-content p{
    line-height:1.7;
    color:#5a6372;
}

.estadisticas{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:18px;
    width:min(1100px, 92%);
    margin:-35px auto 0;
    position:relative;
    z-index:5;
}

.stat{
    background:#fff;
    padding:24px;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    text-align:center;
}

.stat h3{
    font-size:2rem;
    color:#0D2B5B;
    margin-bottom:8px;
}

.experiencia{
    padding:70px 0 10px;
}

.experiencia p{
    width:min(900px, 92%);
    margin:0 auto;
    text-align:center;
    line-height:1.7;
    font-size:1.05rem;
}

.servicios-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.card{
    background:var(--surface);
    padding:24px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(11,29,58,.08);
    border:1px solid var(--border);
    animation:fadeUp .7s ease both;
}

.service-card{
    position:relative;
    overflow:hidden;
    transition:transform .3s ease, box-shadow .3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(11,29,58,.14);
}

.service-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg, rgba(13,43,91,.12), rgba(37,211,102,.16));
    font-size:1.25rem;
    margin-bottom:14px;
}

.project-highlight{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    max-width:760px;
    margin:0 auto 24px;
    padding:16px 20px;
    border-radius:16px;
    background:linear-gradient(135deg, rgba(13,43,91,.06), rgba(37,211,102,.08));
    border:1px solid rgba(13,43,91,.08);
    color:var(--primary);
}

.project-highlight span{
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    font-size:.8rem;
}

.project-highlight p{
    margin:0;
    color:var(--muted);
}


.card h3{
    color:#0D2B5B;
    margin-bottom:10px;
}

.card p{
    line-height:1.6;
}

.galeria{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.project-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:opacity .25s, transform .25s;
}

.project-card img{
    width:100%;
    display:block;
    transition:.35s ease;
    height:220px;
    object-fit:cover;
}

.project-card img:hover{
    transform:scale(1.05);
}

.project-card-content{
    padding:20px 22px 26px;
    display:flex;
    flex-direction:column;
    gap:12px;
    background:#f9fafb;
}

.project-card-content h3{
    margin:0;
    font-size:1.05rem;
    color:#0D2B5B;
    line-height:1.4;
}

.project-description{
    margin:0;
    color:#4f5d72;
    line-height:1.7;
    font-size:0.95rem;
}

@media (max-width: 768px){
    .project-card img{
        height:180px;
    }
}

.contacto{
    text-align:center;
}

.formulario{
    max-width:720px;
    margin:0 auto 20px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.formulario input,
.formulario select,
.formulario textarea{
    width:100%;
    padding:15px;
    border:1px solid #d6dce6;
    border-radius:12px;
    font-size:16px;
    background:#fff;
    box-shadow:inset 0 1px 2px rgba(0,0,0,.04);
    transition:border-color .2s ease, box-shadow .2s ease;
}

.formulario input:focus,
.formulario select:focus,
.formulario textarea:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(13,43,91,.12);
}

.formulario textarea{
    resize:vertical;
}

.llamar{
    display:inline-block;
    margin-top:8px;
    color:#0D2B5B;
    font-weight:700;
    text-decoration:none;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:90px; /* separarlo del widget de chat */
    background:linear-gradient(135deg, var(--accent), var(--accent-dark));
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 10px 22px rgba(0,0,0,.18);
    z-index:9999999; /* asegurarse que esté encima del chat */
    pointer-events:auto;
    display:flex;
    align-items:center;
    gap:8px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(16px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width: 768px){
    .header{
        flex-direction:column;
        gap:12px;
    }

    .nav ul{
        justify-content:center;
        gap:16px;
    }

    .hero{
        padding:110px 16px;
    }

    .project-highlight{
        flex-direction:column;
        align-items:flex-start;
    }
}.footer{
    background:#081A35;
    color:white;
    text-align:center;
    padding:50px 20px;
}

/* Carrusel: usar layout horizontal con scroll-snap para mejor visibilidad */
.sistemas-carousel-wrap{
    position:relative;
    padding:14px 0 28px;
}
.sistemas-carousel-wrap .sistemas-grid{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:8px 12px;
}
.sistemas-carousel-wrap .system-card{
    flex:0 0 300px;
    min-width:260px;
    scroll-snap-align:center;
}
.sistemas-carousel-wrap .system-card img{
    height:220px;
    object-fit:cover;
    width:100%;
    display:block;
}
.sistemas-carousel-wrap .carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.55);
    color:#fff;
    border:none;
    padding:10px 12px;
    border-radius:8px;
    cursor:pointer;
    z-index:20;
}
.sistemas-carousel-wrap .carousel-btn.prev{left:8px}
.sistemas-carousel-wrap .carousel-btn.next{right:8px}
.sistemas-carousel-wrap .sistemas-grid::-webkit-scrollbar{height:8px}
.sistemas-carousel-wrap .sistemas-grid::-webkit-scrollbar-thumb{background:rgba(0,0,0,.18);border-radius:6px}

@media (max-width:768px){
    .sistemas-carousel-wrap .system-card{flex:0 0 85%; min-width:220px}
    .sistemas-carousel-wrap .system-card img{height:180px}
}

.footer h3{
    margin-bottom:15px;
}

.footer p{
    margin-bottom:10px;
    line-height:1.6;
}

.footer hr{
    margin:25px auto;
    max-width:600px;
    border:none;
    border-top:1px solid rgba(255,255,255,.2);
}

.testimonios{
    background:linear-gradient(135deg, #f4f8fd 0%, #edf3f8 100%);
}

.testimonios-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.testimonio{
    background:white;
    padding:28px;
    border-radius:18px;
    box-shadow:0 14px 34px rgba(0,0,0,.08);
    border:1px solid rgba(13,43,91,.08);
}

.testimonial-rating{
    color:#f4b400;
    font-size:1.1rem;
    margin-bottom:12px;
    letter-spacing:.12em;
}

.testimonio p{
    margin-bottom:16px;
    line-height:1.7;
    color:var(--muted);
}

.testimonial-author{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.testimonial-author strong{
    color:var(--primary);
}

.testimonial-author span{
    color:#7a8594;
    font-size:.95rem;
}

.galeria{
    margin-bottom: 50px;
}

.project-card .project-card-content{
    padding:20px 22px 24px;
    background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.project-card .project-card-content h3{
    font-size:1.02rem;
    margin-bottom:6px;
}

.project-card .project-description{
    font-size:.95rem;
}

.section h2{
    margin-top: 40px;
    margin-bottom: 25px;
}

/* Gallery filters */
.gallery-controls{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
}

.filters{display:flex; gap:10px; flex-wrap:wrap; justify-content:center}
.filter-btn{background:#fff; border:1px solid #d6dce6; padding:8px 12px; border-radius:999px; cursor:pointer}
.filter-btn.active{background:#0D2B5B; color:#fff; border-color:transparent}

.project-card{transition:opacity .25s, transform .25s}
.project-card.hidden{opacity:0; transform:scale(.98); pointer-events:none; display:none}

.card p{
    line-height:1.8;
    font-size:1.05rem;
    text-align:justify;
}

.section h2{
    text-align:center;
    margin-bottom:25px;
}

/* Estilos para Misión y Visión */
.mision-vision{
    background:linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.card-destacada{
    border-left:5px solid #0D2B5B;
    padding:32px;
    background:#fff;
    position:relative;
    box-shadow:0 12px 35px rgba(13,43,91,.15);
    margin:30px auto;
    max-width:900px;
}

.card-destacada p{
    line-height:1.9;
    font-size:1.1rem;
    color:#2c3e50;
    text-align:justify;
}

.card-icon{
    font-size:2.5rem;
    margin-bottom:20px;
    display:block;
}

.mision{
    border-left-color:#2ecc71;
}

.vision{
    border-left-color:#3498db;
}

/* Estilos para Valores */
.valores{
    background:#f5f7fa;
}

.valores-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-top:30px;
}

.valor-card{
    background:#fff;
    padding:28px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:4px solid #0D2B5B;
    transition:transform .3s ease, box-shadow .3s ease;
}

.valor-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.valor-card h3{
    color:#0D2B5B;
    margin-bottom:12px;
    font-size:1.2rem;
}

.valor-card p{
    color:#5a6372;
    line-height:1.6;
}

/* Sección de Trabajos - Página Completa */
.trabajos-hero{
    background:linear-gradient(135deg, #0D2B5B 0%, #1a3f7a 100%);
    color:#fff;
    padding:80px 0;
}

.trabajos-hero h1{
    font-size:clamp(2rem, 5vw, 3rem);
    margin-bottom:16px;
}

.trabajos-hero .section-intro{
    color:#e0e8f0;
    max-width:800px;
    margin:0 auto;
}

/* Mejora de Galería */
.galeria{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
    gap:28px;
    margin-bottom:50px;
    animation:fadeIn .5s ease-in;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(20px)}
    to{opacity:1; transform:translateY(0)}
}

.project-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.10);
    transition:all .35s cubic-bezier(.4, 0, .2, 1);
    display:flex;
    flex-direction:column;
    height:100%;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 48px rgba(0,0,0,.20);
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-card p{
    padding:22px 20px;
    font-weight:600;
    color:#0D2B5B;
    font-size:1rem;
    flex-grow:1;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:1.5;
    background:#f9fafb;
}

.project-card.hidden{
    opacity:0;
    transform:scale(0.95);
    pointer-events:none;
    display:none;
}

/* Filtros mejorados */
.gallery-controls{
    display:flex;
    justify-content:center;
    margin-bottom:50px;
    padding:30px 0;
}

.filters{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}

.filter-btn{
    background:#fff;
    border:2px solid #d6dce6;
    padding:12px 24px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
    color:#4f5d72;
    transition:all .3s ease;
    font-size:0.95rem;
}

.filter-btn:hover{
    border-color:#0D2B5B;
    color:#0D2B5B;
}

.filter-btn.active{
    background:#0D2B5B;
    color:#fff;
    border-color:#0D2B5B;
    box-shadow:0 8px 20px rgba(13,43,91,.25);
}

@media (max-width:768px){
    .trabajos-hero{
        padding:60px 0;
    }

    .trabajos-hero h1{
        font-size:1.8rem;
    }

    .galeria{
        grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
        gap:20px;
    }

    .project-card img{
        height:220px;
    }

    .filters{
        gap:10px;
    }

    .filter-btn{
        padding:10px 18px;
        font-size:0.85rem;
    }
}

/* Página Nosotros */
.nosotros-hero{
    background:linear-gradient(135deg, #0D2B5B 0%, #1a3f7a 100%);
    color:#fff;
    padding:80px 0;
}

.nosotros-hero h1{
    font-size:clamp(2rem, 5vw, 3rem);
    margin-bottom:16px;
}

.nosotros-hero .section-intro{
    color:#e0e8f0;
    max-width:800px;
    margin:0 auto;
}

/* Estadísticas de Experiencia */
.experiencia-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:30px;
    margin-top:50px;
}

.stat-item{
    text-align:center;
    padding:30px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.10);
    transition:all .3s ease;
}

.stat-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 48px rgba(0,0,0,.15);
}

.stat-item h3{
    font-size:2.8rem;
    color:#0D2B5B;
    margin-bottom:10px;
    font-weight:700;
}

.stat-item p{
    color:#5a6372;
    font-size:1.05rem;
    font-weight:600;
}

/* Sección Cómo Llegar */
.como-llegar{
    background:linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding:80px 0;
}

.como-llegar h2{
    color:#0D2B5B;
    margin-bottom:12px;
}

.ubicacion-contenedor{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-top:50px;
}

.ubicacion-info{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.info-item{
    background:#fff;
    padding:28px;
    border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.10);
    border-left:5px solid #0D2B5B;
}

.info-item h3{
    color:#0D2B5B;
    margin-bottom:12px;
    font-size:1.2rem;
}

.info-item p{
    color:#5a6372;
    line-height:1.6;
    font-size:1rem;
}

.ubicacion-mapa{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
}

.btn-maps{
    background:linear-gradient(135deg, #0D2B5B 0%, #1a3f7a 100%);
    color:#fff;
    padding:18px 40px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:all .3s ease;
    box-shadow:0 10px 28px rgba(13,43,91,.25);
    border:none;
    cursor:pointer;
    font-size:1.05rem;
}

.btn-maps:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(13,43,91,.35);
}

/* Botón visible para dejar reseña en Google */
.btn-review{
    background:linear-gradient(90deg,#f6b93b,#ff6b6b);
    color:#081A35;
    padding:14px 26px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
    display:inline-block;
    box-shadow:0 12px 30px rgba(0,0,0,.14);
    border:none;
    cursor:pointer;
    font-size:1rem;
}

.btn-review:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.direccion{
    color:#0D2B5B;
    font-weight:700;
    margin-top:12px;
}

.mapa-nota{
    color:#5a6372;
    font-size:0.95rem;
    text-align:center;
    font-style:italic;
}

@media (max-width:768px){
    .ubicacion-contenedor{
        grid-template-columns:1fr;
        gap:30px;
    }

    .como-llegar{
        padding:60px 0;
    }

    .btn-maps{
        width:100%;
        justify-content:center;
    }
}
.reseñas{
    background:#f5f7fa;
    padding:80px 0;
}

.reseñas h2{
    color:#0D2B5B;
    margin-bottom:12px;
}

.reseñas .section-intro{
    margin-bottom:40px;
    max-width:780px;
    color:#4f5d72;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:24px;
    margin-bottom:40px;
}

.review-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 36px rgba(0,0,0,.10);
    border-left:4px solid #0D2B5B;
}

.review-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.review-header h3{
    font-size:1.1rem;
    color:#0D2B5B;
    margin:0;
}

.review-rating{
    color:#FFD700;
    font-size:1rem;
    font-weight:700;
}

.review-comment{
    font-size:1rem;
    color:#363d4a;
    line-height:1.7;
    margin-bottom:16px;
}

.review-meta{
    color:#6c7588;
    font-size:0.93rem;
}

.cta-reseñas{
    text-align:center;
}

.cta-reseñas p{
    color:#4f5d72;
    margin-bottom:18px;
    font-size:1rem;
}

@media (max-width: 480px){
    /* En pantallas pequeñas mover ligeramente a la izquierda y elevarlo para evitar widgets */
    .whatsapp-float{
        right:14px;
        bottom:110px;
        padding:10px 14px;
        font-size:14px;
    }
}