@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
.space{
	width: 100%;
	display: block;
	height: 70px;
}
.center{
	text-align: center;
}
.nunito-<uniquifier> {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito", serif;
}
.div-fan{
	width: 100%;
	height: 80px;
	display: block;
}
:root {
    --color-background-light: #70e0cf;
    --color-background-dark: #1B1B1B;
    --color-accent-brown: #C1A989;
    --color-text-gray: #817C75;
    --color-text-brown: #6F4E37;
    --color-primary: #edf796;
  	--text-color-d:#1d1d1d;
}
a {
  text-decoration: none;
  color: inherit;
}
/*botones*/
.btn-a{
	padding: 10px;
	text-align: center;
	width: 100%;
}
.small{
	width: 200px;
}
.btn-red{
	border: solid 2px #e04848;
	color: #e04848;
	border-radius: 5px;
	transition: all 0.2s;
}
.btn-red:hover{
	border: solid 2px #e04848;
	color: #fff;
	background: #e04848;
}

.btn-blue{
	border: solid 2px #70e0cf;
	color: #70e0cf;
	border-radius: 5px;
	transition: all 0.2s;
}
.btn-blue:hover{
	border: solid 2px #70e0cf;
	color: #fff;
	background: #70e0cf;
}

.btn-green{
	border: solid 2px #2a7f62;
	color: #2a7f62;
	border-radius: 5px;
	transition: all 0.2s;
}
.btn-green:hover{
	border: solid 2px #2a7f62;
	color: #fff;
	background: #2a7f62;
}
.btn-yellow{
	border: solid 2px #edf796;
	color: #f2c94c;
	border-radius: 5px;
	transition: all 0.2s;
}
.btn-yellow:hover{
	border: solid 2px #edf796;
	color: #fff;
	background: #f2c94c;
}


.header-pos{

}

.btn-back {
	position: absolute;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	max-width: 100px;
}
.btn-back i {
  margin-right: 8px;
}
/*iconos*/

.icon-s1{
	position: absolute;
	display: block;
	z-index: 10;
	background-repeat: no-repeat;
	ackground-image: url('https://jovanavargas.com/thumbs/SVG/middle-circle.svg');


}
.icon-s2{
	width:200px;
	height: 90px;
	position: absolute;
	background-image: url('https://jovanavargas.com/thumbs/SVG/circle-rect.svg');
	background-repeat: no-repeat;
}

.icon-s3{
	position: absolute;
	background-image: url('https://jovanavargas.com/thumbs/SVG/trian.svg');
	background-repeat: no-repeat;

}
.icon-s4{
	position: absolute;
	background-image: url('https://jovanavargas.com/thumbs/SVG/cube-point.svg');
	background-repeat: no-repeat;
}

.icon-circle-1{
	position: absolute;
	background-image: url('https://jovanavargas.com/thumbs/SVG/circle-1.svg');
	background-repeat: no-repeat;
}
section{
 display: block;
}

body{
    box-sizing: border-box;
    overflow-x: hidden;
    
}

h1,h2,h3,h4,h5,h6{
	font-family: "Playfair Display", serif;
 	font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	font-weight: 900;
	line-height: 0.9;


}
h1{
	font-size: 3rem;
}
h2{
	font-size: 2.5rem;
}
h3{
	font-size: 2rem;
}
p{
	line-height: 1.5;
	font-size: 1rem;
}

.grid{
	display: grid;
}
.col-2{
	grid-template-columns: repeat(2, 1fr);
}
.col-4{
	grid-template-columns: repeat(4, 1fr);
}
.col-1-2-2{
	grid-template-columns: 20% 40% 40%;
}
.col-1-2-3{
	grid-template-columns: 20% 50% 30%;
}
.col-2-1{
    grid-template-columns: 70% 30%;
}
.f-sc{
	width: 100%;
	min-height: 100vh;
}
.content{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: block;
  padding: 0px 10px;
}
.row-1-2{
	grid-template-columns: 20% 80%;
}
.header {
	width: 100%;
	height: 60px;
	display: flex;
	position: fixed;
	z-index: 9999;
	background: #fff;
	justify-content: center;
	box-shadow: 0px 0px 42px -19px rgba(0,0,0,0.75);
}

