@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: #3D3D3D;
  --color-black-200: #3D3D3D;
  --color-black-300: #3D3D3D;
  --color-black-400: #3D3D3D;
  --color-black-500: #3D3D3D;
  --color-black-600: #3D3D3D;
  --color-black-700: #3D3D3D;
  --color-black-800: #3D3D3D;
  --color-blue-100: #c9b38c;
  --color-blue-200: #c9b38c;
  --color-blue-300: #c9b38c;
  --color-blue-400: #c9b38c;
  --color-blue-500: #c9b38c;
  --color-blue-600: #c9b38c;
  --color-blue-700: #c9b38c;
  --color-blue-800: #c9b38c;
  --color-blue-900: #c9b38c;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}



#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #c9b38c;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#scroll-tracker {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #c9b38c;
    z-index: 9999;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-white-100);
  background-color: var(--color-black-500);
}

.cursor {
  position: absolute;
  right: -20px;
  width: 0;
  top: 0;
  background: tomato;
  border-left: 5px solid #000;
  animation: escribir 5s steps(30) infinite alternate;
  height: 42px;
}

.underline_text {
  border-bottom: 2px solid white;
  padding-bottom: 1px;
}

@keyframes escribir {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}


@media (max-width: 480px) {
    img {
       max-width: 100%;  
    }
   
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-200);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background: var(--color-black-300);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--color-white-100);
  text-transform: uppercase;
}



/* Estilo de la clase active */
.menu-link.active {
   border-bottom: 2px solid #c9b38c; 

   
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}


.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}

.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white-100);
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative; 
}


.menu-link:hover {
  color: var(--color-white-100); 
}

.menu-link:hover::after {
  content: ''; 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px; 
  background-color: #c9b38c; 
}
.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-blue-600);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}

.submenu {
   display: none;
   list-style: none;
   padding: 0;
   margin: 0;
}

.menu-item:hover .submenu {
   display: block;
}

.submenu li {
   padding-left: 20px;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
  margin-left: auto; 
}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-white-100);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
  }
}
.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.75rem;
	
}
.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}


h2 {
  font-size: 2em;
  color: white;
  text-transform: uppercase;
}

span {
  border-right: .05em solid;
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

/* Imagen de fondo debajo del menú con overlay oscuro */
.background-section {
 position: relative; 
  width: 100%;
  height: 100vh;
  background-image: url("../img/hero-natalia.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow-x: hidden; 
  z-index: 0; 
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1; 
}

.banner-content {
  position: relative; 
  z-index: 2; 
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
  color: #fff;
  margin-top: 250px;text-align: center;  
}

.banner-content h2 {
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: 500;
}

.heading-xl {
  font-size: 5rem;
  font-weight: 700;
}

/* Ajustes específicos para pantallas más pequeñas */
@media (max-width: 768px) {
  .background-section {
    background-size: cover;
    background-position: center;
    height: 100vh;

  }

 

  .banner-content h1 {
    font-size: 3rem;
  }

  .banner-content h2 {
    font-size: 1.2rem;
  }
}

/* Ajustes específicos para pantallas más pequeñas */
@media (max-width: 768px) {
  .background-section {
    height: 100vh;
  }

  .banner-content {
    
  }

  .banner-content h1 {
    font-size: 2rem; 
  }

  .banner-content h2 {
    font-size: 1.5rem;
  }
}

/* Ajustes para pantallas aún más pequeñas (480px o menos) */
@media (max-width: 480px) {
  .background-section {
    height: 90vh;
  }

  .banner-content {
    
  }

  .banner-content h1 {
    font-size: 2rem; 
  }

  .banner-content h2 {
    font-size: 1.2rem;
  }
}
html, body {
  margin: 0;
  padding: 0;
}

/* Back To Top */

  #backToTop {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #3d3d3d;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
	        border: 2px solid white;
        }
        #backToTop i {
            font-size: 22px; 
            font-weight: lighter;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #backToTop:hover {
            background: #3d3d3d;
			border: 2px solid white;
        }




 /* Secciones */
