/* Ajustes generales de imagen */
.cocineroprincipal {
  max-width: 100%;
  height: auto;
}

/* Estilos adicionales para asegurar la responsividad */
@media (max-width: 768px) {
  .segundaseccion .textosaludo {
      font-size: 1.5rem; /* Ajuste del tamaño del texto para pantallas pequeñas */
  }

  .segundaseccion .parrafosbienvenida {
      font-size: 1rem; /* Ajuste del tamaño del texto para pantallas pequeñas */
  }

  .segundaseccion .text-center {
      text-align: center;
  }
}

@media (min-width: 769px) {
  .segundaseccion .text-lg-start {
      text-align: left;
  }
}


/* header */

/* Estilos para animaciones y efectos */
.kayden_morph_animation {
  transition: transform 0.3s ease;
}
.kayden_morph_animation:hover {
  transform: scale(1.05);
}



.fit-cover {
  object-fit: cover;
}

.fit-left-top {
  object-position: left top;
}

/* Estilos para el texto */
.typed_text {
  display: inline-block;
  /* Puedes usar una biblioteca de tipeo como Typed.js para animar este texto */
}

.welcome_text {
  font-size: 1.25rem; /* fs-4 equivale aproximadamente a 1.25rem */
}

/* Estilo para el área del botón */
.home_button_area .btn {
  margin-top: 1rem;
}

/* Estilos adicionales */
.p-4 {
  padding: 1.5rem !important;
}

.p-md-5 {
  padding: 3rem !important;
}

.min-vh-100 {
  min-height: 100vh;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.position-relative {
  position: relative !important;
}

.offset-2 {
  margin-left: 16.666667% !important;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.offset-md-2 {
  margin-left: 16.666667% !important;
}

.col-md-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.gy-5 {
  row-gap: 3rem !important;
}

.text-center {
  text-align: center !important;
}

.text-sm-end {
  text-align: right !important;
}
.fs-2 {
  font-size: 2rem !important;
}
.fs-4 {
  font-size: 1.5rem !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}

/*Servicios*/

#services {
  padding: 50px 0;
}
.service-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(6, 138, 132, 0.1);
}
.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  
}
.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-description {
  color: #757575;
  flex-grow: 1;
}




/* SOBRE MI*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: white !important;
}



.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  
}

.intro-header .greeting {
  font-style: italic;
  display: flex;
}

.intro-header h1 {
  font-size: 36px;
  margin: 10px 0;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.profile {
  margin: 20px;
}

.profile img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

.profile h2 {
  color: #e84c3d;
  margin: 10px 0;
}

.profile p {
  font-weight: bold;
}

.download-cv {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  border-radius: 5px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin: 5px 0;
}

.contact-info ul li i {
  margin-right: 10px;
}

.experience {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  
}



.experience h3 {
  color: #e84c3d;
  font-size: 24px;
}

.quote {
  background-color: #333;
  color: #fff;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  font-style: italic;
}

.experience-section {
  padding: 50px;
  background-color:  #54326c;
  color: #fff;
}

.experience-container {
  
  margin: 0 auto;
  text-align: center;
}

.experience-container h2 {
  
  margin-bottom: 20px;
  text-align: center;
}



.experience-list {
  list-style: none;

  padding: 0;
}

.experience-list li {
  margin: 10px 0;
}

.experience-list span {

  font-weight: bold;
  margin-bottom: 5px;
}


/*header*/
header {
  background: white !important;
  padding: 10px 0;
 
}

.logo{
  width: 3%;
}
.logo-img {
  width: 50px; /* Ajusta este valor según el tamaño deseado */
  height: auto; /* Mantiene la proporción del logo */
  margin-left: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  
  font-size: 16px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #007bff;
}

.nav-link.active {
  font-weight: bold;
  color: #007bff;
}

.bg-body-tertiary { 
  background-color: white !important;}



.saludobienvenida{
  color: #A569BD;
  font-family: helvetica;
  font-weight: lighter;
  font-size: 30px;
}
.saludobienvenida, .textosaludo, .parrafosbienvenida {
  text-align: left;
}

.kayden-underline-left {
  position: relative;
  display: inline-block;
}
.kayden-underline-left::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px; /* Ajusta el grosor de la línea */
  background-color: #A569BD !important; /* Color de la línea */
}




/* estilos cuarta seccion*/

