:root {
    --negro: #1a1a1a;
    --rojo: #e31c25;
    --blanco: #f2f2f2;
    --azul: #185fe9;

    --text-shadow: 3px 5px 25px rgba(0, 0, 0, 0.6);
    --border-shadow: 0 5px 25px rgb(0 0 0 / 20%);

    /* Para la marquesina de marcas */
    --marquee-width: 1600px;
    --marquee-height: 40vh;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 6;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 1.5s);
}

/* Reseteo de estilos */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    font-size: 400;

    /*
    for debugging
    outline: 2px solid limegreen !important;
    background-color: rgb(0 100 0 / 0.1) !important;
    */
}

h1, h2, h3, h4, h5 {
    font-size: 700;
    line-height: 1.5;
}

a, p {
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    min-height: 100vh;
}


/* Menu de opciones y móvil */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* min-height: 8vh; */
    padding: 1.5rem 3rem;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 60%;
}

.nav-links a {
    position: relative;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color .5s ease;
}
.nav-links li a::before {
    content: '';
    position: absolute;
    background: var(--rojo);
    width: 0%;
    height: 2px;
    bottom: -10px;
    left: 0;
    transition: 0.3s ease;
}
.nav-links li a:hover::before {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background-color: #f2f2f2;
    margin: 5px;
    transition: all 0.5s ease;
}

@media (max-width: 1024px) {
    .nav-links {
        width: 65%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 1rem;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 82vh;
        top: 18vh;
        background-color: rgba(227, 28, 37, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(-100%);
        transition: transform .5s ease-in-out;
        z-index: 9;
    }

    .nav-links li {
        opacity: 0;
    }

    .mobile-menu {
        display: block;
    }

}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px,6px)
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px,-6px)
}

.logo {
    /* padding-left: 0rem; */
    background-color: rgb(242, 242, 242, 0.8);
    border-radius: 6px;
}

.hero-video {
    background-color: var(--negro);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}


/* Contenedor general */
.container {
    max-width: 1600px;
    margin: 0 auto;
}


header {
    min-height: 100vh;
}

/* Hero video */
.hero-background {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#videoBG {
    background-color: var(--negro);
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100vh;
    object-fit: cover; */
    z-index: -1;
}
/* Desktop background */
@media ( min-aspect-ratio: 16/9 ) {
    #videoBG {
        width: 100%;
        height: auto;
    }
}
/* Mobile devices background */
@media ( max-aspect-ratio: 16/9 ) {
    #videoBG {
        width: auto;
        height: 100%;
    }
}

.hero-text {
    position: relative;
    max-width: 60%;
}

.hero-text h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 3em;
    padding-top: 8rem;
}
.hero-text span {
    color: var(--rojo);
}
.hero-text p {
    background-color: rgb(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--border-shadow);
    color: var(--blanco);
    text-shadow: var(--text-shadow);
    padding: 1rem 2rem;
    font-size: 1.2em;
    text-align: justify;
    width: 88%;
}

.media-icons {
    position: absolute;
    right: 6rem;
}
.media-icons a img {
    margin-bottom: 1rem;
    transition: 0.3s ease;
}
.media-icons a img:hover {
    transform: scale(1.3);
    filter: grayscale(80%);
}

.cta-btn {
    margin-left: 1rem;
    padding: .5rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--blanco);
    color: var(--blanco);
    background-color: var(--rojo);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.cta-btn:hover {
    background-color: transparent;
}

.cta-button {
    display: flex;
    justify-content: center;
    padding-top: 4rem;
}
.cta-button a {
    padding: .5rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ffffff;
    color: var(--blanco);
    background-color: transparent;
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button a:hover {
    background-color: var(--rojo);
}

/* Adaptación a dispositivos móviles */
/* @media( max-width:768px ){

    .navbar .navigation {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(1, 1, 1, 0.5);
    }

    .menu-btn {
        background: url(views/images/menu-icon.png) no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
        z-index: 9;
    }

    .menu-btn.active {
        background: url(views/images/close-icon.png) no-repeat;
        background-size: 30px;
        background-position: center;
        transition: 0.3s ease;
    }

} */


section {
    padding: 4rem 1rem;
}

section h2 {
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    padding-bottom: 2rem;
}

/* Nosotros */
.nosotros {
    color: var(--blanco);
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background-image: url(../images/banner-nosotros.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    min-height: 40vh;
    z-index: -2;
}
.nosotros-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 28, 37, 0.7);
    z-index: -1;
}
.nosotros h3 {
    padding-bottom: 4rem;
    text-transform: uppercase;
    font-size: 1.5em;
    text-shadow: 5px 5px 8px rgb(0, 0, 0, 0.7);
}
.card-nosotros {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card-nosotros h3 {
    color: var(--blanco);
}
.text-nosotros {
    width: 70%;
    margin: auto;
    padding-bottom: 2rem;
}
.nosotros p, .nosotros ul {
    padding-bottom: 1rem;
    font-size: 1.1em;
    text-align: left;
}


/* Equipos */
#productos {
 background-color: var(--blanco)
}