.separador {
    border: none;
    height: 1px;
    background-color: #E0E0E0; 
    margin: 40px 0; 
    width: 100%;
    max-width: 800px;
}

.menu-tags {
    display: flex;
    gap: 10px;
	
}

 .tags {
    padding: .1875rem .625rem;
    font-size: .75rem;
    border: none;
    border-radius: 3px;
    background-color: #d3d3d359;
    color: #111;
	
}

/* Conoceme*/
 
.content-section {
  width: 100%;
  padding: 20px;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  padding-bottom: 0px;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column;
  background-color: #fff;	
}

.contenedor-texto{
max-width: 800px;

	
	
}


.linea {
    position: relative;
    height: 3px;
    margin: 0px 0px 20px 0px;
}


.linea::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 25px; 
  top: 50%;
  background: #c9b38c; 
  transform: translateY(-50%);
}

.linea::after {
  position: absolute;
  content: "";
  width: 3px; 
  height: 3px; 
  top: 50%;
  left: 30px; 
  background: #c9b38c; 
  transform: translateY(-50%);
}

.highlight {
    display: inline-block;
    position: relative;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: #ffffff;
	color: #3D3D3D;
}




.section-title {
    font-size: 2rem;
    position: relative;
    font-weight: 600;
    text-align: left;
    color: #3D3D3D;
}

 .section-text {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.875rem;
  text-align: left;
  color: #111;
}

/* Media queries para responsividad */
@media (max-width: 992px) {
  .highlight {
    font-size: 22px;
  }
  
  .section-title {
   font-size:1.625rem;
  }
  
  .section-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
   .highlight {
    font-size: 20px;
  }
  
  #trayectoria .section-title {
    font-size: 1.625rem;
  }
  
  #trayectoria .section-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  #trayectoria .highlight {
    font-size: 1.2rem;
  }
  
  #trayectoria .section-title {
    font-size: 1.625rem;
  }
  
  #trayectoria .section-text {
    font-size: 1rem;
    line-height: 1.9;
	
  }
}


/* carrusel empresas */
.carrusel-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    margin: 0 auto; 
}

.cards {
    display: flex;
    flex-wrap: nowrap;
    animation: mover 40s infinite linear; 
}

.card {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #DDD;
    margin-right: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.card img:hover {
    transform: scale(1.1);
}

@keyframes mover {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); 
    }
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .carrusel-container {
        width: 100%;
        max-width: 350px;
    }
}

/* Media query para dispositivos móviles */
@media (max-width: 480px) {
    .carrusel-container {
        width: 100%;
        max-width: 350px;
    }

    .card {
        width: 100px; 
        height: 100px;
        margin-right: 10px; 
    }
}



/* Trayectoria */

/* Botón de descarga */
	
.cv-button {
  border: 1px solid #3d3d3d;
}
.cv-button:hover .slide {
    right: 0;
    transition: all .5s ease;
}

.fa-download {
    transform: translateY(50%);
}

.cv-button:hover a,
.cv-button:hover i {
    color: #fff;
    transition: all .4s;
}
/* texto inicial blanco */
.cv-button a {
  color: #3d3d3d;
	
	}
.logos-formacion {
    width: 20%; 
    height: auto; 
	margin-bottom: 20px;
}



.empresa{
	font-style: italic;
}

.titulo{
font-weight: 600;
	font-size: 1.1rem;
}

