	/* custom properties */

:root{
	--primario: #1073BA;
	--secundario: #00DA55;
	--gris: #3B3B3B;
	--blanco: #FFFFFF;
	--negro: #1F1E1E;
	--grisClaro: #e1e1e1;

	--separacion: 5rem;

	/* fuentes a utilizar */
	--fuentePrincipal: 'Inter', sans-serif;
	--fuenteSecundaria: 'Lato', sans-serif;
}

html{
	box-sizing: border-box; /*relleno y border se incluye dentro del tamaño*/
	font-size: 62.5%; /*1 rem=10px*/
}
*, *:before, *:after {
	box-sizing: inherit;
}

body{
	font-family: var(--fuentePrincipal);
	font-size: 1.6rem;
	line-height: 1.5;
}

/* Globales */

/* contenedor responsive*/
.contenedor{
	max-width: 120rem;
	width: 90%;
	margin: 0 auto;
}

h1, h2, h3{
	font-weight: 900;
	font-family: var(--fuenteSecundaria);
	margin: calc(var(--separacion) / 2) 0;  
}

h1{
	font-size: 4.4rem;
}

h2{
	font-size: 3.6rem;
}

h3{
	font-size: 2.8rem;
}

/* imagen responsive*/
img{
	max-width: 100%;
	display: block;
	height: auto;
}

.degradado-verde{
	/* se pone el color de texto en transparente*/
	color: transparent;

	/* se crea el degradado*/
	background: linear-gradient(to right, var(--primario) 10%, var(--secundario) 80% );

	/* se indica donde se debe de aplicar el degradado*/
	-webkit-background-clip: text;
	background-clip: text;
}
/** Header **/
.header{
	background-color: var(--negro);
	padding: calc( var(--separacion) * 3 ) 0;
	color: var(--blanco);
}
@media (min-width: 768px) {
	.contenido-header{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}	
}
 
.texto-header {
	text-align: center;
	padding-top: var(--separacion);
}

@media (min-width: 768px) {
	.texto-header {
		text-align: left;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 0;
	}
}

.texto-header p{
	margin: 0;
}

.tagline-producto{
	font-size: 3rem;
	font-weight: 900;
}

.nombre-producto{
	font-size: 6rem;
	margin: 0;
}

.imgcas{
	padding-right: 45px;
}

@media(min-width: 768px) {
	.nombre-producto {
		font-size: 10rem;
		line-height: 1;
	}
}

.precio-producto span {
	font-size: 6rem;
	font-weight: 900;
}

/* Iconos*/
.iconos {
	padding: var(--separacion) 0;
}

@media (min-width: 768px) {
	.iconos {
		display: flex;
		gap: 2rem;
	}
}

.icono {
	text-align: center;
	margin-bottom: calc( var(--separacion) / 2) ;
}

.icono:last-of-type {
	margin: 0;
}

@media (min-width: 768px) {
	.icono {
		margin: 0;
	}
}
.icono img{
	width: 5rem;
	margin: 0 auto;
}

.icono h3 {
	color: var(--primario);
	
}

/** Sobre los TechPRO **/
.sobre-tech {
	/* construimos creando un linear donde el 50% es el color y el otro 50% sea la imagen.

	background-image: linear-gradient(to bottom, transparent 50%, var(--primario) 0% ), url(../img/girl.jpg);

	background-position: right; visualizar el lado derecho de la imagen y del color

	background-repeat: repeat, no-repeat;  valor color- valor imagen 

	background-size: 100%, 110rem; color-imagen */
}

.sobre-tech{
	background-position: right;
	background-repeat: repeat, no-repeat;
	background-size: 100%, 110rem;
	background-image: linear-gradient( to bottom, transparent 50%, var(--primario) 0%), url(../img/girl.jpg);
}

@media (min-width: 768px){
	.sobre-tech{
		background-repeat: repeat, no-repeat;
		background-image: linear-gradient( to left, transparent 50%, var(--primario) 0%), url(../img/girl.jpg);
	}
}

