@import url(../css/clash-display.css);

/* HE IMPORTADO LA FUENTE CLASHDISPLAY */
@font-face {
    font-family: "ClashDisplay";
    src: url(../fonts/ClashDisplay.ttf);
}

body {
    /* Puedes agregar también tamaño base, color, etc */
    font-size: 16px;
    color: #232323;
    font-family: "ClashDisplay";
}

/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #4bb747;
    --c-brand-light: #259150;
    --c-brand-rgb: 78, 212, 78;
    --c-body: #000000;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

/* CAMBIOS */
body {
    font-family: "ClashDisplay";
    line-height: 1.7;
    color: var(--c-body);
}

.parrafo-grande {
    font-size: 1.4em;
    /* Más grande que h1 */
    font-weight: 400;
    /* Negrita suave */
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.01);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
    background: rgba(var(--c-brand-rgb), 0.1);
}

.linea-bajo-titulo {
    width: 80px;
    /* ancho de la línea */
    height: 4px;
    /* grosor */
    background-color: #28a745;
    /* color verde (puedes cambiarlo) */
    margin: 8px 0 20px 0;
    /* espacio arriba y abajo */
}

#accesorios i {
    box-shadow: none !important;
    text-shadow: none !important;
}

.mb-4 {
    margin-bottom: 0rem !important;
}

/* PRIMER BOTON */

.btn-brand:hover,
.btn-brand:focus {
    background-color: #218838 !important;
    /* verde oscuro */
    box-shadow: 0 4px 8px rgba(33, 136, 56, 0.4);
    color: white !important;
    outline: none;
    text-decoration: none;
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    overflow: hidden;
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}

.iconbox img {
    height: 40px;
    object-fit: contain;
}

/* NAVBAR */
/* Asegura que el tamaño de línea no cambie al aplicar el border */

.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    /* Asegura que esté por encima del contenido */
}

.navbar .container {
    display: flex;
    align-items: center;
    /* Alinea verticalmente */
    justify-content: space-between;
    /* Espaciado entre logo/menu y botón */
}

.nav-link {
    color: rgb(117, 117, 117);
    font-size: 0.95rem;
    padding: 0px 0px 0px 0px;
    position: relative;
    font-weight: 400;
    padding-bottom: 5px;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #259150 !important;
}

/* Línea inferior al hacer hover SIN mover el texto */
.nav-link::after {
    content: "";
    position: absolute;
    font-weight: 500;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #259150;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Evita que se mueva al hacer hover */
.nav-link::after {
    width: 0%;
}

.navbar-nav {
    display: flex;
    justify-content: flex-end;
    flex-grow: 4;
    margin-right: 30px !important;
}

/* Espacio más controlado entre menú y botón */
.navbar .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem !important;
}

/* BOTON */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 2;
}

/* DISTANCIA ENTRE ICONO WHATSAAP Y TEXTO "CONTACTAR" DEL MENU */

.gap-2 {
    gap: 0.6rem !important;
}

.btn-success {
    background-color: #4bb747;
    border: none;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
}

/* INICIO */
#home {
    background: linear-gradient(rgb(75 183 71), rgba(var(--c-brand-rgb), 0.3)),
        url(../img/header_img.webp);
    background-position: center;
    background-size: cover;
}

#home h1,
#home h5 {
    text-shadow: 1px 1px 2px rgb(0 0 0 / 18%);
}

/* SECTION TITLE */
.section-title {
    margin-bottom: 40px;
}

.section-title .line {
    width: 80px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ICONBOX */
.iconbox {
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

/* SERVICES */
/* Clase opcional para cambiar el color del fondo */

#services .ver-detalles {
  font-size: 1rem;          /* Aumenta el tamaño del texto */
  padding: 0.6rem 1.2rem;   /* Más alto y más ancho */
  border-radius: 6px;       /* Opcional: más suavidad en los bordes */
}


#about .iconbox {
    background: rgba(var(--c-brand-rgb), 0.1);
}

.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    /* opacity: 0; */
    transition: var(--transition);
}

