@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
	scroll-behavior: smooth;
}

body,
* {
	font-family: "Montserrat", sans-serif;
}

.navbar-nav {
	width: 100%;
}

.navbar-nav .nav-item {
	flex: 1;
}

.navbar-nav .nav-link {
	text-align: center;
	font-weight: 900;
	font-style: italic;
	color: #2f3e4d !important;
}

@media (max-width: 991.98px) {

	.navbar-nav .nav-item {
		flex: initial;
		width: 100%;
	}

	.navbar-nav .nav-link {
		padding: 15px;
		border-top: 1px solid #eee;
	}
}

/* --- ESTILOS BASE (MÓVIL PRIMERO) --- */
.hero-section {
	background-image: url('../images/home/hero-2.png');
	/* En móvil estiramos al 100% exacto para mantener la proporción de la franja gris */
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 180px;
	/* Altura proporcional adaptada a móviles */
	padding: 20px 0;
	width: 90%;
	overflow: hidden;
}

/* Contenedor del contenido en móvil (le damos un pequeño margen derecho para que no toque el borde del gris) */
.hero-content-block {
	padding-right: 15px;
}

/* Tamaño del logo en móvil */
.hero-logo {
	margin-top: 15px;
	max-width: 150px;
	width: 100%;
	height: auto;
	display: inline-block;
}

/* Eslogan en móvil */
.hero-slogan {
	color: #3B4C57;
	font-size: 0.95rem;
	/* Tamaño compacto para que quepa en la zona gris */
	font-weight: 900;
	font-style: italic;
	letter-spacing: -0.3px;
	margin: 0;
	line-height: 1.2;
}

.hero-slogan .highlight-text {
	color: #0DB8B7;
	font-weight: 900;
}

/* --- TABLETS Y PANTALLAS MEDIANAS (SM / MD) --- */
@media (min-width: 576px) {
	.hero-section {
		min-height: 280px;
		padding: 40px 0;
	}

	.hero-logo {
		margin-top: 20px;
		max-width: 200px;
	}

	.hero-slogan {
		font-size: 1.3rem;
	}
}

/* --- DESKTOP (LG / XL) --- */
@media (min-width: 992px) {
	.hero-section {
		background-size: cover;
		/* Volvemos a cover en pantallas grandes para excelente resolución */
		background-position: left center;
		min-height: 450px;
		padding: 60px 0;
	}

	.hero-content-block {
		padding-right: 0;
		/* Empujamos el bloque un poco a la derecha en desktop para centrarlo en la franja gris */
		margin-left: 25%;
	}

	.hero-logo {
		max-width: 550px;
	}

	.hero-slogan {
		font-size: 1.8rem;
		letter-spacing: -0.5px;
	}

	.navbar .dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
	}
}

/* Sección de Introducción / Misión Corta */
.intro-section {
	background-color: #ffffff;
	padding: 80px 0;
	/* Buen espacio arriba y abajo */
}

/* Estilo para el texto (SemiBold Italic) */
.intro-text {
	color: #3B4C57;
	/* Tu código oscuro */
	font-size: 1.65rem;
	font-weight: 600;
	/* Equivalente a SemiBold */
	font-style: italic;
	/* Italic */
	line-height: 1.4;
	letter-spacing: -0.3px;
	margin: 0;
}

/* --- Adaptación para Versión Móvil y Tablet --- */
@media (max-width: 767.98px) {
	.intro-section {
		padding: 50px 0;
		/* Reducimos el padding en móviles */
	}

	.intro-text {
		font-size: 1.25rem;
		/* Ajuste de tamaño de fuente para pantallas pequeñas */
		line-height: 1.3;
	}
}

/* Sección Aliado */
.aliado-section {
	background-color: #ffffff;
	width: 100%;
	overflow: hidden;
}

/* Manejo de la imagen de la izquierda */
.agente-img {
	max-height: 400px;
	/* Altura máxima para desktop */
	width: auto;
	display: block;
}