.accordion{
    background-color: transparent;
    color: #cbb48c;
    cursor: pointer;
    padding: 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 13px;
    font-weight:700;
    letter-spacing: 1px;
    margin: 0 0 .25em 0;
    text-transform: uppercase;
    white-space: nowrap;
}
.accordion:hover{
    color: #cab38c;
}
button.accordion:after {
    content: '\002b';
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    float: right;
    margin-right: 30px;
    padding: 0px;
	 width: 20px;
    height: 20px; 
    background-color: #cab38c; 
    border-radius: 5px; 
	 display: flex;
    justify-content: center; 
    align-items: center; 
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    margin: 10px 0 15px 0;
    font-size: 15px;
    color: #8c8c8c;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.mod {
  float: left;
  width: 280px;
  clear: both;
  margin: 0 50px 0 10px;
}
.timeline-title {
  color: #262626;
  margin-bottom: 0;
}
.source {
  font-size: 12px;
  color: #8c8c8c;
  letter-spacing: .5px;
}
.timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.timeline-divider {
    float: left;
    clear: both;
    margin: 0 50px 0 0;
    width: 100%;
    max-width: 300px;
    height: 0;
    margin-top: 15px;
    border-bottom: #e6e6e6 1px solid;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
  padding-left: 40px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/
.timeline-info {
  font-size: 13px;
  font-weight: 700;
  color: #262626;
  letter-spacing: 1px;
  margin: 0 0 .25em 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
}
.timeline-marker:before {
  background: white; 
  border: 3px solid #cab38c; 
  border-radius: 100%;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out !important;

}
.timeline-marker:after {
  content: "";
  width: 3px;
  background: #d9d9d9;
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 6px;
}
.timeline-item:last-child .timeline-marker:after {
  content: none;
}

.timeline-item:not(.period, .start):hover .timeline-marker:before {
    background: #cab38c;
    border: 3px solid #cab38c;
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
  padding-bottom: 14px;
  font-size: 15px;
  color: #8c8c8c;
}
.timeline-content p:last-child {
  margin-bottom: 0;
}

/*----- TIMELINE PERIOD -----*/
.period {
  padding: 0;
}
.period .timeline-info {
  display: none;
}
.period .timeline-marker:before {
  background: transparent;
  content: "";
  width: 15px;
  height: auto;
  border: none;
  border-radius: 0;
  top: 0;
  bottom: 30px;
  position: absolute;
  border-top: 0px solid #d9d9d9;
  border-bottom: 3px solid #d9d9d9;
}
.period .timeline-marker:after {
  content: "";
  height: 32px;
  top: auto;
}
.period .timeline-content {
  padding: 40px 0 70px;
}
.period .timeline-title {
  margin: 0;
}

/*----- TIMELINE FIRST PERIOD-----*/
.start {
  padding: 0;
}
.start .timeline-info {
  display: none;
}
.start .timeline-marker:before {
  background: transparent;
  content: "";
  width: 15px;
  height: auto;
  border: none;
  border-radius: 0;
  top: 0;
  bottom: 30px;
  position: absolute;
  border-top: 0px solid #d9d9d9;
  border-bottom: 3px solid #d9d9d9;
}
.start .timeline-marker:after {
  content: "";
  height: 32px;
  top: auto;
}
.start .timeline-content {
  padding: 20px 0 55px;
}
.start .timeline-title {
  margin: 0;
}

/*----- @MEDIA -----*/
@media screen and (max-width: 540px) {
  .mod {
   width: 100%;
    }
  .timeline-divider {
   width: 100%;
   max-width: 540px;
   margin-bottom: 20px;
   }
	
.logos-formacion {
    width: 40%;
    height: auto;
}
}

@media screen and (min-width: 1024px) {
  .mod {
    width: 100%; 
  }

  .timeline-divider {
    width: 100%; 
    max-width: 100%;
	margin-bottom: 20px;
  }
}

/* Media query para dispositivos móviles */
@media (max-width: 480px) {
	
div.panel {

    width: 90%;
}
}




/* Portfolio */
.portfolio #portfolio-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
	
}

.portfolio #portfolio-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #3d3d3d;
    border: 2px solid transparent;
    border-radius: 5px;
    box-shadow: inset 0 0 0 50px #3d3d3d;
    transition: ease-out 0.3s;
}


	   