.service:hover::after {
    width: 100%;
    height: 100%;
    /* opacity: 1; */
    background: var(--c-brand-light);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service:hover .iconbox {
    background-color: #ffffff19;
    color: white;
}

/* ACCESORIOS */
.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

#accesorios .row {
    align-items: flex-start;
}

.me-2 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* X, Y, blur, color */
}

/* Aumenta solo el texto de los headers */
.accordion-header {
    font-size: 1.1rem !important;
    font-weight: 500;
    line-height: 1.2;
    color: black;
}

.accordion-card .accordion-header {
    justify-content: space-around !important;
    /* cambia de center a flex-start */
    padding: 1.2em 0em 1.2em 0em;
    /* mismo padding en todos */
}

/* Aumentar el tamaño de todos los textos dentro de las cajas */
.accordion-content .product-item {
    font-size: 1.125rem;
    /* aprox. 18px, ajusta al tamaño que prefieras */
    line-height: 1.4;
    /* para legibilidad */
}

/* Si además quieres que el texto de los botones/títulos también sea más grande: */
.accordion-header {
    font-size: 1.25rem;
    /* aprox. 20px */
}

/* Opcional: que el icono principal y el toggle queden con un margen fijo */
.accordion-card .accordion-header i {
    margin: 0rem 1.25rem 0rem 1.25rem !important;
}

/* Mantén el mismo padding para el cuerpo de la card */
.accordion-card .card-body {
    padding: 0rem !important;
}

/* Mantén el tamaño de los iconos por separado si no quieres que crezcan */
.accordion-header>i:first-child {
    font-size: 1.75rem !important;
    /* o el tamaño que prefieras */
}

.fs-5 {
    font-size: 1.85rem !important;
}

#accesorios-protectores {
    font-size: 1.15rem;
    /* Ajusta este valor al tamaño que prefieras */
}

.accordion-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease,
        background-color 0.3s ease;
    background-color: white;
    /* color inicial */
    color: inherit;
    /* hereda color normal */
    border: 0px;
}

.accordion-card:hover {
    background-color: #259150;
    /* verde bootstrap para el fondo */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    color: white;
    /* cambia el color del texto al blanco */
}

.accordion-card:hover .accordion-header i,
.accordion-card:hover .accordion-header,
.accordion-card:hover .product-item i,
.accordion-card:hover .product-item {
    color: white !important;
    /* fuerza el color blanco a iconos y textos */
    font-weight: 500;
}

.bg-light {
    padding: 7rem 0rem 7rem 0rem;
}

.espaciado {
    letter-spacing: 1px;
    /* más espacio entre letras */
    word-spacing: 4px;
    /* más espacio entre palabras */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* sombra suave */
}

.product-item {
    padding: 1.2em 0em 1.2em 1em;
    display: flex;
    align-items: center;
}

/* VIDEO */
.video-hover-play {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Sin borde redondeado por defecto */
    box-shadow: none;
    /* Sin sombra por defecto */
    transition: all 0.3s ease;
    /* Transición suave para todos los cambios */
}

.video-hover-play:hover {
    border-radius: 15px;
    /* Borde redondeado al hacer hover */
    transform: scale(1.01);
    /* Ligera ampliación opcional */
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: hidden;
    /* Impide scroll manual */
    scroll-behavior: smooth;
}

.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item .description {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 32px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.gallery-btn.left {
    left: 10px;
}

.gallery-btn.right {
    right: 10px;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.5),
            rgba(var(--c-brand-rgb), 0.3)),
        url(../img/counter_img.webp);
    background-position: center;
    background-size: cover;
}

/* PORTFOLIO */
.portfolio-item .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item:hover .iconbox {
    opacity: 1;
    top: 50%;
}

.gallery-container {
    position: relative;
    margin-top: 20px;
}

.scroll-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.scroll-gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    height: 260px;
    /* AUMENTA LA ALTURA AQUÍ */
    position: relative;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Rellena sin deformarse */
    display: block;
    border-radius: 10px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.scroll-btn.left {
    left: -10px;
}

.scroll-btn.right {
    right: -10px;
}

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* RESEÑAS */
.review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: white;
    transform: rotate(45deg);
}

.review-person img {
    width: 90px;
    height: 90px;
}

#reviews {
    padding-bottom: 25px;
    /* reducir si el espacio general es excesivo */
}