/* Texto superior "CON" */
.aliado-pre {
	color: #3B4C57;
	/* Tu código oscuro */
	font-size: 2rem;
	font-weight: 900;
	/* ExtraBold */
	font-style: italic;
	display: block;
	text-transform: uppercase;
}

/* Control del logo central */
.aliado-logo {
	max-width: 400px;
	width: 100%;
	height: auto;
	display: inline-block;
}

/* Texto inferior "Tienes un aliado" */
.aliado-title {
	color: #3B4C57;
	font-size: 2.5rem;
	font-weight: 900;
	/* ExtraBold */
	font-style: italic;
	margin: 0;
	letter-spacing: -0.5px;
}

/* Botón estilizado personalizado */
.btn-contacto {
	background-color: #3B4C57;
	/* Tu código oscuro */
	color: #ffffff !important;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 12px 35px;
	border-radius: 50px;
	/* Bordes completamente redondeados como el boceto */
	border: 2px solid transparent;
	transition: all 0.3s ease;
	display: inline-block;
}

/* Efecto Hover para interactividad */
.btn-contacto:hover {
	background-color: #0DB8B7;
	/* Cambia a tu verde aqua al pasar el mouse */
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(13, 184, 183, 0.3);
}

/* --- Adaptación para Versión Móvil y Tablet --- */
@media (max-width: 767.98px) {
	.agente-img {
		max-height: 280px;
		margin: 0 auto;
		/* Centra la imagen de la mujer en móviles */
	}

	.aliado-pre {
		font-size: 1.5rem;
	}

	.aliado-logo {
		max-width: 220px;
	}

	.aliado-title {
		font-size: 1.8rem;
	}

	.btn-contacto {
		font-size: 1.1rem;
		padding: 10px 30px;
	}
}

