/* BASE */
html{
    scroll-behavior: smooth;
}

body{
  margin:0;
  font-family:'Manrope', sans-serif;
  background:#ece8e2;
  color:#111;
  padding-top:90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2{
    font-family:'Manrope', sans-serif;
    font-weight:400;
}

h3{
    font-family:'Manrope', sans-serif;
    font-weight:700;
}

.container{
  width:min(1300px,90%);
  margin:auto;
}

.logo{
	font-family:'GT Walsheim Trial', sans-serif;
}

/***************************
********** HEADER **********
***************************/
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:20px 0;
  backdrop-filter: blur(10px);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Sub-menu */
.menu .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.menu .menu-item {
    position: relative; 
	-webkit-font-smoothing: antialiased;
}

.menu .menu-list a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent; 
}

.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background-color: #ffffff;
    min-width: 130px; /* Ancho del recuadro del desplegable */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 999;
    
    /* Efecto invisible por defecto */
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
}

/* Enlaces de los proyectos dentro del submenú (Amun, etc.) */
.menu .sub-menu a {
    display: block;
    padding: 8px 16px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
     -webkit-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.menu .sub-menu a:hover {
    background-color: #f5f5f5;
    color: #000000;
}

/* Mostrar el submenú al pasar el ratón por "Proyectos" */
.menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Vuelve a su posición original al mostrarse */
}

.menu .menu-item-has-children > a {
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px; /* Espacio horizontal exacto entre la palabra y la flechita */
    width: auto;
}

/* Crear la flechita con CSS puro (CSS Triangle) */
.menu .menu-item-has-children > a::after {
   content: "";
   display: inline-block;
   margin-top: clamp(2px, 0.09vw + 0.5px, 4px);
   border-width: 4px 4px 0 4px;
   border-style: solid;
   border-color: #333333 transparent transparent transparent; /* Cambia el primer color por el de tu texto */
   -webkit-transition: -webkit-transform 0.25s ease;
   transition: -webkit-transform 0.25s ease;
   transition: transform 0.25s ease;
   transition: transform 0.25s ease, -webkit-transform 0.25s ease;
   will-change: transform;
}

/* Rotar la flecha hacia arriba al pasar el ratón */
.menu .menu-item-has-children:hover > a::after {
   -webkit-transform: rotate(180deg);
   transform: rotate(180deg);
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:#C6EF2C;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  color:#111;
  text-transform: uppercase;
  font-size: 14px;
}

.logo a{
  text-decoration:none;
  font-weight:600;
  color:#111;
  letter-spacing:1px;
  font-size: 20px;
}

.logo a .neon-p{
  color:#bbd32d;
}

.logo a .neon-dot{
  display:inline-block;
  color:#cae54d;
  font-size: 35px;
}

@keyframes neon-flicker{
  0%,18%,22%,25%,53%,57%,100%{
    opacity:1;

    text-shadow:
      0 0 5px #d9f24a,
      0 0 10px #d9f24a,
      0 0 20px #d9f24a,
      0 0 40px #d9f24a;
  }

  20%,24%,55%{
    opacity:.3;
    text-shadow:none;
  }
}

/*********************/
/***** Politicas *****/
/*********************/
main{
    font-size: 12px;
	min-height: calc(100vh - 390px);
}

main .legal-container{
	width: min(1300px, 90%);
    margin: auto;
}

