@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root{

    /* COLOR PRINCIPAL FALCRON */
    --primary-color: #5B9BD5;

    /* AZUL MÁS FUERTE */
    --primary-dark: #2F6FB2;

    /* FONDO GENERAL */
    --background-color: #f0f4f9;

    /* TARJETAS / BLOQUES */
    --card-color: #ffffff;

    /* TEXTO PRINCIPAL */
    --darkcolor: #202124;

    /* TEXTO SECUNDARIO */
    --muted-color: #5f6368;

    /* BORDES SUAVES */
    --line-color: #dce6f2;

    /* EFECTOS / HOVER */
    --hover-color: #e8f1fb;

}
html{
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
}

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

/* UTILIDADES */
.container-hero{
    background-color: var(--background-color);
}

.heading-1{
    text-align: center;
    font-weight: 500;
    font-size: 3rem;
}

.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;

}

.customer-support{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.customer-support i{
    font-size: 3.3rem;
}

.content-customer-support{
    display: flex;
    flex-direction: column;
    
}

.container-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:.5rem;
}

.container-logo i{
    font-size: 3rem;
}
.container-logo h1 a{
    text-decoration: none;
    color: #000;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;

}

.container-user{
    display: flex;
    gap: 1rem;
    cursor: pointer;

}

.container-user .fa-circle-user{
    font-size: 3rem;
    color: var(--primary-color);
    padding-right: 2.5rem;
    border-right: 1px solid #e2e2e2;
}

.container-user .fa-box-open{
     font-size: 3rem;
    color: var(--primary-color);
    padding-left: 1rem;

}

.content-shopping-cart{
    display: flex;
    flex-direction: column;
}