/* Sección de Productos con Fondo de Imagen */
.products-section {
	background-image: url('../images/home/bg-slider.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 60px 0 80px 0;
	width: 100%;
	position: relative;
}

/* Título (Black Italic) */
.products-title {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 900;
	/* Black */
	font-style: italic;
	/* Italic */
	letter-spacing: -0.5px;
}

/* Tarjeta del Producto */
.product-card {
	background-color: #3B4C57;
	/* Tu código oscuro */
	border-radius: 20px;
	/* Esquinas redondeadas del diseño */
	overflow: hidden;
	height: 100%;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Ajuste de la foto del producto */
.product-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	/* Ajusta la foto sin deformarla */
	border-bottom: 3px solid transparent;
}

/* Contenedor del texto informativo */
.product-info {
	padding: 20px 15px;
	color: #ffffff;
}

/* Nombre del Producto (Black Italic) */
.product-name {
	font-size: 1.1rem;
	font-weight: 900;
	/* Black */
	font-style: italic;
	/* Italic */
	margin-bottom: 12px;
	letter-spacing: -0.2px;
}

/* Líneas de detalle (Semi Bold) */
.product-detail {
	font-size: 0.85rem;
	font-weight: 600;
	/* Semi Bold */
	margin-bottom: 5px;
	text-transform: uppercase;
}

.product-detail:last-child {
	margin-bottom: 0;
}

/* --- Personalización de controles del Carrusel (Flechas < y >) --- */
.carousel-control-prev,
.carousel-control-next {
	width: 5%;
	opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
}

/* Botón inferior "Ver más" */
.btn-ver-mas {
	background-color: #0DB8B7;
	/* Tu código verde aqua */
	color: #ffffff !important;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 10px 50px;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-ver-mas:hover {
	background-color: #3B4C57;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- Adaptación Responsiva --- */
@media (max-width: 767.98px) {
	.products-title {
		font-size: 1.8rem;
	}

	.product-img {
		height: 150px;
	}

	/* Hacemos un poco más de espacio en las flechas en móviles */
	.carousel-control-prev,
	.carousel-control-next {
		width: 8%;
	}
}

.products-slider .slick-slide {
	padding: 0 12px;
}

.products-slider .slick-list {
	margin: 0 -12px;
}

.product-card {
	height: 100%;
}

/* ==========================================================================
   SECCIÓN COBERTURA Y PUNTUALIDAD
   ========================================================================== */

.cobertura-section {
	position: relative;
	padding: 80px 0 60px 0;
	background-color: #ffffff;
	overflow: hidden;
	/* Evita desbordes horizontales */
}

/* Figura Aqua de Fondo (El bloque que va detrás del camión) */
.cobertura-bg-shape {
	position: absolute;
	top: 16%;
	/* Lo bajamos un poco respecto al borde superior */
	right: 0;
	width: 42%;
	/* Abarca un poco menos de la mitad de la pantalla */
	height: 58%;
	background-color: #0DB8B7;
	/* Redondeamos solo las esquinas izquierdas como en el diseño */
	border-top-left-radius: 60px;
	border-bottom-left-radius: 60px;
	z-index: 1;
}

/* Asegura que el contenido quede por encima de la figura aqua */
.cobertura-section .wrapper-z {
	z-index: 2;
}

/* Título Principal (Black Italic) */
.cobertura-title {
	font-size: 3rem;
	/* Tamaño muy grande para desktop */
	font-weight: 900;
	font-style: italic;
	line-height: 1.05;
	/* Juntamos las dos líneas un poco más */
	letter-spacing: -1.5px;
	margin: 0;
}

/* Colores personalizados para el texto */
.text-dark-custom {
	color: #3B4C57;
}

.text-aqua-custom {
	color: #0DB8B7;
}

/* Control del Camión */
.camion-img {
	width: 110%;
	/* Forzamos a que el camión sea más grande que su columna */
	max-width: none;
	margin-left: -10%;
	/* Lo desplazamos hacia la izquierda para que rompa la cuadrícula y tape un poco el espacio vacío */
	z-index: 3;
	position: relative;
}

/* Texto inferior (SemiBold Italic o similar al diseño) */
.cobertura-subtitle {
	color: #3B4C57;
	font-size: 1.5rem;
	font-weight: 800;
	font-style: italic;
	margin: 0;
	letter-spacing: -0.3px;
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVA
   ========================================================================== */

/* En Tablets y pantallas medianas */
@media (max-width: 991.98px) {
	.cobertura-title {
		font-size: 3rem;
		margin-bottom: 2rem;
		/* Obligamos a que haya más espacio debajo del título */
	}

	.cobertura-bg-shape {
		width: 85%;
		height: 45%;
		/* Reducimos la altura para que se mantenga estrictamente detrás del camión */
		top: auto;
		bottom: 22%;
		/* Lo anclamos desde abajo de forma segura */
		border-top-left-radius: 40px;
		border-bottom-left-radius: 40px;
	}

	.camion-img {
		width: 90%;
		/* Achicamos un pelín el camión para que respire mejor en tableta */
		margin-left: 0;
		margin-top: 10px;
	}
}

/* En Celulares */
@media (max-width: 767.98px) {
	.cobertura-section {
		padding: 50px 0;
	}

	.cobertura-title {
		font-size: 2.2rem;
		margin-bottom: 1.5rem;
	}

	.cobertura-bg-shape {
		width: 90%;
		height: 38%;
		/* En celulares la hacemos aún más corta para que no toque el texto */
		bottom: 20%;
		border-top-left-radius: 30px;
		border-bottom-left-radius: 30px;
	}

	.camion-img {
		width: 100%;
	}

	.cobertura-subtitle {
		font-size: 1.15rem;
		padding: 0 15px;
		line-height: 1.3;
	}
}

/* ==========================================================================
   SECCIÓN QUIENES SOMOS
   ========================================================================== */

.quienes-somos-section {
	padding: 80px 0;
	background-color: #ffffff;
	overflow: hidden;
	/* Evita que el fondo gris se salga de la pantalla */
}

/* La imagen de fondo gris anclada a la izquierda */
.quienes-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	/* Cubre un poco más de la mitad de la pantalla */
	height: 100%;
	background-image: url('../images/home/bg-quienes-somos.png');
	background-size: cover;
	background-position: right center;
	/* Asegura que el corte del diseño se vea bien */
	background-repeat: no-repeat;
	z-index: 1;
}

/* Elevamos el contenido para que esté por encima de la imagen gris */
.quienes-somos-section .wrapper-z {
	z-index: 2;
}

/* Bloque contenedor del texto para ordenarlo mejor en desktop */
.quienes-text-block {
	max-width: 480px;
	margin: 0 auto;
}

/* Título Principal (Black Italic) */
.quienes-title {
	color: #3B4C57;
	font-size: 3rem;
	font-weight: 900;
	font-style: italic;
	letter-spacing: -0.5px;
}

/* Texto de Párrafo (Semi Bold) */
.quienes-text {
	color: #3B4C57;
	font-size: 1.15rem;
	font-weight: 600;
	/* Semi Bold */
	line-height: 1.4;
	text-align: left;
}

/* --- Estilos del Video --- */
.video-wrapper {
	border-radius: 35px;
	/* Bordes redondeados agresivos como en tu boceto */
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	/* Sombra para dar profundidad */
	display: inline-block;
	width: 100%;
	max-width: 520px;
	background-color: #e9ecef;
	/* Color de carga temporal */
}

.quienes-video {
	width: 100%;
	height: auto;
	display: block;
	/* Evita espacios en blanco debajo de la etiqueta video */
	object-fit: cover;
}

/* Botón Verde Aqua */
.btn-ver-mas-aqua {
	background-color: #0DB8B7;
	color: #ffffff !important;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 10px 50px;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-ver-mas-aqua:hover {
	background-color: #3B4C57;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVA
   ========================================================================== */

/* En Desktop empujamos el texto hacia la derecha para que quede pegado a la división */
@media (min-width: 992px) {
	.quienes-text-block {
		margin-right: 0;
		margin-left: auto;
		padding-right: 20px;
	}
}

/* En Tablets y pantallas medianas */
@media (max-width: 991.98px) {
	.quienes-bg-image {
		width: 100%;
		/* En móviles hacemos que el fondo gris abarque todo a lo ancho */
		height: 55%;
		/* Solo la mitad superior */
		background-size: 100% 100%;
	}

	.quienes-title {
		font-size: 2.5rem;
		text-align: center !important;
		/* Centramos para celular */
	}

	.quienes-text {
		text-align: center;
	}

	.video-wrapper {
		max-width: 80%;
		/* Ajuste para que no toque los bordes del dispositivo */
	}
}

/* En Celulares Pequeños */
@media (max-width: 767.98px) {
	.quienes-somos-section {
		padding: 50px 0;
	}

	.quienes-bg-image {
		height: 48%;
		/* Reducimos la altura del gris por el tamaño del texto */
	}

	.quienes-title {
		font-size: 2.2rem;
	}

	.quienes-text {
		font-size: 1rem;
		padding: 0 15px;
	}

	.video-wrapper {
		max-width: 95%;
	}
}

/* ==========================================================================
   SECCIÓN FOOTER (CONTACTO)
   ========================================================================== */

.footer-section {
	background-image: url('../images/home/bg-footer.webp');
	background-size: cover;
	background-position: center top;
	/* Alineado arriba para mostrar los rollos de espuma */
	background-repeat: no-repeat;
	/* El padding-top debe ser lo bastante grande para librar los rollos de la imagen.
     Ajusta este 280px dependiendo de qué tan altos sean los rollos en tu imagen real */
	padding: 25% 0 30px 0;
	position: relative;
	width: 100%;
}

/* Título ¡Contáctanos! (Black Italic) */
.footer-title {
	color: #0DB8B7;
	/* Verde aqua */
	font-size: 3.5rem;
	font-weight: 900;
	/* Black */
	font-style: italic;
	letter-spacing: -1px;
}

/* Control de los íconos SVG/PNG */
.footer-icon {
	width: 28px;
	height: auto;
	display: block;
}

/* Textos informativos (Semi Bold) */
.footer-text {
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 600;
	/* Semi Bold */
	line-height: 1.5;
}

/* Identación del botón para que se alinee visualmente con el texto de la dirección */
.btn-footer-wrapper {
	padding-left: 45px;
}

/* Botón (Extra Bold Italic) */
.btn-envianos {
	background-color: #0DB8B7;
	color: #ffffff !important;
	font-size: 1.3rem;
	font-weight: 800;
	/* Extra Bold */
	font-style: italic;
	padding: 12px 35px;
	border-radius: 50px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	display: inline-block;
}

/* Efecto hover estilo fantasma (Ghost Button) */
.btn-envianos:hover {
	background-color: transparent;
	color: #0DB8B7 !important;
	border-color: #0DB8B7;
	transform: translateY(-2px);
}

/* Copyright (Normal / Light) */
.copyright-text {
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 600;
	opacity: 0.8;
	margin-top: 30px;
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVA FOOTER
   ========================================================================== */

/* En Tablets */
@media (max-width: 991.98px) {
	.footer-section {
		padding-top: 40%;
		/* Reducimos el margen superior porque la imagen se escala */
	}

	.footer-title {
		font-size: 3rem;
	}
}

/* En Celulares */
@media (max-width: 767.98px) {
	.footer-section {
		padding-top: 100%;
		/* Margen para celular */
	}

	.footer-title {
		font-size: 2.2rem;
	}

	.footer-text {
		font-size: 1rem;
	}

	.footer-icon {
		width: 22px;
		/* Íconos un poco más pequeños */
	}

	.btn-footer-wrapper {
		padding-left: 0;
		/* En celular el botón va centrado al 100% */
		text-align: center;
		margin-top: 30px;
	}

	.btn-envianos {
		font-size: 1.15rem;
		padding: 10px 30px;
	}
}

/* ==========================================================================
   HERO - PÁGINA DE PRODUCTOS (BASE MÓVIL PRIMERO)
   ========================================================================== */

.hero-productos-section {
	background-image: url('../images/products/bg-hero-productos.png');
	background-size: 100% 100%;
	/* Fuerza la proporción del semicírculo para que no tape el texto */
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 180px;
	/* Altura adaptada a celulares */
	padding: 30px 0;
	width: 100%;
	overflow: hidden;
}

/* En celular le damos un margen derecho para que el texto no toque el borde de la pantalla */
.hero-productos-content {
	padding-right: 15px;
}

/* Título Principal (Black Italic) */
.hero-productos-title {
	font-size: 1.8rem;
	/* Tamaño optimizado para celular */
	font-weight: 900;
	font-style: italic;
	line-height: 1.1;
	letter-spacing: -1px;
	margin: 0;
}

.text-dark-custom {
	color: #3B4C57;
}

.text-aqua-custom {
	color: #0DB8B7;
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVA (HERO PRODUCTOS)
   ========================================================================== */

/* --- Tablets y pantallas medianas (SM / MD) --- */
@media (min-width: 576px) {
	.hero-productos-section {
		min-height: 280px;
		padding: 40px 0;
	}

	.hero-productos-title {
		font-size: 3rem;
		/* Crece en tablet */
	}
}

/* --- Desktop (LG / XL) --- */
@media (min-width: 992px) {
	.hero-productos-section {
		background-size: cover;
		/* Volvemos a cover en pantallas grandes */
		background-position: left center;
		min-height: 450px;
		padding: 60px 0;
	}

	.hero-productos-content {
		margin-left: 20%;
		/* Empujamos todo el bloque al centro visual de la espuma */
		padding-right: 0;
	}

	.hero-productos-title {
		font-size: 4.5rem;
		/* Tamaño gigante para desktop */
	}
}

/* ==========================================================================
   SECCIÓN GRID DE PRODUCTOS (LISTADO)
   ========================================================================== */

.products-grid-section {
	background-color: #ffffff;
}

/* Título superior de cada producto (Black Italic) */
.product-grid-title {
	font-size: 1.6rem;
	font-weight: 900;
	font-style: italic;
	text-align: center;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -0.5px;

	/* Flexbox para alinear perfectamente los títulos de 1 y 2 líneas */
	min-height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* Tarjeta Base */
.product-grid-card {
	border-radius: 25px;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Contenedor de Imagen (Truco de la curva) */
.product-img-wrapper {
	border-radius: 25px 25px 50px 50px;
	/* Redondeo extremo abajo para la curva cóncava */
	overflow: hidden;
	position: relative;
	z-index: 2;
	height: 230px;
	/* Fijamos altura para que todas las fotos se vean idénticas */
}

.product-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Evita que las fotos se aplasten */
}

/* Caja de color inferior */
.product-content {
	border-radius: 25px;
	padding: 100px 45px 30px 45px;
	/* Padding extra arriba por la superposición */
	margin-top: -60px;
	/* Este margen negativo la jala debajo de la imagen */
	position: relative;
	z-index: 1;
	flex-grow: 1;
	/* Obliga a la tarjeta a rellenar el espacio vertical en desktop */
}

/* Variantes de Color de las tarjetas */
.card-dark .product-content {
	background-color: #3B4C57;
	color: #ffffff;
}

.card-aqua .product-content {
	background-color: #0DB8B7;
	color: #ffffff;
}

/* Tipografía de las listas (SemiBold) */
.product-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.product-content ul li {
	font-size: 0.9rem;
	font-weight: 600;
	/* SemiBold */
	line-height: 1.2;
	margin-bottom: 15px;
	position: relative;
	padding-left: 15px;
	/* Espacio para el bullet custom */
	text-transform: uppercase;
}

.product-content ul li:last-child {
	margin-bottom: 0;
}

/* Bullet points personalizados en blanco */
.product-content ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* Clase de utilidad para las letras Black (Pesadas) dentro de la lista */
.font-weight-black {
	font-weight: 900 !important;
}

/* ==========================================================================
   ADAPTACIÓN RESPONSIVA
   ========================================================================== */

@media (max-width: 991.98px) {
	.product-grid-title {
		font-size: 1.4rem;
	}
}

@media (max-width: 767.98px) {
	.product-grid-title {
		min-height: auto;
		/* En celular no hace falta alinear los títulos */
		justify-content: center;
	}

	.product-img-wrapper {
		height: 200px;
		/* Reducimos un poco la altura de la imagen en móviles */
	}
}

/* ==========================================================================
   SEPARACIÓN ENTRE FILAS (GRID DE PRODUCTOS)
   ========================================================================== */

/* Forzamos un espacio mucho más amplio en escritorio, sobreescribiendo el mb-5 de Bootstrap */
.products-grid-section .row>div {
	margin-bottom: 100px !important;
}

/* En celulares reducimos un poco este margen para que el scroll no sea tan largo */
@media (max-width: 767.98px) {
	.products-grid-section .row>div {
		margin-bottom: 70px !important;
	}
}

/*=============================================
WHATS
=============================================*/
#wa {
	position: fixed;
	z-index: 999;
	bottom: 80px;
	right: 20px;
}

/*=============================================
SCROLL TOP
=============================================*/
#return-to-top {
	position: fixed;
	z-index: 999;
	bottom: 20px;
	right: 20px;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.7);
	width: 50px;
	height: 50px;
	text-decoration: none;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	display: none;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Cambiamos la 'i' por 'svg' */
#return-to-top svg {
	color: #fff;
	/* Hace la flecha blanca porque tu SVG usa stroke="currentColor" */
	width: 24px;
	/* Hace la flecha más pequeña */
	height: 24px;
	position: relative;
	/* Centramos el icono de 24px dentro del botón de 50px */
	left: 13px;
	top: 13px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#return-to-top:hover {
	background: rgba(0, 0, 0, 0.9);
}

/* Cambiamos la 'i' por 'svg' para el efecto hover */
#return-to-top:hover svg {
	top: 8px;
	/* Mueve la flecha ligeramente hacia arriba al pasar el mouse */
}