html,
body {
	margin: 0;
	height: 100%;
}

* {
	font-family: 'Roboto';
}

body {
	background-color: rgb(240, 240, 240);
}

.btn-scroll-top {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	border-style: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 20px;
	opacity: 0;
	z-index: 99;
	cursor: pointer;
	outline: 0 !important;
	transition: opacity, visibility, ease 0.6s;
	visibility: hidden;
	border-radius: 50%;
	color: #fff;
	background-color: var(--principal-color);
}

/* Utilidades */

.desktop {
	display: none;
}

/* ESTILOS DE LA CABECERA */

.cabecera {
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #fff;
}

.cabecera__contenedor-logo-nombre {
	display: flex;
	align-items: center;
}

.cabecera__logo {
	width: 60px;
	height: 60px;
	margin: 0px 0px 0px 100px;
}

.cabecera__nombre {
	font-family: 'Barlow';
	font-size: 30px;
	margin: 0px 10px;
	color: var(--principal-color);
	font-weight: 300;
}

.deskto {
	display: none;
}

.cabecera__navbar {
	display: flex;
	margin: 0px 10px 0px 0px;
	justify-content: center;
	align-items: center;
}

.cabecera__navbar li {
	list-style: none;
}

.cabecera__navbar a {
	display: block;
	padding: 10px 25px;
	font-weight: 300;
	position: relative;
	text-decoration: none;
	color: var(--principal-color);
}

.cabecera__icon-menu {
	margin: 0px 5px;
}

.cabecera__navbar a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 24px;
	transition: transform ease 0.3s;
	transform: scale(0);
	background-color: deepskyblue;
}

.cabecera__navbar a:hover::before {
	transform: scale(1);
}

/* ESTILOS DEL COVER*/

.cover {
	width: 100%;
	position: relative;
}

.cover__image {
	object-fit: cover;
	width: 100%;
	height: 80vh;
}

.cover__slogan-title {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 25%;
	left: 0;
	font-size: 40px;
	font-weight: 500;
	color: #fff;
	font-family: 'Nunito';
}

.cover__slogan-text {
	position: absolute;
	width: 100%;
	top: 40%;
	left: 0;
	text-align: center;
	font-family: 'Nunito';
	font-size: 20px;
	color: #fff;
}

/* ESTILOS DE LOS CONTENEDORES DE TITULOS DE SECCIONES */

.container-title {
	width: 100%;
	margin: 70px 0px;
	display: flex;
	justify-content: center;
}

.container-title__title-section {
	font-weight: 300;
	text-align: center;
	font-family: 'Roboto';
	position: relative;
	cursor: pointer;
	color: var(--principal-color);
}

.container-title__title-section::before,
.container-title__title-section::after {
	content: '';
	background-color: currentColor;
	position: absolute;
	width: 120px;
	height: 3px;
	cursor: pointer;
	transition: transform ease 0.3s;
	top: 13px;
}

/* ESTA ES LA RAYA DERECHA (no es equivocacion) */

.container-title__title-section::before {
	left: 100%;
	margin-left: 10px;
}

/* ESTA ES LA RAYA IZQUIERDA (no es equivocacion) */

.container-title__title-section::after {
	right: 100%;
	margin-right: 10px;
}

.container-title__title-section:hover::before,
.container-title__title-section:hover::after {
	transform: scale(0.3);
}

/* ESTILOS DE ABOUT-ME */

