@font-face {
    font-family: 'Channe';
    src: url('./fonts/Channe.otf');
}
@font-face {
    font-family: 'Madetommythin';
    src: url('./fonts/MADE\ Tommy\ Soft\ Thin\ PERSONAL\ USE.otf');
}
@font-face {
    font-family: 'Milyuna';
    src: url('./fonts/Milyuna-Regular.ttf');
}
@font-face {
    font-family: 'ArquitectaLigth';
    src: url('./fonts/ArquitectaLight.otf');
}
@font-face {
    font-family: 'MilonerRegular';
    src: url('./fonts/MilonerRegular-L3YgD.ttf');
}
@font-face {
    font-family: 'Tanseek';
    src: url('./fonts/Tanseek\ Modern\ Pro\ Arabic.ttf');
}
@font-face {
    font-family: 'Dream';
    src: url('./fonts/Dream\ Orphans.otf');
}
@font-face {
    font-family: 'Appleligth';
    src: url('./fonts/AppleGaramond-Light.ttf');
}
@font-face {
    font-family: 'Apple';
    src: url('./fonts/AppleGaramond.ttf');
}



 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff6ed;
 
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff6ed;
  z-index: 1000;
}

/* Usamos Grid para dividir en tres: izquierda, centro (logo), derecha */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 95%; /* Esto asegura que la parte de la izquierda y derecha esté alineada con la línea */
  margin: 0 auto; /* Centrado horizontalmente */
  padding: 30px 0; /* Ajusta el padding vertical */
  gap: 20px;
}

/* Línea pegada al header */
.header-line {
  width: 95%;
  height: 10px;
  background-color: #e46c98;
  position: relative;
  z-index: 999;
  margin: 0 auto; /* 🔥 Centrado horizontalmente */
}

/* Logo centrado */
.logo {
  display: flex;
  justify-content: center;
}
.logo img {
  height: 80px;
}

/* Menús de navegación */
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  text-transform: uppercase;
  width: 100%; /* Asegura que ocupe el 100% del contenedor disponible */
  font-family: 'Madetommythin';

}

nav a {
  text-decoration: none;
  color: black;
  font-size: 25px;
  font-weight: bold;
}

nav a:hover {
  color: #e46c98;
}

nav svg {
  cursor: pointer;
  height: 35px;
}

nav svg:hover {
  transform: scale(1.2);
  fill: #e46c98;
}

/* Icono de la cesta */
img[alt="cesta"] {
  height: 35px;
  cursor: pointer;
}

img[alt="cesta"]:hover {
  filter: invert(28%) sepia(93%) saturate(748%) hue-rotate(295deg);
}


.servicios {
  color: #e46c98;
}

.intro{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    padding: 20px 0px 50px 0px;
   
}
.intro h1{
    justify-content: center;
    font-size: 130px;
    text-transform: uppercase;
    text-align: left;
    padding: 300px 200px 100px 100px;
    font-family: 'Channe';
    font-weight: lighter;
}

.intro p{
    font-size: 28px;
    text-align: justify;
    padding: 700px 300px 150px 200px;
    width:100%;
    font-family: 'Appleligth';
    
}

/* Contenedor principal */
.desarrollo {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 200px 30px 0px 30px;
  padding: 100px 30px 0px 30px;;
  
}