/* HERO */
.hero{
  min-height:calc(100dvh - 330px);
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index: 1;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.hero h1{
  font-size:100px;
  line-height:.9;
  margin:20px 0;
  font-size: clamp(5rem, 5.5vw, 6.5rem);
}

.hero h1 span{
  color:#cae54d;
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
}

.hero-right {
   display: flex;
   justify-content: flex-end;
   align-items: flex-end;
}

.hero-signature {
  position: -webkit-sticky; /* Prefijo obligatorio versiones antiguas Safari */
  position: sticky;
  
  /* NOTA: Safari requiere un valor numérico real en lugar de 'auto' para activar sticky. */
  /* Ajusta 'bottom' o 'top' según el comportamiento que busques: */
  bottom: 0px; 
  right: 0px;
  
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 17px;
}

.dot{
  display: grid;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111111;
  margin: 42px -20px;
  position: absolute;
}

.hero-text{
    margin-bottom: 15px;
}

.hero-signature strong{
  font-family:'Plus Jakarta Sans', sans-serif;
  display:block;
  font-size:13px;
  letter-spacing:3px;
  font-weight:500;
}

.hero-signature p{
  font-family:'Plus Jakarta Sans', sans-serif;
  margin:8px 0 0;
  font-size:13px;
  letter-spacing:2px;
  color:#212121;
}

.eyebrow{
  font-size:12px;
  letter-spacing:3px;
}

.slogan{
  font-size:22px;
  letter-spacing:6px;
}

.section-title{
  font-size:12px;
  letter-spacing:3px;
  font-weight: 600;
  margin: auto;
}

.subtitle{
  max-width:40vh;
  color:#555;
  line-height:1.6;
  margin: 30px 0;
  font-size: 15px;
}

.tags{
  margin-top:30px;
  font-size:12px;
  letter-spacing:2px;
  opacity:.8;
}

/***************************
******* DECORATIONS ********
***************************/
.star{
  position: absolute;
  right: 350px;
  top: 20px;
  font-size: 16px;	
}

.star1{
  position:absolute;
  right:70px;
  top:125px;
  font-size:21px;
}

.star2{
  position:absolute;
  right:170px;
  bottom:160px;
  font-size:40px;
}

/***************************
********* SERVICES *********
***************************/
.services{
  background:#f7f5f2;
  padding:50px 0;
  border-radius:40px 40px 0 0;
  margin-top: -30px;
  z-index: 1;
  position: relative;
  overflow: hidden;
	
   /* 🚀 AÑADE ESTO PARA SAFARI */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.card{
  padding:20px 30px 0 0;
  border-right:1px solid #ddd;
}

.card:last-child{
  border:none;
}

.num{
  font-size:30px;
  color:#979797;
  font-weight: bold;
}

.desc{
  color:#555;
  margin-bottom:25px;
  line-height:1.5;
}

.label{
  font-size:12px;
  text-transform:uppercase;
  margin-top:20px;
  margin-bottom:10px;
  opacity:.6;
  letter-spacing:1px;
}

.card h3{
  font-size:30px;
  margin:10px 0;
}

.card p{
  font-size: 14px;
  color:#494949;
  line-height:1.5;
}

.card ul{
  font-size: 14px;
  line-height: 1.5;
}

.service-footer{
  margin-top:65px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:999px;
}

.service-chips{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  background: #ece8e2;
  color: #101010;
  text-decoration:none;
  border-radius:999px;
  font-size:14px;
  transition:.3s;
}

.project-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid #9b9b9b;
    color: #9b9b9b;
    text-decoration: none;
    border-radius: 50%;
    font-size: 14px;
    transition: .3s;
}

/* ABOUT */
.about{
  padding:50px 0;
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap:40px;
  align-items:center;
}

.about-left h2{
  font-size:52px;
  line-height:.95;
  font-weight:400;
  margin:20px 0;
}

.about-left h2 span{
  color:#cae54d;
}

.about-text{
  margin-top:30px;
  max-width:340px;
  color:#555;
  line-height:1.7;
  font-size: 14px;
}

.about-center .image{
  border-radius:24px;
  overflow:hidden;
}

.about-center img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-right{
  display:flex;
  flex-direction:column;
}

.feature{
  display:flex;
  align-items:flex-start;
  gap:25px;
}

.feature:not(:last-child){
  padding-bottom:30px;
  margin-bottom:30px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.feature-icon{
  width:50px;
  height:50px;
  object-fit:contain;
  flex-shrink:0;
}

.feature-content h3{
  margin:0 0 10px;
  font-size:16px;
}

.feature-content p{
  margin:0;
  font-size:14px;
  color:#666;
  line-height:1.7;
}

.icon{
  color:#C6EF2C;
  font-size:42px;
  line-height:1;
}

.image{
  border-radius:20px;
  overflow:hidden;
  height:250px;
}

.image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* CTA */
/* .cta-footer{
  width:min(1300px,90%);
  padding:30px;
  border-radius:30px;
  margin:20px auto;
  background: linear-gradient(
    135deg,
    #d9f24a 0%,
    #e7e0d6 40%,
    #f3c7a6 100%
  );
} */
.cta-footer{
	width:min(1300px,90%);
	background-image: url('/wp-content/uploads/2026/06/footer.png');
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
	border-radius:25px;
	display: flex;
	justify-content: center;
	margin:20px auto;
    min-height: 150px;
}

.cta-inner{
  width:min(1200px,90%);
  margin:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:100px;
}

/* left text */
.cta-small{
  font-size:13px;
  letter-spacing:3px;
  opacity:.8;
  margin-bottom:3px;
}

.cta-text h2{
  font-size:48px;
  margin:0;
  letter-spacing:1px;
}

/* center */
.cta-description p{
  font-size:13px;
  color:#333;
  line-height:1.6;
}

/* button */
.cta-button{	
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  background:#111;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-size:14px;
  transition:.3s;
}

.cta-button:hover{
  opacity:.8;
  transform:translateY(-2px);
}

/* MENÚ WP limpio */
.menu ul{
  display:flex;
  gap:40px;
  margin:0;
  padding:0;
}

.menu li{
  list-style:none;
}

.menu a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  transition:.3s;
}

.menu a:hover{
  opacity:.5;
}

.price-text{
  display: flex;
  align-items: center
  font-size: 14px;
  margin-bottom: 30px;
}

.price{
	margin-left: 5px;
    font-weight: 500;
    font-size: 17px;
}

/* Footer */
.footer p{
  text-align: center;
  font-size: 13px;
}

footer .container p{
	color: #a7a18a;
	text-align: left;
}

/***************************
******* CONTACT FORM *******
***************************/
.contact{
  padding:140px 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:start;
}

.contact-info h1{
  font-size:90px;
  line-height:.9;
  margin:20px 0;
}

.contact-info p{
  max-width:450px;
  color:#555;
  line-height:1.7;
}

.contact-form{
  background:#f7f5f2;
  border-radius:35px;
  padding: clamp(15px, 4vw, 20px);
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:none;
  border-bottom:1px solid #ccc;
  background:transparent;
  padding:18px 0;
  font-size:16px;
  outline:none;
}

input[type="checkbox"] {
  width:25px;
  font-size: 14px;
}

.wpcf7-list-item-label{
	font-size:14px;
}

.contact-form textarea{
  resize:none;
}

.contact-chips {
  display: -webkit-box;
  display: -webkit-flex; 
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}

.contact-chips .wpcf7-list-item {
  margin: 0;
  display: inline-block;
}

.contact-chips .wpcf7-list-item input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-appearance: none; /* Obliga a Safari a no renderizar el radio */
  appearance: none;
}