#reviews h2 {
    font-family: "ClashDisplay" !important;
    font-weight: 600;
}

#tm-qlvss a.go537322763 {
    font-family: "ClashDisplay" !important;
    font-weight: 400;
    border-radius: 0em;
}

/* TEAM */
.team-member-content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    padding: 24px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content {
    opacity: 1;
    bottom: 24px;
}

/* HORARIO */
.shadow-green {
    box-shadow: 0 4px 20px rgba(0, 200, 0, 0.6);
}

.espacio {
    margin-left: 7px;
    /* o el espacio que quieras */
}

/* HORARIO */
.horario-contenido {
    --bs-bg-opacity: 0.75;
    background-color: rgba(var(--bs-success-rgb),
            var(--bs-bg-opacity)) !important;
    margin: 0rem 5rem 0rem 5rem;
    padding: 3rem 3rem 3rem 3rem;
    border-radius: var(--bs-border-radius-xl) !important;
}

/* TAMAÑO BOTON VER UBICACION DE SECCION HORARIO */

.horario-contenido .btn-success {
    padding: 15px 20px;
}

.fw-bold {
    font-weight: 500 !important;
}

.font1em {
    font-size: 1.7em;
}

.shadow-green {
    box-shadow: 0 4px 15px rgba(0, 128, 0, 0.25);
    /* sombra verde suave y estética */
}

.espacio {
    margin-left: 25px;
    /* más espacio entre "Nuestro" y "horario" */
}

.bg-horario {
    background-color: rgba(var(--bs-success-rgb),
            var(--bs-bg-opacity)) !important;

    background-image: url(../img/interior1.JPG);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iconbox svg {
    width: 100px;
    height: 100px;
    color: #28a745;
    /* verde */
}

.column {
    display: flex;
    flex-direction: column;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgb(255 255 255) !important;
}

.text-verde {
    color: var(--c-brand-light);
}

.rojo {
    color: rgb(205, 7, 7);
}

.py-2 {
    color: var(--c-brand-light);
}

.me-2 {
    box-shadow: none;
}

/* CONTACTO */
#contact {
    position: relative;
    z-index: 2;
}

.white {
    color: white !important;
}

#contact::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.5),
            rgba(var(--c-brand-rgb), 0.3)),
        url(../img/pexels-mikhail-nilov-9242903.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
}

/* FOOTER  */

footer {
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #28a745;
}

/* Estilo columnas con borde vertical del FOOTER  */
.footer-col {
    position: relative;
    padding-left: 28px;
    padding-right: 28px;
    display: flex;
    flex-direction: column;
}

/* Solo aplicamos la barra a los divs con clase .with-bar */
.footer-col.with-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 3px;
    height: 120px;
    background-color: #28a745;
    border-radius: 2px;
}

.footer-col i {
    font-size: 1.5rem;
    /* Prueba con 2rem o más si los quieres aún más grandes */
    vertical-align: middle;
    margin-right: 10px;
    /* Espacio entre icono y texto */
}

.footer-top>.container>.row>div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* 🔁 Alínea el contenido arriba */
}

.footer-top .row {
    display: flex;
    align-items: center;
    /* Alinea verticalmente centro todas las columnas */
    flex-wrap: wrap;
    /* Para que en pantallas pequeñas no se rompa el layout */
}

.footer-top>.container>.row>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centra contenido verticalmente */
}

/* Quitamos borde a la última columna para que no haya barra final */
.footer-col:last-of-type {
    border-right: none;
}

footer .footer-top>.container>.row>div {
    display: flex;
    flex-direction: column;
}

footer .footer-top p,
footer .footer-top ul {
    flex-grow: 1;
}

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

.footer-bottom {
    color: #eee;
}

footer {
    padding-top: 100px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}

footer li,
footer p,
footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

footer img.footer-logo {
    width: 70%;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.body1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 300px;
    background-image: image-set(url(../img/fondo-success.jpg));
}

.caja1 .caja2 {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    padding: 50px;
    box-shadow: 1px 0px 13px 10px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 0px 13px 10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 0px 13px 10px rgba(0, 0, 0, 0.75);
}