.header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: relative;
}

.btn-h {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 40px;
  transform: rotate(90deg); /* Mantiene la rotación */
  transition: all 0.5s;
}

.header-pos ~ .btn-h {
  transform: rotate(0deg); /* Corrección de rotación */
}

.header ul {
	display: flex;
	align-self: flex-start;
	align-items: center;
	padding-top: 10px;
}

.header ul li {
	display: flex;
	align-items: center;
}

.header ul li a {
	text-decoration: none;
	color: var(--text-color-d);
	padding: 10px;
	transition: .5s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1rem;
}

.header ul li a i {
	padding-right: 5px;
	font-size: 1.5rem;
}

.header ul li a:hover::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 1px;
	background: #000;
	z-index: 2;
	bottom: 0;
}

.head-cont {
	display: flex; /* Asegura que align-self funcione */
}

.head-cont img {
	width: 200px;
	height: auto; /* Para mantener la proporción */
	padding-top: 3px;
	align-self: flex-start;
}
.head-sm{
	display: flex;
	height: auto;
	position: fixed;
	z-index: 9999;
	background: #2d2d2d;
	align-items: flex-start;
	justify-content: space-evenly;
	top: 60px;
	flex-direction: column;
	opacity: 0.5;
	padding: 0px;
}
.head-sm ul{
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: center;
}
.head-sm ul li{

}
.head-sm ul li a{
text-decoration: none;
color: #fff;
}

.head{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content:center;
	overflow: hidden;
    padding: 10px;
	
}
.title-h{
	line-height: 0.9;
	font-size: 5rem;
	padding-bottom: 10px;
}
.head-btn{
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: left;
	margin-top: 10px;
}
.head-btn li{
	list-style: none;
	padding-right: 20px;
	padding-top: 10px;
}

.btn-head{
	padding: 20px 0px;
	display: block;
	width: 100%;
	font-size: 1rem;
	text-align: center;
	background: var(--color-primary);
	transition: all 0.5s;
	border: solid 1px var(--color-primary);
}
.btn-head:hover{
	border: solid 1px var(--color-primary);
	color:  var(--color-primary);
	background: none;
}
.head-btn li:nth-child(1) .btn-head{
	width: 100vw;
	max-width: 250px;
	display: block;
}
.head-btn li:nth-child(1) .btn-head:hover{
	
}
.head-btn li:nth-child(2) .btn-head {
		position: relative;
		transition: all 0.5;
		width: 60px;
		height: auto;
		aspect-ratio: 1 / 1;
		display: block;
}
.head-btn li:nth-child(2) .btn-head:hover::after{
		content: 'Ver CV';
		position: absolute;
		width: 50px;
		background: var(--color-primary);
		top: -5px;
		padding: 5px;
		border-radius: 10px;
		color: #000;
}
.card{
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	position: relative;
}
.img-head{
	width: 100%;
	height: 100vh;
	display: flex;
	object-fit: cover;
	margin: auto;
	padding-top: 50px
}

.btn-w{
	width: 100%;
	max-width: 300px;
	padding: 20px;
	display: block;
	text-align: center;
	margin-top: 10px;
	text-decoration: none;
	border: solid 2px var(--text-color-d);
	color: var(--text-color-d);
}

.h-p1{ /*indicar solo posicion e index*/
	z-index: -1;
	top: 0;
	left: -150px;
	width: 900px;
	height: 900px;
	bottom: 0;


}
.h-p2{
	width:200px;
	height: 100px;
	z-index: -1;
	right: -100px;
	bottom: 100px;
}
.h-p3{
	width:200px;
	height: 100px;
	z-index: -1;
	top: 50px;
	right: 0;
}

.h-p4{
	width:400px;
	height: 200px;
}
.h-p5{
	width: 200px;
	height: 200px;
	bottom: -150px;
	left: 50px;
	z-index: 2;
	opacity: 0.5;
}
.h-p6{
	width:200px;
	height: 100px;
	right: 5%;
	top:190%;
	z-index: 3;
}
/*quien soy*/
.who-is{
	align-items: center;
	justify-content: center;
	display: flex;
	background: #fff;

}
.who-is .card:nth-child(1){
	background: var(--color-primary);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
.who-is .card:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url('https://jovanavargas.com/thumbs/SVG/fondo.svg');
  mask-image: linear-gradient(to bottom, black 50%, transparent 90%);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: -10px;
  z-index: 0;
}