.subtitulo-listado {
    padding: 2rem 0;
    text-align: center;
}
.subtitulo-listado p {
    color: #808080;
    font-size: 1.1em;
    line-height: 2rem;
}
.card-equipos {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-equipos h3 {
    color: var(--negro);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0 .5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: bolder;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
}

.card-equipos img {
    /* height: 100%; */
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.card-equipos:hover img {
    filter: none;
    -webkit-filter: grayscale(0);
}
.card-equipos:hover h3 {
    color: var(--rojo);
}


/* Galeria */
#galeria {
    background: rgb(26,26,26);
    background: linear-gradient(0deg, rgba(26,26,26,1) 0%, rgba(149,149,149,1) 25%, rgba(242,242,242,1) 85%);
    padding-bottom: 8rem;
}

/* .galeria {
    width: 100%;
    min-height: 100vh;
    padding: 4rem;
}

.galeria-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.galeria-content img {
    transition: all .5s ease;
}

.galeria-content img:hover {
    transform: scale(1.2);
} */

.marquee {
	max-width: var(--marquee-width);
	height: var(--marquee-height);
	overflow: hidden;
	position: relative;
}
/* .marquee:before, .marquee:after {
	position: absolute;
	top: 0;
	width: 10rem;
	height: 100%;
	content: "";
	z-index: 1;
} */
.marquee-content {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content img {
  cursor: pointer;
  object-fit: cover;
  padding-right: 1rem;
  transition: all .3s ease-out;
}
.marquee-content img:hover {
  transform: scale(1.5);
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrolling {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
	white-space: nowrap;
}
.marquee-content li img {
	border-radius: 5px;
}
/* .marquee-content li p {
	font-size: 4.5rem;
	line-height: 1.1;
	color: var(--color-rojo);
	border-bottom: 2px solid var(--color-rojo);
	letter-spacing: -1px;
	padding: 0 2rem;
	margin: 0;
} */
@media (max-width: 600px) {
	:root {
	  --marquee-width: 100vw;
	  --marquee-height: 22vh;
	  --marquee-elements-displayed: 2;
	}
	.marquee:before, .marquee:after { width: 5rem; }
}


/* Formulario de cotización */
.modal-cotizacion {
    position: fixed;
    top: 20%;
    left: 40%;
    transform: translate(-20%, -40%) scale(0);
    transition: .6s ease-in-out;
    background-color: var(--negro);
    border: 3px solid var(--blanco);
    border-radius: 3px;
    color: var(--blanco);
    padding: 0 2rem 1rem 2rem;
    min-width: 300px;
    max-width: 320px;
    z-index: 9;
}
.modal-cotizacion.active {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: flex-end;
}

.modal-close {
    border: none;
    font-size: 2em;
    color: var(--rojo);
    background-color: transparent;
    cursor: pointer;
}

.modal-close:hover {
    color: #cccccc;
}

.modal-cotizacion form {
    display: flex;
    flex-direction: column;
    color: var(--blanco);
}

.modal-cotizacion input {
    color: var(--blanco);
    outline: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--rojo);
    padding: .5em 1em;
    font-size: 1em;
    margin-bottom: 1em;
}

.modal-cotizacion textarea {
    font-size: 1em;
    outline: none;
    padding: .5em;
    background-color: #cccccc;
    margin-bottom: 1rem;
}

.modal-body button {
    padding: .5rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--blanco);
    color: var(--blanco);
    background-color: var(--rojo);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}
.modal-body button:hover {
    background-color: transparent;
}

.error, .error-form, .form-success, .success {
    display: none;
}

.error, .error-form {
    color: var(--rojo);
}

.form-success {
    color: yellow;
}

#overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(227, 28, 37, 0.7);
    pointer-events: none;
    opacity: 0;
    transition: .3s ease-in-out;
}
#overlay-modal.active {
    opacity: 1;
    pointer-events: all;
}
@media ( max-width: 768px ) {
    .modal-cotizacion {
        top: 20%;
        left: 5%;
        transform: translate(-5%, -40%) scale(0);
    }    
}



/* Contacto */
#contacto {
    color: var(--blanco);
    background-color: var(--negro);
    padding: 0 2rem;
}

.contacto h3 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 2rem;
}

.text-contacto p {
    display: inline-block;
    padding-bottom: 2rem;
}

.text-contacto img {
    float: left;
    padding-right: 2rem;
}

.text-contacto {
    display: grid;
    grid-template-columns: 20% 80%;
}