.boton {
    display: flex;
    align-items: center;
    justify-content: center;
}

.titulo1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.parrafo1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgb(33 37 41) !important;
}

/* MEDIA QUERIES MÓVIL*/
/* CARRUSEL DE GALERÍA */

/* Ajusta tamaño en tablets */
@media (max-width: 991.98px) {

    .logo {
        height: 40px;
    }

    .nav-link {
        font-size: 0.9em !important;
    }
}

@media (max-width: 768px) {

    #home {
        padding-right: 0.8em;
        padding-left: 0.8em;
    }


    #about .pt-4 {
        padding-top: 3rem !important;
    }

    #about p {
        margin-bottom: 40px;
    }

    .horario-contenido {
        margin: 0rem 1rem 0rem 1rem;
    }

    .horario-contenido {
        display: flex;
    }

    .horario-contenido .col-md-4 {
        padding: 0px;
    }

    .horario-contenido .text-white {
        margin-bottom: 0px;
    }

    .col-12 {
        padding-left: 0em;
        padding-right: 0em;
    }

    .bg-light {
        padding: 4rem 1rem 4rem 1rem;
    }

    .mb-3 {
        margin-bottom: 0rem !important;
    }

    .mt-4 {
        margin-top: 0rem !important;
    }

    .gallery-item {
        width: 250px;
        height: 180px;
    }

    .navbar-toggler-icon {
        color: white;
    }

    .nav-link {
        padding: 5px 0px 5px 10px;
        font-size: 1.2rem !important;
    }

    .logo {
        height: 45px;
    }

    #home {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* BOTON MENU MOVIL */
    .navbar-toggler {
        background-color: var(--c-brand-light);
        border-radius: 5px;
        border: 0;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .d-flex {
        display: flex !important;
        justify-content: center;
        flex-direction: row;
        align-items: center;
    }

    .min-vh-100 {
        min-height: 70vh !important;
    }

    .pt-4 {
        padding-top: 4rem !important;
    }

    .mb-4 {
        margin-bottom: 0rem !important;
        font-weight: 500;
    }

    .section-padding {
        padding-top: 40px;
        padding-bottom: 30px !important;
    }

    .row {
        flex-direction: column-reverse;
    }

    .display-4 {
        font-size: calc(2rem + 2.7vw);
    }

    .me-2 {
        box-shadow: none;
    }

    #portfolio {
        padding-top: 40px;
        padding-bottom: 40px !important;
    }

    #horario {
        display: flex;
        justify-content: center;
        padding-bottom: 60px;
    }

    .section-title p {
        margin-bottom: 25px;
    }

    .horariocontenido {
        margin: 0rem 2rem 0rem 2rem;
    }

    .horario-contenido .btn {
        padding: 7px 40px !important;
    }

    .section-title {
        margin-bottom: 0px;
    }

    .fw-bold {
        font-weight: 500 !important;
    }

    .footer-col.with-bar {
        position: relative;
        /* Necesario para que ::before se posicione relativo a este contenedor */
    }

    .footer-col.with-bar::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Centra el elemento */
        width: 120px;
        /* Largo horizontal */
        height: 3px;
        /* Grosor fino para línea horizontal */
        background-color: transparent;
        border-radius: 2px;
    }

    .footer-top .row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .d-flex {
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        margin-bottom: 0px;
    }

    .g-4,
    .gy-4 {
        --bs-gutter-y: 0rem;
    }

    /* Para  Secciones de SERVICIOS */
    /* Oculta el botón "Ver detalles" por defecto */
    .ver-detalles {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        position: relative;
        z-index: 1;
    }

    /* Muestra el botón cuando el usuario pasa el ratón sobre el bloque .service */
    .service:hover .ver-detalles {
        opacity: 1;
        pointer-events: auto;
    }

    /* Elimina el fondo y animaciones del hover cuando el contenido está expandido */
    .service.no-hover:hover::after {
        background: transparent;
        width: 40px;
        height: 40px;
    }

    /* Restaura los colores originales en vez del blanco sobre hover */
    .service.no-hover:hover h5,
    .service.no-hover:hover p,
    .service.no-hover:hover .iconbox {
        color: inherit;
        background-color: var("");
    }
}