/* Imagen a la izquierda */
.desarrollo img {
  width: 40%; /* Imagen ocupa el 45% del contenedor */
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contenedor del texto y packs */
.web h2 {
  position: relative;
  font-size: 40px;
  color: #e46c98;
  font-family: 'Channe';
  text-transform: uppercase;
  font-size: 700;
  margin: 10px 0px 0px 0px;
  text-align: left;
  z-index: 1; /* Asegura que el texto esté por encima */
}



/* Estilo para los párrafos dentro de .web */
.web p {
  font-size: 28px;
  line-height: 1.5;
  margin: 5px 0px 5px 0px;
  color: black;
  font-family: 'Appleligth';
  width: 100%;
}

/* Contenedor de los packs debajo del texto */
.pack-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.pack{
  background-color: #fdcee3;
  height: auto;
  border-radius: 20px;
  width: 40%;
  padding-top: 20px;
}

/* Título de los packs */
.pack h3 {
  font-size: 23px;
  margin-bottom: 8px;
  padding: 5px 15px;
  display: inline-block;
  font-family: 'Milyuna';
  text-transform: uppercase;
}

/* Párrafos dentro de los packs */
.pack p {
  font-size: 25px;
  color: black;
  margin-bottom: 10px;
  padding: 0px 15px; 
  line-height: 1;
  font-family: 'Appleligth';
  text-align: justify;
  width: 100%;
}

/* Estilo para las listas */
.pack h4 {
  font-size: 25px;
  margin-top: 15px;
  color: black;
  font-family: 'Appleligth';
  padding: 10px 15px;
  font-weight: lighter;
}

.pack ol {
  padding-left: 20px;
  padding-right: 20px;
  font-family: 'Appleligth';
  padding-top: 10px;
  text-align: justify;
}

.pack li {
  margin-bottom: 10px;
  font-size: 25px;
  color: black;
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.2;
 
}


.gestion{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px; 
    margin: 250px 0px 0px 20px;
    padding: 20px 10px 10px 50px ;
}
/* Contenedor del texto */
.redes{
  width: 55%;
}
.redes h2 {
  position: relative;
  font-size: 40px;
  color: #e46c98;
  font-family: 'Channe';
  text-transform: uppercase;
  margin: 10px 0px 0px 0px;
  text-align: left;
  z-index: 1; /* Asegura que el texto esté por encima */
}


.redes p{
    font-size: 28px;
    line-height: 1.5;
    margin: 5px 0px 5px 0px;
    padding: 5px 0px 5px 0px;
    color: black;
    font-family: 'Appleligth';
    width: 90%;
    text-align: justify;
}
.redes ol {
  padding-left: 20px;
  font-family: 'Appleligth';
  
}

.redes li {
  font-size: 28px;
  color: black;
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.2;
}
.gestion img{
    width: 45%; /* Imagen ocupa el 45% del contenedor */
    height: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 200px;
    padding-top: 20px;    
    margin-right: 50px;
}
.trabajo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 300px 150px 100px 50px;
    padding: 100px 0px 0px 0px;
    height: 600px;
}
.pasos{
    padding-left: 50px;
    width: 55%;
    font-family: 'Appleligth';
    font-size: 30px;
    text-align: justify;
}
.pasos h4{
    font-family: 'Milyuna';
    font-size: 30px;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 30px;
    text-align: left;
    z-index: 1; /* Asegura que el texto esté por encima */
    position: relative;
    color: #e46c98;
}


.trabajo h2{
  width: 40%;
    font-family: 'Channe';
    font-size: 50px;
    text-transform: uppercase;
    background-color: #fdcee3;
    border-radius: 100%;
    text-align: center;
    justify-content: center;
    padding: 50px;
    
}