.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active {
    color: #3d3d3d;
    background: transparent;
    box-shadow: inset 0 0 0 0 #3d3d3d;
    border: 1.5px solid #3d3d3d;
}

/* Estilo para los elementos del portafolio */
.portfolio .portfolio-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
    grid-gap: 30px;
}

@media (min-width: 768px) {
    .portfolio .portfolio-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (min-width: 1024px) {
    .portfolio .portfolio-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

.portfolio .portfolio-item {
    position: relative;
    display: block;
}

/* Estilo para la imagen y el texto del portafolio */
.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: .5s;
	border-radius: 5px;
}

.portfolio .portfolio-item:hover img {
    margin-left: 15px;
}

.portfolio .portfolio-text {
    position: relative;
    height: 60px;
    width: calc(100% - 30px);
    margin: -30px 15px 30px 15px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .12);
	border-radius: 5px;
}

.portfolio .portfolio-text h3 {
    width: calc(100% - 70px);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: hidden;
    
}

.portfolio .portfolio-text a.btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 100;
    border-radius: 50%;
    background-color: #3d3d3d;
    color: #ffffff;
    border-radius: 5px;
}

/* Hover del botón */
.portfolio .portfolio-item:hover a.btn {
    color: #3d3d3d;
    background: transparent;
    box-shadow: inset 0 0 0 0 #c9b38c;
    border-color: #3d3d3d;
     border: 1px solid #3d3d3d;
}

@media screen and (min-width: 1024px) {
ul#portfolio-filter {
  height: auto !important;
}
}

/* Footer */

.footer {
  background-color: #3d3d3d;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-icons {
  margin-bottom: 1rem;
}

.footer-icons a {
  color: white;
  margin: 0 0.75rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #c9b38c;
}

.footer-text {
  color: white;
  font-size: 0.9rem;
  text-align: center;
}

.gold-heart {
  color: white;
  font-size: 16px;
  margin-left: 8px;
  vertical-align: middle;
}


/* Créditos */

 .patita {
      color: #3d3d3d;       
      font-size: 1.2rem;   
    }
#creditos-web {
  
    padding-bottom: 30px;
	padding-top: 30px;
}

/* Ocultar ambos por defecto */
#creditos-web,
#creditos-web-desktop {
  display: none;
	padding-bottom: 30px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
  #creditos-web {
    display: block;
	  padding: 0px;
	  margin-bottom: 40px;
  }
  /* Estilos móviles */
  #creditos-web .creditos-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    gap: 40px;
	border-radius: 9px;

  }
  #creditos-web .creditos-imagen {
    flex: 1 1 300px;
    text-align: center;
  }
  #creditos-web .creditos-imagen img {
     display: block;      
    margin: 0 auto;  
	width: 90%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
  }
  #creditos-web .creditos-texto {
    flex: 1 1 400px;
  }
  @media (max-width: 768px) {
    #creditos-web .creditos-container {
      flex-direction: column;
      text-align: center;
    }
    #creditos-web .creditos-texto {
      padding: 0 10px;
    }
  }
}

/* Estilos para dispositivos desktop */
@media (min-width: 769px) {
  #creditos-web-desktop {
    display: block;
  }
  /* Título en desktop: se ubica arriba y centrado */
  #creditos-web-desktop .section-title {
    margin-bottom: 20px;
	font-size: 1.3rem;
  }
  /* Estilos desktop */
  #creditos-web-desktop .creditos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #ccc;
    max-width: 800px;
    margin: 20px auto;
	border-radius: 9px;
    
  }
  #creditos-web-desktop .creditos-imagen {
    margin-right: 20px;
  }
  /* Imagen más grande (de Nacho) */
  #creditos-web-desktop .creditos-imagen img {
    max-width: 300px;
    height: auto;
    display: block;
  }
  /* Texto más compacto en ancho */
  #creditos-web-desktop .creditos-texto {
    max-width: 400px;
    text-align: left;
  }
}