.contact-chips .wpcf7-list-item-label {
  display: inline-block;
  padding: 12px 16px;
  font-size: 14px;
  color: #666;
  border: none; /* Elimina cualquier borde nativo residual en iOS */
  border-bottom: 1px solid #ccc;
  border-radius: 0; /* Evita que iOS redondee las esquinas por defecto */
  background-color: transparent !important; /* Anula el fondo gris satinado de Safari */
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  
  /* Evita el destello azul feo al pulsar en iPhone y la selección de texto */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
  -webkit-user-select: none;
  user-select: none;
}

/* Efecto Hover (Escritorio) */
.contact-chips .wpcf7-list-item-label:hover {
  color: #000;
  border-bottom-color: #888;
}

/* Estado Seleccionado (Cuando el radio oculto está checked) */
.contact-chips .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
  color: #000 !important;
  font-weight: 600;
  border-bottom: 2px solid #000 !important;
  opacity: 1; /* Corrige errores de opacidad heredados en iOS */
}

/* Accesibilidad mediante teclado */
.contact-chips .wpcf7-list-item input[type="radio"]:focus + .wpcf7-list-item-label {
  outline: 1px dashed #000;
}

.contact-form .button p input{
  margin-top:20px;
  border:none;
  background:#C6EF2C;
  color:#111;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
}