/*NAVBAR*/
.container-navbar{
    background-color: var(--primary-color);
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar .fa-bars{
    display: none;

}

.menu{
    display: flex;
    gap: 2rem;
}

.menu{
    list-style: none;

}

.menu a{
    text-decoration: none;
    font-size: 1.3rem;      /* ✔️ corregido */
    color: var(--darkcolor); /* ✔️ corregido */
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.menu a::after{
    content: "";
    width: 1.5rem;
    height: 1px;
    background-color: #fff;
    position: absolute;     
    bottom: -3px;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all .3s ease;
}

.menu a:hover::after{
    opacity: 1;

}

.menu a:hover{
    color: #fff;

}

.search-form{
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 2rem;
    background-color: #fff;
    height: 4.4rem;
    overflow: hidden;
}

.search-form input{
    outline: none;
    font-family: inherit;
    border: none;
    width: 25rem;
    font-size: 1.4rem;
    padding: 0 2rem;
    color: #777;
    cursor: pointer;

}

.search-form input::-webkit-search-cancel-button{
    appearance: none;

}

.search-form .btn-search{
    border: none;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.btn-search i{
    font-size: 1rem;
    color: #fff;

}

/*BANNER*/

.banner {
    background-image: linear-gradient(100deg,#000000, #00000020), url("assets/img/baner3.jpg");
    height: 90rem; /* altura del banner, ajustable */
    background-size: cover; /* hace que la imagen se ajuste sin recortarse */
    background-repeat: no-repeat; /* evita que la imagen se repita */
    background-position: center; /* centra la imagen dentro del banner */
}

.content-banner{
    max-width: 90rem;
    margin: 0 auto;
    padding: 25rem 0;

}

.content-banner p{
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.content-banner h2{
    color: #fff;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.content-banner a{
    margin-top: 2rem;
    text-decoration: none;
    color: #fff;
    background-color: var(--primary-color);
    display: inline-block;
    padding: 1rem 3rem;
    text-transform: uppercase;
    border-radius: 3rem;

}

/*MAIN CONTENT*/

.main-content{
    background-color: var(--background-color);
}

.container-features{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 3rem;
    padding: 3rem 0;
}

.card-features{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;

    background-color: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem 0;

}

.card-features i{
    font-size: 2.7rem;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0.5rem;
}

.feature-content span{
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--darkcolor);

}

.feature-content p{
    color: #777;
    font-weight: 500;
}

/*CATEGORIES*/

.top-categories{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;

}

.container-categories{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
}

.card-category{
    height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    gap: 2rem;
}

.category.servicios {
    background-image: linear-gradient(#00000080,#00000080), url("img/equipo.jpg");
    background-size: cover;   /* tamaño de la imagen sola */
    background-position: center;    /* centra la imagen dentro de la caja */
    background-repeat: no-repeat;   /* que no se repita */
}

.category.perifoneo{
    background-image: linear-gradient(#00000080,#00000080), url("img/IMG-20241227-WA0005.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.category.activaciones{
    background-image: linear-gradient(#00000080,#00000080), url(img/FB_IMG_1765471835190.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.card-category p{
    font-size: 2.5rem;
    color: #fff;
    text-transform: capitalize;
    position: relative;

}

.card-category p::after{
    content: "";
width: 2.5rem;
height: 2px;
background-color: #fff;
position: absolute;
bottom: -1rem;
left: 50%;                /* centro horizontal */
transform: translateX(-50%); /* corrección del centrado */



}

.card-category span{
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
}

.card-category span:hover{
    color: var(--primary-color);
}

/* TOP PRODUCTS */
.top-products{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    
}

.container-options{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.container-options span{
    color: #777;
    background-color: #fff;
    padding: .7rem 3rem;
    font-size: 1.4rem;
    text-transform: capitalize;
    border-radius: 2rem;
    cursor: pointer;

}

.container-options span:hover{
    background-color: var(--primary-color);
    color: #fff;

}

.container-options span.active{
    background-color: var(--primary-color);
    color: #fff;

}

/* PRODUCTS */
.container-products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;

}

.card-product{
    background-color: #fff;
    padding: 2rem 3rem;
    border-radius: .5rem;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    

}

.container-img{
    position: relative;

}

.container-img img{
    width: 100%;
}

.container-img .descuento {
    position: absolute;
    top: 10px;     /* asegúrate de darle coordenadas */
    left: 10px;    /* para que se vea en la esquina */
    background-color: var(--primary-color);
    color: #fff;
    padding: 2px 1.2rem;
    border-radius: 1rem;
    font-size: 1.2rem;
}

.card-product:hover .descuento {
    background-color: #000;
}

.button-group{
    display: flex;
    flex-direction: column;
    gap: 1rem;

    position: absolute;
    top: 0;
    right: -3rem;
    z-index: -1;
    transition: all .4s ease;

}

.button-group span{
    border: 1px solid var(--primary-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .4s ease;
}

.button-group span:hover{
    background-color: var(--primary-color);
    
}

.button-group span i{
    font-size: 1.5rem;
    color: var(--primary-color);

}

.button-group span:hover i{
    color: #fff;
}

.card-product:hover .button-group{
    z-index: 0;
    right: -1rem;
}

.content-card-product{
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, min-content);
    row-gap: 1rem;
}

.starts {
    grid-row: 1/2;
    grid-column: 1/-1;
    display: flex;
    justify-content: center; /* centra horizontalmente */
    gap: 0.5rem;             /* espacio entre estrellas */
}

.starts i{
    font-size: 1.3rem;
    color:var(--primary-color);

}


.content.card-product h3{
    grid-row: 2/3;
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;

    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.content.card-product h3:hover{
    color: var(--primary-color);
}

.add-card{
    justify-self: start;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.add-card:hover{
    background-color: var(--primary-color);

}

.add-card i{
    font-size: 1.5rem;
    color: var(--primary-color);

}

.add-card:hover i{
    color: #fff;

}

.content.card-product {
    display: grid;
    grid-template-columns: auto 1fr; /* caja a la izquierda, precio a la derecha */
    align-items: center;
    gap: 1rem;
}

/* Estilo del precio */
.content.card-product .price {
    display: flex;
    justify-content: flex-end; /* pega el precio a la derecha */
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Precio tachado */
.content.card-product .price span {
    font-size: 1.3rem;
    font-weight: 400;
    text-decoration: line-through;
    color: #777;
}

/*Gallery*/

.gallery{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Todas las imágenes llenan su celda */
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Efecto hover */
.gallery img:hover {
    transform: scale(1.05);
}

/* Imagen central grande */
.gallery-img-3 {
    grid-column: 2 / 4;  /* ocupa las columnas 2 y 3 */
    grid-row: 1 / 3;     /* ocupa las dos filas */
}

/* Las otras imágenes más pequeñas */
.gallery-img-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.gallery-img-2 { grid-column: 4 / 5; grid-row: 1 / 2; }
.gallery-img-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.gallery-img-5 { grid-column: 4 / 5; grid-row: 2 / 3; }

/*Specials*/
.specials{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;

}

/*BLOGS*/
.blogs {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.container-blogs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.cards-blog {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.cards-blog .container-img {
	border-radius: 2rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.button-group-blog {
	position: absolute;
	bottom: 1.5rem;
	right: -2.5rem;

	display: flex;
	gap: 0.7rem;
	z-index: -1;
	transition: all 0.3s ease;
}

.cards-blog:hover .button-group-blog {
	z-index: 0;
	right: 1.5rem;
}

.button-group-blog span {
	background-color: #fff;
	padding: 1rem;
	border-radius: 50%;
	transition: all 0.4s ease;

	display: flex;
	align-items: center;
	justify-content: center;
}

.button-group-blog span i {
	font-size: 1.3rem;
}

.button-group-blog span:hover {
	background-color: var(--primary-color);
}

.button-group-blog span:hover i {
	color: #fff;
}

.content-blog h3 {
	font-size: 1.8rem;
	margin-bottom: 1.7rem;
	color: var(--dark-color);
	font-weight: 500;
}

.content-blog h3:hover {
	color: var(--primary-color);
	cursor: pointer;
}

.content-blog p {
	margin-top: 1rem;
	font-size: 1.4rem;
	color: #777;
}

.content-blog span {
	color: var(--primary-color);
	font-size: 1.3rem;
}

.btn-read-more {
	padding: 1rem 3rem;
	background-color: var(--primary-color);
	color: #fff;
	text-transform: uppercase;
	font-size: 1.4rem;
	border-radius: 2rem;
	margin: 3rem 0 5rem;
	display: inline-block;
	cursor: pointer;
}

.btn-read-more:hover {
	background-color: var(--dark-color);
}


/* ********************************** */
/*               FOOTER               */
/* ********************************** */

.footer {
	background-color: var(--primary-color);
}

.container-footer {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 3rem;
}

.menu-footer {
	display: grid;
	grid-template-columns: repeat(3, 1fr) 30rem;
	gap: 3rem;
	justify-items: center;
}

.title-footer {
	font-weight: 600;
	font-size: 1.6rem;
	text-transform: uppercase;
}

.contact-info,
.information,
.my-account,
.newsletter {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info ul,
.information ul,
.my-account ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info ul li,
.information ul li,
.my-account ul li {
	list-style: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 300;
}

.information ul li a,
.my-account ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 300;
}

.information ul li a:hover,
.my-account ul li a:hover {
	color: var(--dark-color);
}

.social-icons {
	display: flex;
	gap: 1.5rem;
}

.social-icons span {
	border-radius: 50%;
	width: 3rem;
	height: 3rem;

	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icons span i {
	color: #fff;
	font-size: 1.2rem;
}

.facebook {
	background-color: #3b5998;
}

.twitter {
	background-color: #00acee;
}

.youtube {
	background-color: #c4302b;
}

.pinterest {
	background-color: #c8232c;
}

.instagram {
	background: linear-gradient(
		#405de6,
		#833ab4,
		#c13584,
		#e1306c,
		#fd1d1d,
		#f56040,
		#fcaf45
	);
}

.content p {
	font-size: 1.4rem;
	color: #fff;
	font-weight: 300;
}

.content input {
	outline: none;
	background: none;
	border: none;
	border-bottom: 2px solid #d2b495;
	cursor: pointer;
	padding: 0.5rem 0 1.2rem;
	color: var(--dark-color);
	display: block;
	margin-bottom: 3rem;
	margin-top: 2rem;
	width: 100%;
	font-family: inherit;
}

.content input::-webkit-input-placeholder {
	color: #eee;
}

.content button {
	border: none;
	background-color: #000;
	color: #fff;
	text-transform: uppercase;
	padding: 1rem 3rem;
	border-radius: 2rem;
	font-size: 1.4rem;
	font-family: inherit;
	cursor: pointer;
	font-weight: 600;
}

.content button:hover {
	background-color: var(--background-color);
	color: var(--primary-color);
}

.copyright {
	display: flex;
	justify-content: space-between;
	padding-top: 2rem;

	border-top: 1px solid #d2b495;
}

.copyright p {
	font-weight: 400;
	font-size: 1.6rem;
}

.client-logo-strip{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:9%;

  width:58%;
  height:105px;

  overflow:hidden;

  
  border-radius:22px;
  

  display:flex;
  align-items:center;
}

.client-logo-track{
  display:flex;
  align-items:center;
  gap:14px;

  width:max-content;
  animation:logoCarousel 22s linear infinite;
}

.client-logo-card{
  width:150px;
  height:68px;

  background:#eef7fb;
  border-radius:8px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.client-logo-card img{
  max-width:105px;
  max-height:42px;
  object-fit:contain;
}

@keyframes logoCarousel{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}


/* ********************************** */
/*       MEDIA QUERIES -- 768px       */
/* ********************************** */
@media (max-width: 768px) {
	html {
		font-size: 55%;
	}

	.hero {
		padding: 2rem;
	}

	.customer-support {
		display: none;
	}

	.content-shopping-cart {
		display: none;
	}

	.navbar {
		padding: 1rem 2rem;
	}

	.navbar .fa-bars {
		display: block;
		color: #fff;
		font-size: 3rem;
	}

	.menu {
		display: none;
	}

	.content-banner {
		max-width: 50rem;
		margin: 0 auto;
		padding: 25rem 0;
	}

	.container-features {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem 2rem;
	}

	.card-feature {
		padding: 2rem;
	}

	.heading-1 {
		font-size: 2.4rem;
	}

	.card-category {
		height: 12rem;
	}

	.card-category p {
		font-size: 2rem;
		text-align: center;
		line-height: 1;
	}

	.card-category span {
		font-size: 1.4rem;
	}

	.container-options {
		align-items: center;
	}

	.container-options span {
		text-align: center;
		padding: 1rem 2rem;
	}

	.container-products {
		grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
	}

	.gallery {
		grid-template-rows: repeat(2, 15rem);
	}

	.container-blogs {
		overflow: hidden;
		grid-template-columns: 1fr 1fr;

		height: 52rem;
	}

	.menu-footer {
		grid-template-columns: repeat(2, 1fr);
	}

	.copyright {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}
}


/* MEDIA QUERIES -- 468px*/

@media (max-width: 468px) {
	html {
		font-size: 42.5%;
	}

	.content-banner {
		max-width: 50rem;
		padding: 22rem 0;
	}

	.heading-1 {
		font-size: 2.8rem;
	}

	.card-feature {
		flex-direction: column;
		border-radius: 2rem;
	}

	.feature-content {
		align-items: center;
	}

	.feature-content p {
		font-size: 1.4rem;
		text-align: center;
	}

	.feature-content span {
		font-size: 1.6rem;
		text-align: center;
	}

	.container-options span {
		font-size: 1.8rem;
		padding: 1rem 1.5rem;
		font-weight: 500;
	}

	.container-products {
		grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
		gap: 1rem;
	}

	.container-img .discount {
		font-size: 2rem;
	}

	.content-card-product h3 {
		font-size: 2.2rem;
	}

	.gallery {
		grid-template-rows: repeat(2, 20rem);
	}

	.blogs {
		padding: 2rem;
	}

	.container-blogs {
		grid-template-columns: 1fr;
		height: 75rem;
	}

	.content-blog h3 {
		font-size: 2.4rem;
	}

	.content-blog span {
		font-size: 1.8rem;
	}

	.content-blog p {
		font-size: 2.2rem;
	}

	.btn-read-more{
		font-size: 1.8rem;
	}

	.contact-info ul,
	.information ul,
	.my-account ul{
		display: none;
	}

	.contact-info {
		align-items: center;
	}

	.menu-footer{
		grid-template-columns: 1fr;
	}

	.content p{
		font-size: 1.6rem;
	}
}

/*  EFECTO HOVER DEL LOGO FALCRON - ANIMACIÓN PREMIUM  */


.container-logo img {
    transition: transform 0.6s ease, filter 0.4s ease;
    cursor: pointer;
}

/* Al pasar el mouse, el logo crece, rota y brilla suavemente */
.container-logo img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(199, 161, 122, 0.8));
}

/* 💫 Versión con rebote suave (al retirar el cursor) */
.container-logo img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Al pasar el mouse: se hunde ligeramente */
.container-logo img:hover {
    transform: scale(0.94); /* se reduce un poco para dar efecto de presión */
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    filter: brightness(0.95);
}

/* Efecto al cargar: entrada suave */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container-logo img {
    animation: fadeInLogo 0.8s ease;
}


/*  EFECTO SUAVE AL PASAR EL MOUSE SOBRE LOS ICONOS  */


.container-user i {
    transition: transform 0.25s ease, filter 0.25s ease;
    cursor: pointer;
}

/* Efecto "hundirse" al pasar el mouse */
.container-user i:hover {
    transform: scale(0.92);
    filter: brightness(0.9);
}

/* Para que el texto "Paquetes" también tenga efecto visual */
.content-shopping-cart {
    transition: transform 0.25s ease;
}

.container-user:hover .content-shopping-cart {
    transform: scale(0.98);
}

.cards-blog .container-img img {
    height: 140px;   /* ajusta a tu gusto */
    object-fit: cover;
}

/* ================= OPTIMIZACIÓN MÓVIL FALCRON ================= */

@media (max-width: 768px){

  body{
    overflow-x:hidden;
  }

  .container-hero{
    padding:1rem;
  }

  .hero{
    flex-direction:column;
    gap:1.5rem;
    text-align:center;
  }

  .container-logo{
    justify-content:center;
  }

  .container-logo img{
    max-width:160px;
  }

  .container-navbar{
    padding:0;
  }

  .navbar{
    flex-direction:column;
    gap:1.5rem;
  }

  .search-form{
    width:90%;
  }

  .search-form input{
    width:100%;
  }

  .banner{
    height:65rem;
    background-position:center;
  }

  .content-banner{
    padding:18rem 2rem 0;
    text-align:center;
  }

  .content-banner h2{
    font-size:3rem;
  }

  .client-logo-strip{
    width:90%;
    height:80px;
    bottom:7%;
  }

  .client-logo-card{
    width:120px;
    height:58px;
  }

  .client-logo-card img{
    max-width:85px;
    max-height:34px;
  }

  .container-features{
    grid-template-columns:1fr;
    padding:3rem 2rem;
  }

  .card-features{
    padding:2rem;
    justify-content:flex-start;
  }

  .container-categories{
    grid-template-columns:1fr;
    padding:0 2rem;
  }

  .card-category{
    height:18rem;
  }

  .container-products{
    grid-template-columns:1fr;
    padding:0 2rem;
  }

  .card-product{
    padding:2rem;
  }

  .gallery{
    grid-template-columns:1fr;
    grid-template-rows:auto;
    padding:2rem;
  }

  .gallery-img-1,
  .gallery-img-2,
  .gallery-img-3,
  .gallery-img-4,
  .gallery-img-5{
    grid-column:auto;
    grid-row:auto;
    height:220px;
  }

  .container-blogs{
    grid-template-columns:1fr;
    height:auto;
    padding:0 2rem;
  }

  .cards-blog .container-img img{
    height:180px;
  }

  .menu-footer{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }
}