.who-is .card:nth-child(1) img{
	max-width: 450px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	mask-image: linear-gradient(to bottom, black 50%, transparent 90%);
 	mask-repeat: no-repeat; 
  	mask-size: 100% 100%;
  	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
}
.who-is .card:nth-child(1) h1{
	top:60%;
	position: absolute;
	color: #fff;
	
}
.who-is .card:nth-child(2){
	padding-left: 30px;
	text-align: center;
	line-height: 1.5;
	background: #fff;
}
/*seccion experiencia*/
.experience{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content:center;
	background: #fff;
	padding-top: 80px;
}
.experience h1{
    text-align: center
}
.r1-1{
	aspect-ratio: 16 / 12;
	object-fit: cover;
	object-position: center;
	max-width: 100%;
	margin: auto;
}

.experience .card h1{
	font-size: 40px;
	line-height: 0.9;
	text-align: center;
}
.experience .card{
	text-align: center;
	justify-content: flex-start;
	position: relative;
	padding: 10px;
	padding-top: 30px;


}
.experience .card:nth-child(3n-2)::before {
	content: '';
	display: block;
	background: var(--color-primary);
	width: 5px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 10px;
	z-index: 1;
}
.experience .card p:nth-child(3n-2){
	margin-left: 20px;
	margin-top: 4px;
}
.experience .card:nth-child(3n-2)::after {
	content: '';
	display: block;
	background: var(--color-primary);
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
	z-index: 1;
	border-radius: 50%;
}

.now .card:nth-child(1){
	background: var(--color-primary);
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.now .card:nth-child(3){
	padding: 10px;
}
.img-now{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

  footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    min-height: 50vh;
    display:flex;
  }

  .footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  .footer-container img{
    width: 400px;
  }
  .footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .social-icons img {
    width: 24px;
    margin: 10px;
  }

  .social-icons a {
    display: inline-block;
  }
   .social-icons i {
    font-size: 2rem;
    padding: 0px 20px;
  }
.b-i{
	padding-top: 50px;
}


/*social media*/
.social-media{
	width: 100%;
	height: auto;
	text-align: center;
	margin: 20px 0px;
}
.social-media h1{
	margin-bottom: 20px;
}
.social-media .col-4{
	gap: 20px;
}
.social-media .card{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: auto;
	background: var(--color-primary);
	transition: 0.5s all;
	color: #1d1d1d;
	aspect-ratio: 1 / 1;
}
.social-media .card:hover{
	transform: scale(1.05);
	background: #eef896;
	border-radius: 50%;
	background: var(--color-primary);
}

.social-media .card i{
	font-size: 6em;
	color: #2d2d2d;
}

.social-media .card a{
	text-decoration: none;
	color: #2d2d2d;

}


/*galeria*/
/* Estilo básico para el Slider*/
.gallery {
 	display: block;
 	position: relative;
 	margin-bottom: 20px;
 	width: 100%;
}
.gallery h1{
	margin-bottom: 20px;
}
.gallery .content{
	display: block;
  padding: 0px;
  overflow: hidden;
}
.gallery-container {
   display: flex;
   transition: transform 0.5s ease-in-out;
}

.gallery-item {
   min-width: 100%;
   box-sizing: border-box;
}

.gallery-item img {
   width: 100%;
   display: block;
   height: 100vh;
   object-fit: cover;
}

/* Navegación del Slider */
.gallery-navigation {
   display: flex;
   justify-content: space-between;
   position: absolute;
   z-index: 6;
   top: 0px;
   width: 100%;
   height: 100%;
   max-width: 1200px;;
}

.nav-button {
   background: none;
   color: white;
   border: none;
   cursor: pointer;
   font-size: 3rem;
   padding: 10px;

}

.nav-button:hover {
	opacity: 0.3;
}