/* ======================
   PROYECTOS HOME
====================== */

.projects-home{
    padding:40px 0;
}

.projects-header{
  margin-bottom: 15px;
  margin-top: -15px;
  display: flex;
  justify-content: end;
}

.projects-header a{
  font-size: 13px;
  color: #7f7f7f;
  text-decoration: none;
}

.projects-grid{
  display:grid;

  grid-template-columns:
      minmax(0, 1.2fr)
      minmax(0, 1fr);

  grid-template-rows:
      235px
      235px;

  grid-template-areas:
      "amun img2"
      "amun img3";

    gap:20px;
}

/* TARJETAS */

.project-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;

  /* SOLUCCIÓN SAFARI 1: Fuerza al navegador a crear una capa de renderizado limpia */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
    
  /* SOLUCCIÓN SAFARI 2: Asegura que el recorte funcione en elementos basados en Webkit */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.project-card img{
    width:100%;
    height:130%;
    object-fit:cover;
    display:block;
}

/* MAIN Project */

.project-main{
    grid-area:amun;
    text-decoration:none;
}

.project-overlay{
    position:absolute;
    inset:0;
    background:
     linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15)
     );

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding:30px;
	overflow: hidden;
    border-radius: inherit;
}

.project-overlay h3{
   color: #fff;
   font-size: 22px;
   margin: 0;
   font-weight: 400;
}

.project-overlay p{
   color:#fff;
   margin-top:5px;
   font-size:12px;
   letter-spacing:.08em;
   text-transform:uppercase;
}

.project-two{
   grid-area:img2;
}

.project-three{
   grid-area:img3;
}

.project-two img, .project-three img{
  filter: blur(2px); 
}

/* HOVER */

.project-card img{
   transition:transform .5s ease;
}

.project-card:hover img{
   transform:scale(1.05);
}

/***************************
********* SERVICES *********
***************************/
#web-esencial,
#web-estrategica,
#solucion-medida{
    scroll-margin-top:140px;
}

.line{
	border-right:1px solid #ccc;
}