.partefinal{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Milyuna';
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    height: 400px;
    margin: 250px 100px 50px 100px;


    & a{
        justify-content: center;
        align-self: center;
        font-family: 'Milyuna';
        font-size: 25px;
        text-transform: uppercase;
        color: black;
        font-weight: bold;
        margin-top: 50px;
        background-color: #fdcee3;
        border-radius: 20px;
        padding: 20px;
    }
}
.partefinal a:hover{
    text-decoration: none;
}
footer {
    background-color: #fdcee3;
    color: black;
    padding: 20px;
    font-family: Madetommythin;
    font-size: 20px;
    font-weight: bold;
    height: 100px;
    padding: 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal {
    display: flex;
    gap: 20px;
}

a {
    color: grey;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.marca {
    font-size: 20px;

}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  font-family: 'Madetommythin';
  color: #e46c98;
}
.menu-movil {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff6ed;
  padding: 15px 20px;
  z-index: 1000;
  
}
.menu-movil a {
  font-weight: bold;
  color: black;
  text-decoration: none; /* Opcional: quita el subrayado */
  margin: 10px 0; /* Espacio entre enlaces */
}
.menu-movil a.inicio{
  color: #e46c98;
}
@media (max-width: 768px) {
  /* -------------------- HEADER -------------------- */
  .header-inner {
    grid-template-columns: auto auto auto;
    padding: 20px;
  }
   .menu-movil.show {
    display: flex;
    font-family: 'Madetommythin';
    text-transform: uppercase;
    font-weight: bold;
    color: black;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;

  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff6ed;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    display: none;
    z-index: 999;
    
  }

  nav.show {
    display: flex;
    
  }

  nav a {
    font-size: 18px;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
  }

  nav img[alt="cesta"] {
    height: 25px;
    align-self: center;
  }

  .logo img {
    height: 50px;
  }

  .intro {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }

  .intro h1 {
    font-size: 60px;
    text-align: center;
    padding: 0;
  }

  .intro p {
    font-size: 18px;
    padding: 20px;
    text-align: justify;
  }

  .desarrollo {
    flex-direction: column;
    margin: 50px 20px;
    padding: 20px;
    gap: 30px;
  }

  .desarrollo img {
    width: 100%;
    height: auto;
  }

  .web h2 {
    font-size: 30px;
    text-align: center;
  }

  .web h2::before {
    left: 50%;
    width: 80%;
  }

  .web p {
    font-size: 18px;
  }

  .pack-container {
    flex-direction: column;
    gap: 20px;
  }

  .pack {
    width: 100%;
  }

  .pack h3,
  .pack p,
  .pack h4,
  .pack li {
    font-size: 18px;
  }

  .gestion {
    flex-direction: column-reverse;
    height: auto;
    margin: 100px 20px 0;
    padding: 20px;
    gap: 30px;
  }

  .gestion img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .redes {
    width: 100%;
  }

  .redes h2 {
    font-size: 30px;
    text-align: center;
  }

  .redes h2::before {
    left: 50%;
    width: 80%;
  }

  .redes p,
  .redes li {
    font-size: 18px;
  }

  .trabajo {
    flex-direction: column-reverse;
    height: auto;
    margin: 100px 20px;
    gap: 30px;
    text-align: center;
  }

  .trabajo h2 {
    width: 100%;
    font-size: 32px;
    padding: 30px;
    border-radius: 50%;
  }

  .pasos {
    width: 100%;
    padding: 0 20px;
  }

  .pasos h4 {
    font-size: 22px;
  }

  .pasos p {
    font-size: 18px;
  }

  .pasos .uno::before,
  .pasos .dos::before,
  .pasos .tres::before,
  .pasos .cuatro::before {
    left: 50%;
    width: 60%;
  }

  .partefinal {
    font-size: 28px;
    padding: 20px;
    margin: 100px 20px;
    height: auto;
  }

  .partefinal a {
    font-size: 18px;
    padding: 15px;
    margin-top: 30px;
  }

  footer {
    font-size: 16px;
    padding: 20px;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }

  .legal {
    flex-direction: column;
    gap: 10px;
  }

  
  .desarrollo, .gestion {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img,
  .gestion img {
    width: 70%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1480px) {
  .header-inner {
    width: 95%;
    padding: 20px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .logo img {
    height: 60px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  nav a {
    font-size: 20px;
  }

  nav svg {
    height: 28px;
  }

  img[alt="cesta"] {
    height: 28px;
  }
  .intro {
    height: auto;
    flex-direction: column;
    padding: 40px 0;
    text-align: center;
  }

  .intro h1 {
    font-size: 80px;
    padding: 100px 50px 50px 50px;
    text-align: center;
  }

  .intro p {
    font-size: 22px;
    padding: 50px 100px;
  }

  .desarrollo {
    flex-direction: column;
    margin: 100px 30px;
    padding: 50px 20px 0px 20px;
    align-items: center;
  }

  .desarrollo img {
    width: 90%;
    height: auto;
  }

  .web h2 {
    font-size: 35px;
    text-align: center;
  }

  .web h2::before {
    left: 50%;
    width: 70%;
  }

  .web p {
    font-size: 22px;
    text-align: justify;
  }

  .pack-container {
    flex-direction: column;
    align-items: center;
  }

  .pack {
    width: 90%;
  }

  .pack h3, .pack p, .pack h4, .pack li {
    font-size: 22px;
  }

  .gestion {
    flex-direction: column-reverse;
    height: auto;
    padding: 20px;
    margin: 100px 20px;
  }

  .gestion img {
    width: 90%;
    height: auto;
    margin: 50px 0;
  }

  .redes {
    width: 100%;
    text-align: center;
  }

  .redes h2 {
    font-size: 35px;
  }

  .redes h2::before {
    left: 50%;
    width: 70%;
  }

  .redes p, .redes li {
    font-size: 22px;
    text-align: justify;
  }

  .trabajo {
    flex-direction: column;
    height: auto;
    margin: 150px 50px;
  }

  .trabajo h2 {
    width: auto;
    font-size: 40px;
    padding: 30px;
  }

  .pasos {
    width: 100%;
    padding: 20px;
    font-size: 22px;
  }

  .pasos h4 {
    font-size: 26px;
  }

  .partefinal {
    font-size: 36px;
    margin: 150px 50px;
    height: auto;
  }

  .partefinal a {
    font-size: 20px;
    padding: 15px 20px;
  }

  footer {
    font-size: 18px;
    height: auto;
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }
   .desarrollo, .gestion {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img,
  .gestion img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 800px) and (max-width: 1250px) {
  .header-inner {
    width: 95%;
    padding: 15px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .logo img {
    height: 50px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    font-size: 16px;
  }

  nav svg {
    height: 24px;
  }

  img[alt="cesta"] {
    height: 24px;
  }
  .intro {
    flex-direction: column;
    padding: 40px 0;
    height: auto;
    text-align: center;
  }

  .intro h1 {
    font-size: 70px;
    padding: 80px 50px 40px 50px;
    text-align: center;
  }

  .intro p {
    font-size: 20px;
    padding: 40px 80px;
  }

  .desarrollo {
    flex-direction: column;
    margin: 80px 20px;
    padding: 40px 20px;
    align-items: center;
  }

  .desarrollo img {
    width: 90%;
    height: auto;
  }

  .web h2 {
    font-size: 32px;
    text-align: center;
  }

  .web h2::before {
    left: 50%;
    width: 60%;
  }

  .web p {
    font-size: 20px;
    padding: 0 10px;
  }

  .pack-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .pack {
    width: 90%;
    padding: 20px 10px;
  }

  .pack h3,
  .pack p,
  .pack h4,
  .pack li {
    font-size: 20px;
  }

  .gestion {
    flex-direction: column-reverse;
    height: auto;
    padding: 30px 20px;
    margin: 100px 20px;
  }

  .gestion img {
    width: 90%;
    height: auto;
    margin: 50px 0;
  }

  .redes {
    width: 100%;
    text-align: center;
  }

  .redes h2 {
    font-size: 32px;
  }

  .redes h2::before {
    left: 50%;
    width: 60%;
  }

  .redes p,
  .redes li {
    font-size: 20px;
    padding: 0 10px;
  }

  .trabajo {
    flex-direction: column;
    align-items: center;
    height: auto;
    margin: 120px 30px;
    padding: 60px 0;
  }

  .trabajo h2 {
    font-size: 40px;
    width: auto;
    padding: 40px;
    text-align: center;
  }

  .pasos {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    text-align: justify;
  }

  .pasos h4 {
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .partefinal {
    font-size: 34px;
    padding: 40px 20px;
    margin: 120px 40px;
    text-align: center;
  }

  .partefinal a {
    font-size: 20px;
    padding: 15px 20px;
  }

  footer {
    font-size: 18px;
    padding: 20px;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
   .desarrollo, .gestion, .trabajo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img,
  .gestion img,
  .trabajo img {
    width: 70%;
    height: auto;
  }
}
@media (min-width: 775px) and (max-width: 1050px) {
  /* Ocultamos el menú de navegación */
  nav {
    display: none;
  }

  /* Mostramos el ícono de la hamburguesa */
  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #e46c98; /* Cambia el color según tu preferencia */
  }

  /* Estilos para el contenedor del menú hamburguesa */
  .menu-movil {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff6ed;
    padding: 15px 20px;
    z-index: 1000;
  }

  /* Mostrar el menú cuando el icono hamburguesa se activa */
  .menu-movil.show {
    display: flex;
  }

  /* Estilos para los enlaces dentro del menú hamburguesa */
  .menu-movil a {
    font-weight: bold;
    color: black;
    text-decoration: none;
    margin: 10px 0;
    text-align: center;
    font-family: 'Madetommythin';
    text-transform: uppercase;
  }

  .menu-movil a.inicio {
    color: #e46c98;
  }

  /* Estilo para los enlaces cuando el menú hamburguesa está activo */
  nav a {
    font-size: 18px;
    padding: 5px 0;
    text-align: center;
    display: block;
  }

  nav svg {
    height: 24px;
  }

  img[alt="cesta"] {
    height: 24px;
  }
   .desarrollo, .gestion {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img,
  .gestion img{
    width: 70%;
    height: auto;
  }
}

/* Desplegar el menú hamburguesa al hacer click */
.menu-toggle.active + .menu-movil {
  display: flex;
}
@media (max-width: 768px) {
  .desarrollo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img {
    width: 70%;
    
    order: 2 !important;
  }

  .desarrollo .web {
    order: 1 !important;
  }
}
@media (min-width: 775px) and (max-width: 1050px) {
  .desarrollo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img {
    width: 70%;
    height: auto;
    order: 2 !important;
  }

  .desarrollo .web {
    order: 1 !important;
  }
}
@media (min-width: 800px) and (max-width: 1250px) {
  .desarrollo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img {
    width: 70%;
    height: auto;
    order: 2 !important;
  }

  .desarrollo .web {
    order: 1 !important;
  }
}
  @media (min-width: 769px) and (max-width: 1480px) {
    .desarrollo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img {
    width: 70%;
    height: auto;
    order: 2 !important;
  }

  .desarrollo .web {
    order: 1 !important;
  }
}
@media (min-width: 1175px){
    .desarrollo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .desarrollo img {
    width: 50%;
    height: auto;
    order: 2 !important;
  }
  .gestion img {
    width: 50%;
    height: auto;
    order: 2 !important;
  }
  .desarrollo .web {
    order: 1 !important;
  }
}