.about-me {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-me__container-image {
	width: 500px;
	height: 500px;
	display: flex;
	justify-content: center;
	position: relative;
	margin: 0px 60px;
}

.about-me__image {
	width: inherit;
	height: inherit;
	cursor: pointer;
	object-fit: cover;
	border-radius: 10px;
}

.about-me__container-image::before {
	width: inherit;
	height: inherit;
	display: flex;
	position: absolute;
	border-radius: 10px;
	color: #fff;
	font-size: 70px;
	text-align: center;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	cursor: pointer;
	transition: transform ease 0.6s;
	background-color: var(--principal-color-blur);
	content: 'Katherine Estevez';
	font-family: 'Nunito';
	font-weight: 700;
}

.about-me__container-image:hover::before {
	transform: scale(1);
}

.about-me__texts {
	font-size: 22px;
	text-align: justify;
	padding: 0px 40px 0px 10px;
	font-weight: 300;
}

.about-me__link-company {
	text-decoration: none;
}

/* ESTILOS DE LOS BOTOTNES */

.container-btn {
	width: 100%;
	margin: 90px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ESTILOS DEL COMPONENTE BOTON */

.btn {
	padding: 10px 25px;
	font-weight: 600;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	border: 1px solid transparent;
	font-family: 'Barlow';
}

.btn.btn-principal {
	width: 100%;
	background-color: var(--principal-color);
}

.btn.btn-buy {
	display: inline-block;
	background-color: #04b486;
	width: 100%;
	text-align: center;
	text-decoration: none;
	transition: background-color, background ease 0.6s;
	font-family: 'Barlow';
}

.btn.btn-buy:hover {
	background-color: #088a68;
}

/* ESTILOS DE LA SECCION DE SERVICIOS */

.services {
	display: flex;
	width: auto;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.services__container-cards {
	display: flex;
	flex-direction: column;
	width: 400px;
	border-radius: 5px;
	background-color: #fff;
	margin: 0px 30px;
	transition: box-shadow, transform ease 0.6s;
	box-shadow: 0px 0px 3px rgb(212, 212, 212);
}

.services__container-cards:hover {
	cursor: pointer;
	transform: translateY(-5px);
	-webkit-box-shadow: -3px 12px 10px -8px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: -3px 12px 10px -8px rgba(0, 0, 0, 0.75);
	box-shadow: -3px 12px 10px -8px rgba(0, 0, 0, 0.75);
}

.services__container-cards div {
	box-shadow: 0px 0px 2px rgb(212, 212, 212);
}

.services__container-name-service {
	background-color: var(--principal-color);
	border-radius: 5px 5px 0px 0px;
}

.services__name-service {
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-family: 'Nunito';
	font-weight: 300;
}

.services__price-service {
	text-align: center;
	font-size: 18px;
}

.services__description-service {
	text-align: center;
	padding: 10px;
	font-size: 18px;
}

.services__card-item ul {
	list-style: none;
}

.services__card-item ul li {
	padding: 10px;
	position: relative;
	cursor: pointer;
	font-size: 18px;
}

.services__card-item ul li::before {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	top: 10px;
	left: -20px;
	transition: background-color ease 0.3s;
	background-color: #fff;
	border: 2px solid var(--principal-color);
	border-radius: 5px;
}

.services__card-item ul li:hover::before {
	background-color: var(--principal-color);
}

.services__container-btn-buy {
	display: flex;
	padding: 10px;
}

/* ESTILOS DE LA SECCION EBOOK */

.ebook {
	width: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.ebook__container-image {
	width: 400px;
	height: 400px;
	position: relative;
	border-radius: 50%;
}

.ebook__container-image::before {
	content: 'Manual De Uso De Tarjetas De Crédito';
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 40px;
	text-align: center;
	cursor: pointer;
	font-family: 'Barlow';
	font-weight: 600;
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	transition: transform ease 0.3s;
	transform: scale(0);
	background-color: var(--principal-color-blur);
}

.ebook__container-image:hover::before {
	transform: scale(1);
}

.ebook__image {
	width: inherit;
	height: inherit;
	object-fit: cover;
	cursor: pointer;
	border-radius: inherit;
}

.ebook__container-texts {
	width: 600px;
	padding: 30px;
}

.ebook__text {
	font-size: 25px;
	font-weight: 300;
	font-family: 'Nunito';
}

.ebook__container-list {
	list-style: none;
}

.ebook__list-item {
	font-family: 'Nunito';
	font-size: 20px;
	position: relative;
	color: var(--principal-color);
	padding: 5px;
}

.ebook__list-item::before {
	content: '';
	color: #fff;
	width: 15px;
	height: 15px;
	top: 8px;
	left: -20px;
	position: absolute;
	border-radius: 50%;
	background-color: var(--principal-color);
}

/* ESTILOS DE LA SECCION DE GALERIA */

.gallery {
	width: 100%;
}

.gallery__container-images {
	display: flex;
	width: auto;
	justify-content: center;
	flex-wrap: wrap;
}

.gallery__box-image {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	position: relative;
	margin: 10px;
	cursor: pointer;
}

.gallery__box-image::before {
	content: attr(aria-label);
	width: 400px;
	height: 400px;
	margin: 20px;
	color: #fff;
	font-family: 'Barlow';
	font-size: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	border-radius: 10px;
	top: 0;
	left: 0;
	transition: transform ease 0.3s;
	background-color: var(--principal-color-blur);
	position: absolute;
}

.gallery__box-image:hover::before {
	transform: scale(0);
}

.gallery__image {
	width: 400px;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
}

/* ESTILOS DE LA SECCION DE CONTACTAME */

.contact {
	width: 80%;
	display: flex;
	margin: 0 auto;
	box-shadow: 0px 0px 3px rgb(212, 212, 212);
	border-radius: 10px;
	background-color: #fff;
}

.contact__other {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 10px 0px 0px 10px;
	background-color: var(--principal-color);
}

.contact__container-user-icon {
	text-align: center;
	/*margin: 50px 0px 0px 0px;*/
}

.contact__icon-user {
	display: block;
	font-size: 80px;
	color: #fff;
}

.contact__title-other {
	color: #fff;
	font-family: 'Barlow';
	padding: 20px;
	text-align: center;
}

.contact__item {
	color: #fff;
	font-size: 20px;
	text-align: center;
	font-family: 'Barlow';
}

.contact__link {
	color: #fff;
	text-decoration: none;
}

.contact__form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.contact__container-elements {
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.contact__label {
	font-size: 20px;
	padding: 10px;
	font-family: 'Barlow';
	font-weight: 500;
}

.contact__input {
	outline: 0 !important;
	padding: 20px;
	overflow-y: auto;
	resize: none;
	border: 3px solid deepskyblue;
}

/* ESTILOS DEL PIE DE PAGINA */

.footer {
	width: 100%;
	margin: 50px 0px 0px 0px;
	background-color: var(--principal-color);
}

.footer__text {
	color: #fff;
	padding: 20px;
	text-align: center;
	font-family: 'Barlow';
}