.services-page-hero{
	background-image: url('/wp-content/uploads/2026/06/hero-services-e1781738617898.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	display: flex;
	justify-content: center;
    min-height: calc(100dvh - 330px);
}

.services-page-hero h1{
    font-size:90px;
    line-height:.9;
    margin:20px 0;
}

.services-nav{
    position:sticky;
    top:85px;
    z-index:10;
    background:#ece8e2;
    border-top:1px solid rgba(0,0,0,.08);
	margin-top: -30px;
	border-radius: 40px;
	
    /* 🚀 AÑADE ESTO PARA SAFARI */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.services-nav .container{
    display:flex;
    gap:40px;
    padding:20px 0;
}

.services-nav a{
    text-decoration:none;
    color:#111;
    font-size:14px;
    letter-spacing:1px;
}

.services-nav a:hover{
	font-weight: bold;
}

.service-detail{
	position:relative;
    padding-block: clamp(40px, 10vw, 40px);
}

.service-card{
    background:#f7f5f2;
    border-radius:50px;
 	padding:clamp(32px,4vw,60px);
	display:grid;
    grid-template-columns:1fr 1fr;
	position:relative;
    overflow:hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.service-detail:target .service-card{
 	 box-shadow:0 0 15px rgb(92 95 78 / 17%);
	 transform: translateY(-3px);
}

.service-card:hover::before{
    opacity:1.5;
}

.service-number{
    font-size:72px;
    color:#979797;
    font-weight:700;
}

.service-left h2{
    font-size:48px;
    margin:20px 0;
}

.service-left p{
    max-width:420px;
    color:#666;
    line-height:1.7;
	font-size: 15px;
}

.service-right h3{
    margin-top:0;
    margin-bottom:20px;
}

.service-right ul{
    margin-bottom:40px;
    padding-left:20px;
}

.service-right li{
    margin-bottom:10px;
}

.service-price a{
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    background:#C6EF2C;
    font-weight:600;
	text-decoration: none;
    color: #111;
}

/* FAQ */
.faq-section{
    padding:50px 0;
}

.faq-header{
    max-width:700px;
    margin-bottom:50px;
}

.faq-header h2{
    margin-top:15px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.faq-item{
    border:1px solid #e5e5e5;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
}

.faq-item summary{
    cursor:pointer;
    list-style:none;
    padding:25px 30px;
    font-weight:600;
    position:relative;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:24px;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 30px 25px;
    line-height:1.7;
    color:#666;
}

/***************************
******** NOSOTRAS **********
***************************/
.about-hero-page{
	background-image: url('/wp-content/uploads/2026/06/hero-aboutus-e1782400659888.webp');
    background-position: center;
    background-repeat: no-repeat;
	display: flex;
	justify-content: center;
    min-height: calc(100dvh - 330px);
	background-size: cover;
	overflow: hidden;
}

.about-hero-page h1{
  font-size:90px;
  line-height:1.1;
  margin:20px 0;
}

.about-hero-page::after{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:#C6EF2C;
  filter:blur(180px);
  opacity:.12;
  right:-100px;
  top:-50px;
  pointer-events:none;
}

.about-intro{
  padding:65px 0;
  background: #f7f5f2;
  margin-top: -30px;
  border-radius: 40px 40px 0 0;
  position: relative;

  /* 🚀 AÑADE ESTO PARA SAFARI */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.about-intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-intro-image img{
  width:100%;
  border-radius:30px;
  display:block;
}

.about-intro-text h2{
  font-size:56px;
  line-height:.95;
  margin:20px 0;
}

.about-intro-text .child{
  color:#666;
  line-height:1.8;
  font-size: 15px;
}

.about-process{
  padding:100px 0;
}

.process-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.process-card{
  padding:30px;
  background:white;
  border-radius:24px;
}

.process-card span{
  font-size:42px;
  color:#C6EF2C;
  font-weight:700;
}

.process-card h3{
  margin-top:20px;
}

.process-card p{
  color:#666;
  line-height:1.6;
  font-size: 15px;
}

.about-values{
  padding:100px 0;
  background: #f7f5f2;
}

.values-tags{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-top:40px;
}

.values-tags span{
  padding:14px 24px;
  border-radius:999px;
  background:#e7e7e7;
  font-size:14px;
  transition:.3s;
}

.values-tags span:hover{
  background:#C6EF2C;
}

.about-philosophy{
  padding:40px 0;
}

.philosophy-box{
  padding:80px 0;
  border-radius:40px;
}

.philosophy-box h2{
  font-size:60px;
  line-height:.95;
  margin:20px 0;
}

.philosophy-box p:last-child{
  color: #666;
  max-width:600px;
  line-height:1.8;
  font-size: 15px;
}

.borde-corto{
  display: inline-block;
  border-bottom: 2px solid #0e0e0e;
  width: 30px;
}

/***************************
******* TOGGLE MENU ********
***************************/
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* ANIMACIÓN ☰ → ✕ */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.btn-mobile {
	display: none;
}

.container-footer-legal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; /* Por defecto en móvil: uno encima de otro */
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 15px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #777777;
  margin: 0;
}

/* Estructura del menú generado por WordPress */
.legal-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  justify-content: right;
  gap: 10px;
}

.legal-nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.legal-nav ul li a {
  font-size: 0.85rem;
  color: #a7a18a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav ul li a:hover {
  color: #E67E22; /* El tono naranja de tu marca para el hover */
}

/* --- EFECTO DE LAS LÍNEAS SEPARADORAS DE LA IMAGEN --- */
/* Añade una barra "|" a la izquierda de cada enlace legal, excepto al primero */
.legal-nav ul li:not(:first-child)::before {
  content: "|";
  color: #cccccc;
  margin-right: 10px;
  font-size: 0.85rem;
}

/***************************
******** RESPONSIVE ********
***************************/

/* Tablet (1024px) */
@media (max-width: 1024px){
/*   .hero-grid{
    grid-template-columns:1fr;
  } */

  .hero-art{
    max-width:500px;
    margin:auto;
  }

  .hero h1{
    font-size:72px;
  }

  .hero-signature{
    left: 105px;
    bottom:40px;
  }

  .btn{
	font-size: 13px;
    padding: 14px 14px;
  }

  .menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
	
  .section-title {
     margin: auto;
  }
	
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-left h2{
    font-size:56px;
  }

  .about-center .image{
    height:450px;
  }

  .pricing-grid{
    grid-template-columns:1fr;
  }

  .grid-3{
    grid-template-columns:1fr;
  }

  .card{
    border-right:none;
    border-bottom:1px solid #ddd;
	padding: 10px 20px 50px 25px;
  }

  .card:last-child{
    border-bottom:none;
  }

  .cta-inner{
    flex-direction:column;
    text-align:center;
	gap: 20px;
    margin: 10px;
  }

  .services-page-hero h1{
    font-size:72px;
  }

  .service-card{
    grid-template-columns:1fr;
    gap:40px;
  }
	
  .service-card:hover{
    transform:translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    background:#faf8f5;
  }

  .service-left h2{
    font-size:40px;
  }
	
  .about-intro-grid{
    grid-template-columns:1fr;
  }

  .process-grid{
    grid-template-columns:1fr 1fr;
  }

  .about-hero-page h1{
    font-size:72px;
  }
	
  .projects-home{
    padding:90px 0;
  }

  .projects-header{
    flex-direction:column;
    align-items:flex-end;
    gap:15px;
  }

  .projects-grid{
     grid-template-rows:auto;
  }

  .project-amun,
  .project-two,
  .project-three{
     grid-column:auto;
     grid-row:auto;
  }

  .project-main{
     min-height:420px;
  }

  .project-two,
  .project-three{
      min-height:260px;
  }
}

/* Mobile (768px) */
@media (max-width: 768px){
  html {
	overflow-x: hidden;
  } 

  body{
    padding-top:15px;
	overflow-x: hidden;
  }

  .container{
    width: 90%;
  }

  .header{
    padding:15px 0;
    position: fixed; 
    top:0;
    left:0;
    width:100%;
    z-index:2000;
  }

  .nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
  }

  .menu-toggle span {
	display:block;
    height: 3px;
    width: 100%;
    background: #111;
    border-radius: 2px;
	transition: all 0.4s ease;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #ece8e2;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 100px 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 25px; 
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu ul {
 	display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0;
    padding: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 25px;
    max-width: 100%;  
    box-sizing: border-box;
  }
	
  .menu-list li {
    list-style: none;
  }

  .menu a {
    font-size: 18px;
    color: #111;
    text-decoration: none;
  }

  /* Submenu */
  .menu .menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start; /* Alinea los enlaces a la izquierda */
    gap: 16px;
    width: 100%;
    padding: 20px;
  }

  .menu .menu-item {
    width: 100%;
  }

  /* En móvil el submenú NO flota; se expande hacia abajo de forma natural */
  .menu .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    padding: 8px 0 0 16px; /* Sangría a la derecha para que se note la jerarquía */
    background-color: transparent;
        
    /* Forzamos a que esté visible siempre en móvil ya que no hay hover táctil */
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu .sub-menu a {
    padding: 8px 0;
    font-size: 16px;
  }

  .menu .menu-item-has-children > a::after {
    display: none !important;
  }
	
  /* Convierte en chip amarilla el ultimo elemento */
  .menu-list > li:last-child > a {
    background: #C6EF2C;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  /* ocultar botón CTA principal en móvil */
  .btn { display: none; }

  .hero h1{
    font-size:52px;
  }

  .hero-right{
    display: none;
  }

  .hero-signature{
    position:absolute;
  }
	
  .subtitle{
    max-width:100%;
  }

  .pricing{
    padding:80px 0;
  }

  .pricing-card{
    padding:30px 20px;
  }

  .pricing-card h3{
    font-size:20px;
  }

  .about-left h2{
    font-size:42px;
  }

  .about-center .image{
    height:190px;
  }

  .cta-footer{
    padding:30px 0;
  }

  .cta-text h2{
    font-size:36px;
  }

  .cta-button{
    justify-content:center;
  }
  
  /* Contact */
  .contact-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .contact-info h1{
    font-size:52px;
  }

  .contact-form button{
    width:100%;
  }
	
  /* Services */
  .services-page-hero{
    position: relative;
  }

  .services-page-hero h1{
    font-size:52px;
    line-height:.95;
  }

  .services-nav{
      position:relative;
      top:auto;
  }

  .services-nav .container{
	display: grid;
    overflow-x:auto;
    gap:10px;
    padding:15px 0;
    -ms-overflow-style:none;
    scrollbar-width:none;
  }

  .services-nav .container::-webkit-scrollbar{
    display:none;
  }

  .services-nav a{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:999px;
    background:#f5f3ef;
    transition:.3s;
  }

  .services-nav a:hover{
	background:#C6EF2C;
  }

  .service-card{
    grid-template-columns:1fr;
    gap:30px;
  } 

  .service-number{
    font-size:50px;
  }

  .service-left h2{
    font-size:34px;
  }

  .service-price{
    width:100%;
    text-align:center;
    box-sizing:border-box;
  }

  /* FAQ */
  .faq-item summary {
	 padding: 25px 35px;
  }
	
  /* About */
  .about-hero-page {
    position: relative;
  }
	
  .about-hero-page h1{
    font-size:52px;
  }

  .about-intro-text h2{
    font-size:40px;
  }

  .process-grid{
    grid-template-columns:1fr;
  }

  .section-title{
    margin: auto;
  }
 
  .values-tags span {
    font-size: 12px;
  }
	
  .philosophy-box{
    padding:40px 0;
  }

  .philosophy-box h2{
    font-size:38px;
  }
	
  /* Projects */
 .projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
 }

 .projects-header {
    margin-top: 5px;
 }
	
 .projects-home{
    padding:35px 0;
  }

  .project-main{
     min-height:340px;
	 aspect-ratio: 16 / 9;
  }

  .project-two,
  .project-three{
     min-height:220px;
	 aspect-ratio: 1 / 0.1;
  }

  .project-info{
    left:20px;
    bottom:20px;
  }

  .project-info h3{
     font-size:30px;
  }

  .project-info p{
     font-size:12px;
  }

  .container-footer-legal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; /* En PC se abren a los extremos */
    gap: 0;
    text-align: left;
  }
  
  .legal-nav {
    display: flex;
  }
	
  .legal-nav ul {
    display: contents;
    justify-content: flex-end;
  }
	
  .legal-nav ul li a {
	 font-size: 11px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px){
  .hero h1{
    font-size:55px;
  }

  .hero-grid {
	grid-template-columns: 1fr;
  }
	
  .about h2{
    font-size:30px;
  }

  .cta-text h2{
    font-size:30px;
  }

  .image{
    height:190px;
  }
  
  .dot{
	display:none;
  }
	
  .pricing-card{
    padding:25px 15px;
  }
	
  .services-page-hero h1{
    font-size:42px;
  }

  .service-number{
    font-size:40px;
  }

  .service-left h2{
    font-size:28px;
  }

  .service-right ul{
    padding-left:18px;
  }
	
  .about-hero-page h1{
    font-size:40px;
  }

  .about-intro-text h2{
    font-size:32px;
  }

  .philosophy-box h2{
    font-size:30px;
  }
}