.cuartaseccion{
  width: 1200px;
  height: 80vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titlesectioncuatro{
  margin-top: 40px;
  color: #FEBD00;
  font-size: 28px;
  font-weight: lighter;
  font-family: helvetica;
}

.subtitulosectioncuatro{
  margin-top: 40px;
  color: black;
  font-size: 30px;
  font-weight: bold;
  font-family: helvetica;
}

.contenedor_alimentos{
  margin-top: 50px;
  width: 1200px;
  height: 60vh;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

/* estilos cajas informativas alimentos*/

/*Caja lista alimentos*/

.sectiontextosizq{
  width: 270px;
  height: 370px;
  background-color: white;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  line-height: 60px;
}

.opciones_comidas{
  font-size: 18px;
  color: #979797;
  font-family: helvetica;
  font-weight: lighter;
  list-style-type: none;
}

ul li:first-child:hover{
  color: #FEBD00;
  text-decoration: underline;
}

/*Caja Pollo*/

.comidauno{
  width: 270px;
  height: 370px;
  background-color: white; 
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titulopollo{
  margin: 15px;
  font-size: 22px;
  font-weight: bolder;
  font-family: helvetica;
}


/*Caja Pollo Asado*/

.comidados{
  width: 270px;
  height: 370px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1); 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tituloensalada{
  margin: 15px;
  font-size: 22px;
  font-weight: bolder;
  font-family: helvetica;
}


/*Caja sandwich*/

.comidatres{
  width: 270px;
  height: 370px;
  background-color: white; 
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*Caracteristicas 3 cajas generales*/


.titulo{
  margin: 15px;
  font-size: 22px;
  font-weight: bolder;
  font-family: helvetica;
}

.signos_preguntas{
  font-size: 12px;
  font-weight: lighter;
  font-family: helvetica;
  color: #FEBD00;
}

.precio{
  margin-top: 10px;
  font-size: 20px;
  font-weight: bolder;
  font-family: helvetica;
  color:#59882B;
}


/* estilos seccion siete*/

/* estilos seccion siete*/

.contenedor_septimo {
  width: 1200px;
  height: 80vh;
  display: flex;
  margin: auto;
  flex-direction: column;
  align-items: center;
}



.subtitulosectionsiete {
  margin-top: 20px;
  color: black;
  font-size: 20px;
  font-weight: bold;
  font-family: helvetica;
}

.box_comidas {
  display: flex;
  flex-direction: row;
  gap: 45px;
}

.boxalimentos {
  width: 280px; /* Ajusta el tamaño según sea necesario */
  height: 350px; /* Ajusta el tamaño según sea necesario */
  border: 2px solid #35c7cf; /* Borde de color */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  
}

.boxalimentos img {
  width: 100%;
  height: ;
}

.titulos_alimentos {
  font-size: 24px; /* Ajusta el tamaño del texto */
  font-family: helvetica;
  font-weight: bold;
  text-align: center;
}

.boxalimentos a {
  text-decoration: none;
  color: #007bff;
  font-size: 16px;
  transition: color 0.3s;
}

.boxalimentos a:hover {
  color: #0056b3;
}


.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.carousel-item {
  padding-left: 15rem;
  padding-right: 15rem;
}




#Hero-Section {
  background-image: url(img/flory.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: auto;
  height: auto;
 
}

.section{
  background-color: white !important;
}


/*Paginas UX UI*/


    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
    }
  
    .text-section, .image-section {
        flex: 1;
        min-width: 300px;
        margin: 10px;
    }
    .text-section h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }
    .text-section h2 {
        color: #0073e6;
        margin-bottom: 20px;
    }
    .text-section p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .badges {
        display: flex;
        gap: 10px;
    }
    .badge {
        display: flex;
        align-items: center;
        background-color: #0073e6;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.9em;
    }
    .badge img {
        height: 20px;
        margin-right: 5px;
    }
    .image-section img  { !important
        width: 100%;
        border-radius: 10px;
    }


.section {
background-color: #f5f5f5;
padding: 1rem 0 !important !important;
}



.row {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
}

.col-md-6 {
flex: 1 0 50%;
padding: 10px;
}

.img-fluid {
width: 100%;
height: auto;
}

.content {
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



p {
line-height: 1.6;
margin-bottom: 20px;
}

.btn {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}

.btn:hover {
background-color: #0056b3;
}

/* CSS MISION VISION */

    

	.skills-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    padding: 42px 24px;
    position: relative;
    background-color: var(--white);
}


.skills-section .cards-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
   
    
    top: 7px;
    left: 0;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    background-color: white;
}

.skills-section .skills-card {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    align-items: center;
    justify-content: center;
    gap: 42px;
    padding: 64px 42px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #ffffff;
}

.skills-section .skills-card-icon {
    position: relative;
    width: 124px;
    height: 124px;
}

.skills-section .title-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.skills-section .title {
    position: relative;
    align-self: stretch;
    height: 42px;
    margin-top: -1px;
    font-family: "Helvetica-Bold", Helvetica;
    font-weight: 700;
    color: var(--black);
    font-size: var(--h3-font-size);
    text-align: center;
    
    white-space: nowrap;
    font-style: var(--h3-font-style);
}

.skills-section .this-is-a-template {
    position: relative;
    align-self: stretch;
    font-family: "Helvetica-Bold", Helvetica;
    font-weight: 700;
    color: var(--black);
  
    text-align: center;
   
}

.skills-section .img {
    height: 124px;
    position: relative;
    width: 127.38px;
}

.skills-section .skills-card-icon-2 {
    height: 127.38px;
    position: relative;
    width: 127.38px;
}



.title {
   
    color: #000000; /* Color de texto predeterminado para el título */
    font-family: "Helvetica-Bold", Helvetica;
    font-weight: 700;
}


.vision {
    color: #1361cf; /* Color de texto para la palabra "VISIÓN" */
    font-family: "Helvetica-Bold", Helvetica;
    font-weight: 700;
}


.icon {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.img {
    width: 100%;
    height: auto; /* Para mantener la proporción de la imagen */
    display: block; /* Para eliminar espacios blancos debajo de la imagen */
}



.box_comidas {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.boxalimentos {
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
  overflow: hidden; /* Asegura que el contenido no se desborde */
}

.boxalimentos:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.imagen-alimento {
  width: 100%;
  height: 200px; /* Ajusta la altura según tus necesidades */
  object-fit: cover; /* Esto asegura que la imagen mantenga su proporción */
}

.titulos_alimentos {
  font-size: 1.2em;
  margin-top: 10px;
  padding: 10px;
}


/* Estidos pag ux*/


    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
    }
    
    .text-section, .image-section {
        flex: 1;
        min-width: 300px;
        margin: 10px;
    }
    .text-section h1 {
        font-size: 2em;
        margin-bottom: 10px;
    }
    .text-section h2 {
        color: #0073e6;
        margin-bottom: 20px;
    }
    .text-section p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .badges {
        display: flex;
        gap: 10px;
    }
    .badge {
        display: flex;
        align-items: center;
        background-color: #0073e6;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.9em;
    }
    .badge img {
        height: 20px;
        margin-right: 5px;
    }
    .image-section img {
        width: 100%;
        border-radius: 10px;
    }


.section {
background-color: #f5f5f5;
padding: 40px 0;
}



.row {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
}

.col-md-6 {
flex: 1 0 50%;
padding: 10px;
}

.img-fluid {
width: 100%;
height: auto;
}

.content {
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



p {
line-height: 1.6;
margin-bottom: 20px;
}

.btn {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}

.btn:hover {
background-color: #0056b3;
}


/* estilos pg diseño grafico */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    color: #b07a36;
    margin-bottom: 20px;
}
.job-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}
.job-period {
    color: #555;
}
.job-description {
    margin-top: 10px;
}
.logos img {
    height: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.featured-works h2 {
    color: #0073e6;
    margin-top: 40px;
}
.work-item {
    margin-top: 20px;
}
.badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.badge {
    display: flex;
    align-items: center;
    background-color: #0073e6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
}
.badge img {
    height: 20px;
    margin-right: 5px;
}
.work-images img {
    height: 150px;
    margin: 5px;
    border-radius: 10px;
}
.work-images {
    display: flex;
    flex-wrap: wrap;
}


.software-icons {
  display: flex;
  flex-wrap: wrap;
}
.software-icons img {
  width: 50px;
  height: 50px;
  margin: 10px;
  object-fit: contain;
}
.hobbies-icons {
  display: flex;
  flex-wrap: wrap;
  
}
.hobbies-icons img {
  width: 50px;
  height: 50px;
  margin: 10px;
  object-fit: contain;
}
.hobbies-icons p {
 
  margin: 5px;
  align-items: flex-start;
}

/* botones */

.custom-button {
  background-color: #A569BD !important;
  border-color: #A569BD !important;
  color: white;
}

.custom-button:hover {
  background-color: #A569BD !important;
  border-color:#A569BD !important;
}


.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links li a {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0; /* Ajusta según tu diseño */
  text-align: center;
  color: #333; /* Ajusta el color del icono según tu diseño */
  font-size: 24px;
  transition: background-color 0.3s, color 0.3s;
}

.social-links li a:hover {
  background-color: #333; /* Ajusta según tu diseño */
  color: #fff; /* Ajusta según tu diseño */
}

.welcome_text {
  font-size: 24px;
  color: #333;
}

.fs-2 {
  font-size: 32px;
  color: #007bff;
}

.btn-primary.kayden_scrollspy {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-primary.kayden_scrollspy:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: white;
}