.text-contacto a {
    color: var(--blanco);
}

.text-contacto a:hover {
    color: #ccc;
}

.texto-sociales {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.texto-sociales a {
    padding-bottom: 2rem;
}
.texto-sociales a img:hover {
    filter: grayscale(80%);
}


/* Pagina de productos */
#listado-equipos {
    background-color: var(--blanco);
    background-color: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(26,26,26,1) 0%, rgba(0,0,0,0.2) 25%, rgba(255,255,255,1) 85%);
}

.overlay-productos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.lista-productos {
    width: 100%;
}

#filtro_categoria {
    color: var(--blanco);
    background-color: var(--rojo);
    padding: .5rem 1rem;
    letter-spacing: 1px;
    min-width: 240px;
    border-radius: 25px;
    border: 2px solid var(--blanco)
}


/* galeria de productos */
.galeria-productos {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat( auto-fill, minmax(18rem, 1fr) );
    padding: 2rem 0 6rem 0;
}
  
.card {
    position: relative;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 1);
    max-width: 320px;
    overflow: hidden;
    transition: all .3s ease;
}

.card:hover {
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2);
}

.card-body {
    height: 116.5px;
    text-align: center;
    padding: 1rem;
}
.card-body h3 {
    text-transform: uppercase;
}
.ver-detalle {
    text-align: center;
}
.ver-detalle button {
    margin: 1rem 0;
    padding: .5rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--blanco);
    color: var(--blanco);
    background-color: var(--azul);
    box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}
.ver-detalle button:hover {
    color: var(--azul);
    border: 2px solid var(--azul);
    background-color: transparent;
}

/*
  Ventana modal para mostrar detalle de articulos
*/
#modalDetalle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    border-radius: 5px;
    border: 1px solid var(--blanco);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1rem;
    /* overflow-y: hidden; */
}
#modalDetalle::backdrop {
    background-color: rgba(204, 0, 0, .5);
}


.modal-detalle-close {
    display: flex;
    justify-content: flex-end;
    border: none;
    font-size: 2em;
    color: var(--rojo);
    background-color: transparent;
    cursor: pointer;
}

.modal-detalle-close:hover {
    color: #cccccc;
}

.titulo-detalle h3 {
    text-transform: uppercase;
}

.texto-detalle {
    position: relative;
    padding: 1rem;
}

.star-review img {
    display: inline-block;
}

.imagen-detalle {
    position: relative;
}

.magnifier-lens {
    position: absolute;
    cursor: zoom-in;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--blanco);
    background-color: #185fe930;
    backdrop-filter: blur(5px);
    opacity: 0;
}

.magnifier-lens.active {
    opacity: 1;
}

.magnified-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #185fe930;
    transform: scale(0.1);
    opacity: 0;
    transition: opacity .5s, transform .5s;
    -webkit-transition: opacity .5s, transform .5s;
    -moz-transition: opacity .5s, transform .5s;
    -o-transition: opacity .5s, transform .5s;
}
  
.magnified-img.active {
    opacity: 1;
    transform: scale(1);
}

.ver-video {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.cerrar-video {
    display: none;
    padding-top: 2rem;
}

.color-content {
    padding-top: 1rem;
}
.color-content h4 {
    text-transform: uppercase;
}
.color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #d9d9d9;
    margin-right: 12px;
    cursor: pointer;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.color-amarillo {
    background-color: yellow;
}
.color-azul {
    background-color: blue;
}
.color-naranja {
    background-color: #c65801;
}
.color-negro {
    background-color: black;
}
.color-rojo {
    background-color: red;
}
.color-rosa {
    background-color: #b72a76;
}
.color-verde {
    background-color: #87941e;
}
.color:hover {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.8);
}
.color-groups {
    padding: 1rem 0;
    display: flex;
}

.video-producto button, .cerrar-video button {
    margin: 1rem 0;
    padding: .5rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--rojo);
    color: var(--blanco);
    background-color: var(--rojo);
    box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}
.video-producto button:hover, .cerrar-video button:hover {
    color: var(--rojo);
    border: 2px solid var(--rojo);
    background-color: transparent;
}


.opinion-usuario {
    background-image: url(../images/quote-left.png);
    background-repeat: no-repeat;
}
.opinion-usuario p {
    padding-top: .5rem;
    margin-left: 1.6rem;
}
  
.opiniones-content {
    position: relative;
    max-width: 1400px;
    padding-top: 2rem;
}
.modal-opiniones-content {
    position: relative;
    max-width: 800px;
    padding: 2rem;
}
.opinion {
    color: var(--color-negro);
    max-width: 300px;
    min-width: 220px;
}
.modal-opinion {
    display: inline-block;
    color: var(--color-negro);
    max-width: 150px;
    min-width: 125px;
}
  