/* Carrusel blister */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos para las flechas */
.carousel-arrow {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 10%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}

/* Contenedor del carrusel */
.blister-carousel-container {
  overflow: hidden;
  width: 100%;
}

/* Carrusel: display flex y scroll nativo habilitado */
.blister-carousel {
  display: flex;
  overflow-x: auto;                   
  scroll-behavior: smooth;            
  -webkit-overflow-scrolling: touch;  
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 0;
  cursor: grab;                     
}
.blister-carousel.active {
  cursor: grabbing;
}

/* Esconder scrollbar (opcional) */
.blister-carousel::-webkit-scrollbar {
  display: none;
}

/* Cada ítem del carrusel */
.blister-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.blister-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Margen en primer/último para separación de flechas */
.blister-carousel .blister-item:first-child {
  margin-left: 10px;
}
.blister-carousel .blister-item:last-child {
  margin-right: 10px;
}

/* Desktop: varias imágenes */
@media (min-width: 768px) {
  .blister-item {
    width: 30%;
    scroll-snap-align: start;
  }
}

/* Móvil: una imagen centrada */
@media (max-width: 767px) {
  .blister-carousel {
    justify-content: center;
  }
  .blister-item {
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }
}
@media (min-width: 1024px) {
  .blister-carousel {
    width: 100%;
    margin: 0 0 10px 20px;
  }
}



/* Contacto */
.contacto-section {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
   
  }

  /* Mobile-first: imagen grande en móvil */
  .contacto-imagen {
    width: clamp(300px, 100%, 800px); 
    margin: 0 auto;
    position: relative;
  }

  .contacto-imagen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  /* Botón animado centrado */
 .mail-n-btn {
  position: absolute;
 bottom: 80px;
    left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  width: 140px;
  height: 140px;
  border-radius: 50%;
    border: 1px solid #cab38c80;
  
  /* Fondo semitransparente + icono centrado */
  background-color: #fff;
  background-image: url("../img/contacto/icono-mail.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s ease;
}
	

  

  /* Desktop: imagen más pequeña en pantallas grandes */
  @media (min-width: 768px) {
    .contacto-imagen {
      width: clamp(200px, 50%, 600px); /* mínimo 200px, ideal 50%, máximo 400px */
    }
  }
/* Mobile: estilos específicos para pantallas menores de 768px */
@media (max-width: 767px) {
  .mail-n-btn {
    position: absolute;
    bottom: 50px;
    left: 54%;
    transform: translate(-50%, 0);
    z-index: 2;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  .mail-n-btn:hover {
    transform: translate(-50%, 0) scale(1.05);
  }
}

/* El keyframes permanece global */
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(202, 179, 140, 0.47);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(202, 179, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(202, 179, 140, 0);
  }
}

/* Por defecto, se muestra la imagen de desktop y se oculta la de móvil */
.desktop-only {
  display: block;
  max-width: 100%;

}

.mobile-only {
  display: none;
}

/* En pantallas pequeñas, se oculta la imagen de desktop y se muestra la de móvil */
@media (max-width: 600px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
	 width: 100%;
  }
}


   /* Por defecto ocultamos el vídeo móvil y mostramos el de escritorio */
    .video-mobile  { display: none; }
    .video-desktop { display: block; width: 100%; height: auto; }

    /* A partir de 767px de ancho → móvil */
    @media (max-width: 767px) {
      .video-mobile  { display: block; width: 100%; height: auto; }
      .video-desktop { display: none; }
    }


/* Flecha animada */
.arrow-btn {
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    animation: bounce 2s infinite;
}

/* Animación de rebote */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
.arrow-btn {
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    margin-top: 2rem;
    animation: bounce 2s infinite; 
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}