@media (min-width: 1600px){
	.sobre-tech{
		background-size: 100%, 210rem;
	}
}

.sobre-tech-grid{
	display: grid;
	grid-template-rows: repeat(2, 40rem);
	row-gap: var(--separacion); 
}

@media (min-width: 768px){
	.sobre-tech-grid{
		grid-template-rows: unset;
		row-gap: unset;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 4rem;
		padding: calc( var(--separacion ) * 2) 0;
	}
}

.texto-sobre-tech{
	grid-row: 2 / 3;
	color: var(--blanco);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-bottom: var(--separacion);
}

@media (min-width: 768px){
	.texto-sobre-tech{
		padding-bottom: 0;
	}
}

.texto-sobre-tech h2{
	font-size: 4rem;
}

.texto-sobre-tech p{
	font-size: 2rem;
	line-height: 2;
}

/** Modelos **/
.modelos{
	padding: var(--separacion) 0;
}

.header-modelos{
	font-size: 6rem;
	margin-bottom: var(--separacion) 0;
}

.listado-modelos{
	display: flex;
	flex-direction: column-reverse;
}

@media (min-width: 992px){
	.listado-modelos{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 20rem);
		gap: 4rem;
	}
}

.modelo{
	background-color: var(--grisClaro);
	margin-bottom: 2rem;
	padding-left: 4rem;
	color: var(--primario);
	border-radius: 2rem;
	min-height: 20rem;
	background-repeat: no-repeat;
	background-position: 90% center;
	background-size: 15rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition-property: transform background-size;
	transition-duration: .3s;
}

.modelo:hover{
	transform: scale(1.1);
	background-size: 30rem;
}

@media (min-width: 992px){
	.modelo{
		margin-bottom: 0;
	}
}

.modelo h3{
	font-size: 2.4rem;
}

.modelo .precio{
	font-size: 4rem;
	font-weight: 900;
	line-height: 0;
}

.modelo:first-of-type{
	margin-bottom: 0;
}

.modelo-x{
	background-image: url(../img/cascos-x.jpg);
}

.modelo-y{
	background-image: url(../img/cascos-y.jpg);
}

.modelo-z{
	background-image: url(../img/cascos-z.jpg);
	background-color: var(--primario);
	color: var(--blanco);
}

@media (min-width: 992px){
	.modelo-z{
		grid-column: 2 / 3;
		grid-row: 1 / 3;
		background-size: 25rem;
	}
	.modelo-z h3{
		font-size: 4rem;
	}
	.modelo-z .precio{
		font-size: 6rem;
	}
}

/** Newsletter **/
.newsletter{
	background-position: top center, -26rem 0rem;
	background-repeat: no-repeat;
	background-size: 100%, 100rem;
	background-image: linear-gradient( to right, transparent 50%, var(--blanco) 0%), url(../img/chica.jpg);
	padding: 10rem;
	}

.contenido-newsletter{
	display: grid;
	grid-template-rows: repeat(2, 30rem);
	grid: var(--separacion);
}

@media (min-width: 768px){
	.contenido-newsletter{
		grid-template-rows: unset;
		grid-template-columns: repeat(2, 1fr);
	}
}

.texto-newsletter{
	grid-row: 3 / 3;
}

@media (min-width: 768px){
	.texto-newsletter{
		grid-row: unset;
		grid-column: 2 / 3;
	}
}
.texto-newsletter{
	grid-row: 3 / 3;
}

.formulario input[type="submit"]{
	width: 100%;
	padding: 2rem;
	background-color: var(--primario);
	color: var(--blanco);
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 900;
	border: none;
}

.footerp{
	text-align: center;
	font-family: var(--fuenteSecundaria);
	text-transform: uppercase;
	font-size: 2rem;
	color: var(--primario);
	padding: 2rem 0;
}