.opinion p {
    display: block;
    font-size: 1em;
}
.modal-opinion p {
    display: block;
    font-size: .8em;
}
.opinion-nombre {
    font-weight: 700;
}
.opinion-fecha {
    font-size: .8em;
}
.opinion img {
    display: inline-block;
}
.star-rating img {
    display: inline-block !important;
    width: 16px;
    height: 16px;
    max-width: 16px;
}
  

#modalReview {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid var(--blanco);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1rem;
}
#modalReview::backdrop {
    background-color: rgba(0, 0, 0, .8);
}
.btn-review, .btn-review-enviar {
    cursor: pointer;
    background-color: #ffcc00;
    color: var(--color-negro);
    padding: .5rem 1rem;
    border-radius: 6px;
    border: 1px solid #ffffff;
    outline: none;
}

.btn-review:hover, .btn-review-enviar:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.input-review {
    width: 100%;
    outline: none;
    color: var(--negro);
    border: none;
    border-bottom: 1px solid var(--negro);
    background-color: transparent;
    height: 2.2rem;
    padding: 0 .5rem;
    margin: 2rem 0;
}
.input-container textarea {
    width: 100%;
    padding: 10px;
    resize: none;
    margin-bottom: 2rem
}
.rating-stars{
    overflow: hidden;
    vertical-align: bottom;
    display: inline-block;
    width: auto;
    height: 20px;
}
.rating-stars > input{
    opacity: 0;
    /*margin-right: -100%;*/
}
.rating-stars > label{
    position: relative;
    display: block;
    float: left;
    background: url('../images/estrella-vacia.png');
    background-size: 20px 20px;
    margin-right: 5px;
}
.rating-stars > label:before{
    display: block;
    opacity: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: url('../images/estrella-llena.png');
    background-size: 20px 20px;
    transition: opacity 0.2s linear;
}
.rating-stars > label:hover:before,
.rating-stars > label:hover ~ label:before,
.rating-stars:not(:hover) > :checked ~ label:before{
    opacity: 1;
}
.btn-review-enviar {
    width: 50%;
    margin: 2rem 0;
    font-size: 1em;
    letter-spacing: .2em;
}
  
.error {
    color: var(--color-rojo);
    margin-top: -2rem;
    padding-bottom: 2rem;
    font-size: .8em;
}
.error-nombre, .error-review {
    display: none;
}
.success {
    color: #009933;
}
.review-sent, .error-review-sent {
    display: none;
}

.title-reviews hr {
    margin: 2rem 0;
}


/* Divide el contenido en columnas iguales */
.split-columns {
    display: flex;
    flex-direction: column;
}
.split-columns > * {
    flex-basis: 100%;
}
@media (min-width: 40em) { /* 40em = 640px */
    .split-columns {
        flex-direction: row;
    }  
    .split-columns > * {
        flex-basis: 33%;
    }
}

/* Para centrar texto o div */
.centrado {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
  Botón flotante de WhatsApp
*/
.btn-whatsapp {
	position: fixed;
	bottom: 4rem;
	right: 2rem;
	background-color: #0df053;
	border-radius: 50px;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.5);
	z-index: 10;
    transition: background-color .3s ease;
}
.btn-whatsapp:hover {
	background-color: #0ac244;
}
.necesitas-ayuda {
    color: var(--negro);
	position: fixed;
	bottom: 2.5rem;
	right: 3px;
    font-size: .7em;
    text-shadow: 2px 0 #ffffff50, -2px 0 #ffffff50, 0 2px #ffffff50, 0 -2px #ffffff50,
               1px 1px #ffffff50, -1px -1px #ffffff50, 1px -1px #ffffff50, -1px 1px #ffffff50;
    z-index: 10;
}

.btn-whatsapp::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #b6fbcc;
    border-radius: 50px;
    opacity: 0.7;
}
.btn-whatsapp::before {
    animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


/* 
    Adapatación a dispositivos móviles
*/

@media ( max-width: 768px ) {

    .logo {
        width: 50%;
    }

    .hero-text {
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 2em;
        padding-top: 2rem;
    }

    .hero-text p {
        padding: 1rem;
    }

    .cta-button {
        padding-top: 1rem;
    }

    .cta-button a {
        padding: .5rem 1.2rem;
    }    

    .media-icons {
        right: 1rem
    }

    .galeria {
        padding: 2rem 0;
    }

    .galeria-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .text-contacto img {
        padding: 0 1rem 2rem 0;
    }

    .text-contacto p {
        font-size: .9em;
    }

    .text-contacto p {
        padding: 0;
    }

    .text-contacto > p {
        padding-bottom: 1rem;
    }

    #modalDetalle {
        max-width: 100vw;
        top: 100px;
        left: 2%;
        transform: translate(-2%, -50px);
    }    

}
