/*
1.- Posicionamiento --> static, absolute, relative, fixed
2.- Modelo de caja (Box model) --> margin, border, padding, content
3.- Tipografía --> tipos, tamaños de fuente, etc
4.- Estilos visuales --> box-shadow, border-radius, gradient, etc
5.- Otros --> reglas CSS y más
*/

:root {
	--bitcoin-orange: #f7931a;
	--soft-orange: #ffe9d5;
	--secondary-blue: #1a9af7;
	--soft-blue: #e7f5ff;
	--warm-black: #282623;
	--black: #201e1c;
	--grey: #bababa;
	--off-white: #faf8f7;
	--just-white: #fff;
}

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

html {
	font-size: 62.5%;
	font-family: "DM Sans", sans-serif;
	scroll-behavior: smooth;
}
header {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-width: 320px;
	height: 334px;
	text-align: center;
	background: linear-gradient(207.8deg, #201E1C 16.69%, #F7931A 100%);
}

header img {
	width: 150px;
	height: 24px;
	margin-top: 60px;
	align-self: center;
}

.header--title-container {
	width: 90%;
	min-width: 288px;
	max-width: 900px;
	height: 218px;
	margin-top: 40px;
	text-align: center;
	align-self: center;
}

.header--title-container h1 {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2.6rem;
	color: var(--just-white);
}

.header--title-container p {
	margin-top: 25px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8rem;
	color: var(--just-white);
}

.header--title-container .header--button {
	position: absolute;
	left: calc(50% - 118px);
	top: 270px;
	display: block;
	margin-top: 35px;
	padding: 15px;
	width: 229px;
	height: 48px;
	background-color: var(--off-white);
	/*Sombra*/
	box-shadow: 0px 4px 8px rgba(89, 73, 30, 0.16);
	border: none;
	border-radius: 5px;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	color: var(--black);
}

.header--button span {
	display: inline-block;
	width: 13px;
	height: 8px;
	margin-left: 10px;
	background-image: url('./assets/icons/down-arrow.svg');
}

/* main */

main {
	width: 100%;
	height: auto;
	background-color: var(--off-white);
}

.main-change-container {
	height: 100%;
	height: auto;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

.main-change-container--title {
	width: 90%;
	min-width: 288px;
	max-width: 900px;
	margin: 0 auto;
}
.main-change-container .backgroundImg {
	width: 200px;
	height: 200px;
	margin: 0 auto;
	margin-bottom: 50px;
	background-image: url('./assets/img/Bitcoin.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.main-change-container h2 {
	margin-top: 30px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2.6rem;
	color: var(--black);
}

.main-change-container p {
	margin-top: 30px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6rem;
	color: #757575
}

/* tables */

.main-currency-table {
	width: 70%;
	min-width: 235px;
	max-width: 500px;
	height: 360px;
	margin: 0 auto;
	font-family: "Inter", sans-serif;
}

.main-currency-table .currency-table--title {
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2.3rem;
	color: var(--bitcoin-orange);
}

.currency-table-container {
	width: 90%;
	min-width: 230px;
	max-width: 300px;
	height: 250px;
	margin: 0 auto;
}

.currency-table-container table {
	width: 100%;
	height: 100%;
}

.currency-table-container td {
	width: 50%;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.9rem;
	color: var(--grey);
	background-color: var(--just-white);
}

.currency-table-container .table__top-left {
	border-radius: 15px 0 0 0;
}

.currency-table-container .table__top-right {
	border-radius: 0 15px 0 0;
}

.currency-table-container .table__bottom-left {
	border-radius: 0 0 0 15px;
}

.currency-table-container .table__bottom-right {
	border-radius: 0 0 15px 0;
}

.currency-table-container .table__right {
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.7rem;
	color: #757575;
}

.currency-table-container .down {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	background-image: url('./assets/icons/trending-down.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.currency-table-container .up {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	background-image: url('./assets/icons/trending-up.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.currency-table--date {
	width: 90%;
	min-width: 230px;
	max-width: 300px;
	margin: 0 auto;
	margin-top: 20px;
	padding: 8px;
	background-color: var(--soft-orange);
	border-radius: 8px;
}

.currency-table--date p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 300;
	color: var(--warm-black);
}

.main-product-detail {
	position: relative;
	width: 100%;
	min-width: 320px;
	height: auto;
	padding: 20px 10px;
	background-color: var(--warm-black);
}

.product-detail--batata-logo {
	position: absolute;
	top: calc(0% - 12.5px);
	left: calc(50% - 20px);;
	width: 40px;
	height: 25px;
	background-image: url('./assets/icons/batata.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.product-detail--title {
	width: 90%;
	min-width: 288px;
	height: auto;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
}

.product-detail--title h2 {
	margin-bottom: 20px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2.6rem;
	color: var(--just-white);
}

.product-detail--title p {
	margin-bottom: 20px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6rem;
	color: #808080;
}

.product-detail--card {
	width: 90%;
	min-width: 288px;
	max-width: 400px;
	min-height: 150px;
	margin: 15px auto;
	padding: 15px;
	background-color: var(--black);
	border-radius: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.product-detail--card .icon-card {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-bottom: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.clock {
	background-image: url('./assets/icons/clock.svg');
}

.eye {
	background-image: url('./assets/icons/eye.svg')
}

.dolar {
	background-image: url('./assets/icons/dollar-sign.svg')
}

.circle {
	background-image: url('./assets/icons/check-circle.svg')
}

.product--card-title {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.9rem;
	color: var(--just-white);
}

.product--card-body {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8rem;
	color: #808080;
}

.bitcoin-img-container {
	width: 100%;
	min-width: 320px;
	height: 50vh;
	background-image: url('./assets/img/bitcoinbaby2x.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}

.bitcoin-img-container h2 {
	padding-top: 70px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2.6rem;
	color: var(--just-white);
}

.main-plans-container {
	width: 100%;
	min-width: 320px;
	padding-bottom: 70px;
	text-align: center;
}

.plans--title {
	width: 90%;
	min-width: 288px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 40px;
}

.plans--title h2 {
	padding-top: 50px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2.6rem;
	color: var(--black);
}

.plans--title p {
	padding-top: 30px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8rem;
	color: #757575;
}

.main-plans-container .plans-container--slider {
	display: flex;
	height: 335px;
	overflow-x: scroll;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	/* gap: 30px */
}

.plans-container--card {
	position: relative;
	scroll-snap-align: center;
	width: 70%;
	min-width: 190px;
	max-width: 300px;
	height: 250px;
	margin: 50px 5px 0;
	padding: 0 15px;
	background-color: var(--just-white);
	border-radius: 15px;
	box-shadow:  0 4px 8px rgba(89, 73, 0, 0.16);
}

.plans-container--card .recommended {
	position: absolute;
	left: calc(50% - 60px);
	top: -15px;
	font-size: 1.2rem;
	width: 120px;
	height: 31px;
	padding: 6px;
	background-color: var(--bitcoin-orange);
	border-radius: 8px;
	color: var(--just-white);
}

.plans-container--card .plan-info-container .plan-card--title {
	padding-top: 30px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8rem;
	color: black
}

.plans-container--card .plan-info-container .plan-card--price {
	padding: 5px 0;
	font-size: 5.3rem;
	font-weight: bold;
	line-height: 5.3rem;
	color: black;
}

.plans-container--card .plan-info-container .plan-card--price span{
	font-size: 1.2rem;
	font-weight: 300;
	vertical-align: 25px;
}

.plans-container--card .plan-info-container .plan-card--saving {
	font-size: 1.2rem;
	color: #757575
}

.plans-container--card .plan-info-container  .plan-card--ca {
	width: 150px;
	height: 48px;
	margin-top: 20px;
	background-color: #faf8f7;
	border: 2px solid var(--bitcoin-orange);
	border-radius: 4px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8rem;
	color: var(--black);
	font-family: "DM Sans", sans-serif;
}

.plans-container--card .plan-info-container  .plan-card--ca span {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('./assets/icons/orange-right-arrow.svg');
	vertical-align: text-bottom;
}

footer {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
	height: 150px;
	padding-left: 10px;
	background-color: var(--bitcoin-orange);
}

footer .left ul {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.8rem;
	list-style: none;
}

.left li {
	margin:  10px 0;
}

.left a {
	text-decoration: none;
	color: var(--just-white);
}

