/* Importar la fuente del logo (ajústala si tienes el archivo exacto) */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Pacifico&display=swap');
:root {
    --color-1: #070A29;
    --color-2: #060555;
    --color-3: #440BD4;
    --color-4: #D33BFF;
    --color-5: #FF2079;
    --color-6: #FA8585;
    --color-7:#ff8400;
    --text-light: #ffffff;
    --text-glow: rgba(255, 255, 255, 0.9);
}

body {
    background: var(--color-1);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    overflow-y: scroll;
    -ms-overflow-style: none; 
}
body::-webkit-scrollbar {
    display: none;
}

a:has(> button) {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

a:has(> button):focus {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}
/* MENÚ */
header {
    background: var(--color-1);
    padding: 20px;
    text-transform: uppercase;
    font-size: 1.5em;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 1em;
    color: var(--color-5);
    text-shadow: 0px 0px 10px var(--color-5);
    display: flex;
    align-items: center; 
    gap:5px;

}
.logo-cursive{
    font-family: 'Pacifico', cursive;
     font-size: 0.80em;
}
.logo-tilde{
    color: #ffffff;
    text-shadow: 0px 0px 10px #ffffff;
}
.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    gap:20px;
}
li {
    display: inline-block;
    margin: 0 15px;
}
a {
    text-decoration: none;
    color: var(--color-5);
    font-size: 1.0em;
    transition: 0.3s;
    padding: 10px 20px;
    border-radius: 5px;
}
a:hover {
    border: var(--color-5);
    border-radius: 30px;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0px 0px 15px var(--color-5);
    color: var(--color-5);
}
/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 5px;
  margin: 4px 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-5), var(--color-4));
  transition: 0.4s;
}

/* HERO */
.hero {
    height: 100vh;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}
.overlay{
    position: absolute;
    top: 50px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 100px;
}
.hero-content {
    width: 40%;
}
.hero-text {
   width: 60%;
   margin-top:100px;
}
.hero-text h1 {
    font-size: 3em;
    margin: 0;
    padding: 20px;
    color: var(--text-light);
    font-family: Rajdhani, sans-serif;
    text-shadow: 0px 0px 10px var(--text-glow);
}
.hero-text p {
    font-size: 1.5em;
    margin: 20px 0;
    color: var(--text-light);
    text-shadow: 0px 0px 10px var(--text-glow);
}
.hero-content img {
    max-width: 150%;
    height: 540px;
    border-radius: 30px;
    clip-path: ellipse(100% 100% at 10% 0%);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: 150% 150%; 

}
 .hero-text .cta-button {
    background: linear-gradient(135deg, var(--color-5) 20%, var(--color-4) 100%);
    color: var(--text-light);
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.5s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 15px var(--color-5);
    margin-top: 20px;
    display: inline-block;
}
.hero-text .cta-button:hover {
    background: var(--color-1);
    border-color: var(--color-5);
    border-radius: 30px;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0px 0px 25px var(--color-5);
    color: var(--color-5);
}
/* TRANSITION */
.transition {
    width: 90%;
    height: 25vh;
    top: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    gap: 60px;
    justify-content: center;
    left:2%;
}

.transition-wrapper {
    position: relative;
    width: 25%;
    perspective: 1000px;
    z-index: 0;
    justify-content: center;
    align-items: center;

}

.transition-wrapper.special-size {
    width: 30%;
    height: 100%; 
    bottom: 40px;
}

.transition-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translate(80px, -20px);
    clip-path: polygon(15% 0, 100% 0, 100% 80%, 85% 100%, 0 100%, 0 20%);
    border-radius: 30px;
    border: 2px solid var(--color-5);
    background: transparent;
    box-shadow: 0 0 20px var(--color-5), 0 0 40px var(--color-5);
    opacity: 0.8;
    filter: blur(1px);
    z-index: -1;
}
.transition-wrapper:hover .transition-content {
    transform: rotateY(180deg); 
}

.transition-content {
    transform-style: preserve-3d; 
    transition: transform 0.6s ease;
    font-size: 1.2em;
    width: 100%;
    height: 100%; /* Asegura que el contenido ocupe toda la altura del wrapper */
    min-height: 70px; /* Establece una altura mínima para todos los elementos */
    min-width: 100px;
    border-radius: 30px;
    z-index: 1;
    position: relative;
    gap: 0px;
}

.transition-content h2 {
    font-size: 1.7em;
    color: var(--text-light);
    text-shadow: 0px 0px 0px var(--text-glow);
    text-transform: uppercase;
    text-shadow: 0px 0px 10px var(--text-glow);
}
.transition-content p {
    font-size: 1.0em;
    color: var(--text-light);
}

.transition-content .front,
.transition-content .back {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0px 0px 15px var(--color-5);
    clip-path: polygon(15% 0, 100% 0, 100% 80%, 85% 100%, 0 100%, 0 20%);
    
}

.transition-content .front {
    background: linear-gradient(135deg, var(--color-5) 20%, var(--color-4) 100%);
    box-shadow: 0px 0px 15px var(--color-5);
    transform: rotateY(0deg);
    z-index: 2;
}

.transition-content .back {
    background: linear-gradient(135deg, var(--color-4) 20%, var(--color-5) 100%);
    box-shadow: 0px 0px 15px var(--color-5);
    transform: rotateY(180deg);
    z-index: 1;
}
/* SOBRE NOSOTROS*/
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0px;
  background: var(--color-1);
  color: var(--text-light);
  gap: 30px;
}

.about-title{
  display: flex;
  flex-direction: column;
  align-items: center;
   justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.about-image {
  display: flex;
  justify-content: flex-end;
}

.about-img {
  width: 300px;
  height: auto;
  border-radius: 30px;
  clip-path: calc(ellipse(100% 100% at 10% 0%));
}

.about-content {
  text-align: center;
  width: 100%;
}

.about-content h1 {
  font-size: 2.5em;
  color: var(--text-light);
  margin-bottom: 15px;
}

.about-content p {
  font-size: 1.2em;
  color: var(--text-light);
}
.about-all {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0px;
  gap: 50px;
  color: var(--text-light);
  width: 100;
}

.about-photo {
  display: flex;
  justify-content: flex-start;
  width: 100%;

}

.about-photo img.about-img {
  width: 140%;
  height: 100%;
  border-radius: 0px;
  clip-path: polygon(0 0, 30% 0, 70% 50%, 30% 100%, 0 100%, 0 0%);
  box-shadow: 20px 0 0 0 var(--color-5); 
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 90%;
  padding: 0 10px;
  text-align: justify;
}

div.about-text1 {
  border: none;
  border-top: 4px solid var(--color-5);
}
div.about-text2 {
  border-bottom: 4px solid var(--color-5);
}
div.about-text3 {
  border: none;
  border-top: 4px solid var(--color-5);
}

.about-text h2 {
  font-size: 1.8em;
  color: var(--color-5);
  text-shadow: 0 0 10px var(--color-5);
  margin-bottom: 10px;
}
.about-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-light);
}

.about-text strong {
  color: var(--color-5);
  text-shadow: none;
}

.about-text4 {
  margin-top: 40px;
  text-align: center;
}

.about-text4 h2 {
  font-size: 1.8em;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--color-1);
  text-transform: uppercase;
  margin-bottom: 0px;
  padding: 0px;
}

.about-text4 p {
  font-size: 1.1em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 0px;
}

.about-text4 .cta-button {
  background: linear-gradient(135deg, var(--color-5) 20%, var(--color-4) 100%);
  color: var(--text-light);
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.5s ease, box-shadow 0.3s ease;
  box-shadow: 0px 0px 15px var(--color-5);
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.about-text4 .cta-button:hover {
  background: var(--color-1);
  border-color: var(--color-5);
  border-radius: 30px;
  border-width: 2px;
  border-style: solid;
  box-shadow: 0px 0px 25px var(--color-5);
  color: var(--color-5);
}
.neon-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3em;
  color: var(--color-5);
  text-shadow: 0 0 10px var(--color-5), 0 0 20px var(--color-5);
  margin-bottom: 20px;
}

.glass-card {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.glow-box {
  border-left: 4px solid var(--color-5);
  padding: 20px;
  border-radius: 30px;
}

/* INTERSECCIÓN UNO*/
.transition-short.cyberpunk-clip {
  position: relative;
  padding: 10% 20px;
  margin-top:10%;
  color: var(--text-light);
  text-align: center;
  font-size: 1.2em; 
}

.transition-short.cyberpunk-clip p {
  font-size: 1.4em;
  font-family: 'Rajdhani', sans-serif;
}

.ia-line {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  filter: drop-shadow(0 0 6px var(--color-5)) brightness(1.2);
  animation: pulse-glow 3s infinite alternate;
}

.ia-line.top-left {
  top: 0;
  left: 0;
  transform: rotate(10deg);
}

.ia-line.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(-10deg);
}

@keyframes pulse-glow {
  0% {
    opacity: 0.3;
    filter: drop-shadow(0 0 4px var(--color-4));
  }
  100% {
    opacity: 0.6;
    filter: drop-shadow(0 0 12px var(--color-5));
  }
}
/* INTERSECCIÓN DOS*/
.highlights-loop {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-light);
}

.center-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--color-4), var(--color-3));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-shadow: 0 0 25px var(--color-5);
}

.center-icon i {
  font-size: 2rem;
  color: white;
}

.highlights-loop svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Posicionamiento de cada punto */
.highlight-point {
  position: absolute;
  width: 400px;
  text-align: center;
  padding: 1rem;
}

.highlight-point i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--color-5);
}

.highlight-point h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.highlight-point p {
  font-size: 0.9rem;
  color: #ccc;
}

/* Posiciones alrededor del círculo */
.top-left {
  top: 10%;
  left: 5%;
}

.top-right {
  top: 10%;
  right: 5%;
}

.bottom-right {
  bottom: 10%;
  right: 5%;
}

.bottom-left {
  bottom: 10%;
  left: 5%;
}

/* SERVICIOS */
.services {
  background: var(--color-1);
  padding: 60px 20px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.services-intro {
  max-width: 1200px;
  text-align: center;
}

.services-intro h2 {
  font-size: 2.5em;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--color-1);
  margin-bottom: 20px;
}

.services-description {
  font-size: 1.2em;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--color-1);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.service-item {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16; /* Vertical formato móvil */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 15px var(--color-5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color:var(--color-1);
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px var(--color-5);
}

.service-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.gradient-overlay {
  position: absolute;
  bottom: 0;
  height: 65%; /* Aumentado para cubrir más área vertical */
  width: 100%;
  background: linear-gradient(to top, var(--color-5), transparent);
  z-index: 2;
  pointer-events: none;
}

.service-text {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 20px;
  color: var(--text-light);
  text-align: left;
  box-sizing: border-box;
}


.service-text h2 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: var(--text-light);
  text-shadow: 0 0 5px var(--color-1);
}

.service-text p {
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-light);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--color-5) 20%, var(--color-4) 100%);
  backdrop-filter: blur(6px);
  color: var(--text-light);
  font-size: 0.9em;
  padding: 6px 10px;
  border-radius: 12px;
  z-index: 4;
}
.service-badge:hover {
  padding: 12px 20px;
  font-size: 1.4em;
}

.service-badge a {
  all: unset;
  display: inline-block;
  cursor: pointer;
  color: var(--text-light); 
  text-decoration: none;
}
.services-cta {
  margin-top: 60px;
  text-align: center;
}
.services-cta  a {
  text-decoration: none;
  border: none;
  box-shadow: none;
  padding: 0px 0px;
}

.services-cta h3 {
  font-size: 1.6em;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--color-1);
}

.services-cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
} 
/* TESTIMONIOS */

.testimonials-cyber {
  background: var(--color-1);
  color: var(--text-light);
  padding: 100px 20px;
  margin-bottom: 50px;
  font-family: 'Rajdhani', sans-serif;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5em;
}

.testimonials-title {
margin-bottom: 5px;;
}
.testimonial-subtitle {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 5%;
  width: 80%;
  margin-left: 10%;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--color-5) 20%, var(--color-4) 100%);
  box-shadow: 0px 0px 15px var(--color-5);
  border-radius: 30px;
  padding: 30px;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  clip-path: polygon(15% 0, 100% 0, 100% 80%, 85% 100%, 0 100%, 0 20%);
  backdrop-filter: blur(4px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px var(--color-4);
}

.testimonial-text {
  font-style: italic;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-glow);
}

.testimonial-meta {
  margin-top: 20px;
  color: var(--color-3);
  font-weight: bold;
  font-size: 0.9em;
}

.name {
  color: var(--color-1);
}

/* Opcional: fondo suave que conecta con secciones superior/inferior */
.testimonials-cyber::before,
.testimonials-cyber::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: -1;
}

.testimonials-cyber::before {
  top: -100px;
  background: linear-gradient(to bottom, transparent, var(--color-1));
}

.testimonials-cyber::after {
  bottom: -100px;
  background: linear-gradient(to top, transparent, var(--color-1));
}

/* PROCESO */
.map-timeline {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.map-container {
  position: relative;
  width: 100%;
}

.map-image {
  width: 100%;
  display: block;
  mask-image: linear-gradient(to top, transparent 0%, #000 20%, #000 80%, transparent 100%),
              linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: 
    linear-gradient(to top, transparent 0%, #000 20%, #000 80%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-point i {
  font-size: 30px;
  color: #ff0055;
}

.tooltip {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-1);
  border-radius: 30px;
  padding: 10px 15px;
  width: 200px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.map-point:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

/* CONTACTO */
#contact {
  background: var(--color-1);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 10%;
}

.contact-section {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--color-5);
  border-radius: 30px;
  box-shadow: 0 0 25px var(--color-5);
  padding: 40px;
  text-align: center;
  z-index: 1;
  position: relative;
}

h2.neon{
  font-family: 'Rajdhani', sans-serif;
  font-size: 3em;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--color-1), 0 0 20px var(--color-1);
  margin-bottom: 20px;
}


.contact-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
  text-shadow: 0 0 10px var(--color-1);
}

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

.contact-form label {
  font-size: 1.1em;
  color: var(--color-5);
  text-align: left;
  text-shadow: none;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-5);
  border-radius: 15px;
  padding: 15px;
  font-size: 1em;
  color: var(--text-light);
  outline: none;
  transition: 0.3s ease;
  box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-color: var(--text-light);
}

.phone-field {
  display: flex;
  align-items: stretch;
}

.phone-field select {
  border: 2px solid var(--color-5);
  border-right: none;
  border-radius: 15px 0 0 15px; 
  box-shadow: none;
  padding: 15px;
  font-size: 1em;
  outline: none;
  color: var(--color-5);
  background: rgba(255, 255, 255, 0.05);
}

.phone-field input[type="tel"] {
  border: 2px solid var(--color-5);
  border-radius: 0 15px 15px 0;
  box-shadow: none;
  padding: 5px;
  font-size: 1em;
  flex: 1;
  outline: none;
}

.phone-field select:focus,
.phone-field input[type="tel"]:focus {
  border-color: var(--color-5, #FF2079);
  box-shadow: 0 0 5px var(--color-5, #FF2079);
}
/* ===== CHECKBOX PRIVACIDAD & MARKETING ===== */
.contact-form .form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  font-size: 1em;
  color: var(--text-light);
}

.contact-form .form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-5); /* color del check */
  cursor: pointer;
}

.contact-form .form-checkbox label {
  color: var(--text-light);
  font-size: 1em;
  text-shadow: 0 0 5px var(--color-1);
  cursor: pointer;
}

.contact-form .form-checkbox a {
    color: var(--color-5);
    font-size: 1.0em;
    padding: 0px;
    transition: 0.3s ease;
}

.contact-form .form-checkbox a:hover {
    color: var(--text-light);
    font-size: 1.0em;
    padding: 0px;
    transition: 0.3s ease;
    border: none;
    box-shadow: none;
    text-shadow: none;
}


.contact-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start; 
  justify-content: center;
  gap: 5%;
  width: 100%;
}
.alternative-contact ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin-top: 20%;
  gap: 30px;
}

.alternative-contact ul li {
  display: flex;
  align-items: center;
}

.alternative-contact ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-5);
  border: 3px solid var(--color-5);
  box-shadow: 0px 0px 15px var(--color-5);
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  margin-right: 10px;
}
.alternative-contact p{
 font-size: 1.2em;
}

/* FOOTER */
footer {
    background: var(--color-5);
    padding: 30px;
    box-shadow: 0px 0px 15px var(--color-5);
    width: 100%;
    bottom: 0; 
    left: 0;
    z-index: 1000;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1em;
    margin: 0 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-3); 
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    font-size: 1.5em;
    margin: 0 5px;
}

/*  POPUP DE COOKIES   */

.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 600px;
  background: rgba(7, 10, 41, 0.95);
  border: 2px solid var(--color-5);
  border-radius: 20px;
  box-shadow: none;
  backdrop-filter: blur(12px);
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  padding: 25px;
  z-index: 2000;
  animation: popup-glow 1s ease forwards;
}

.cookie-content h2 {
  font-size: 1.5em;
  color: var(--color-5);
  margin-bottom: 10px;
  text-shadow: 0 0 0px var(--color-), 0 0 0px var(--color-4);
}

.cookie-content p {
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-buttons button {
  flex: 1;
  font-size: 1em;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  transition: 0.3s ease;
  text-shadow: none;
  box-shadow: none;
}

.cookie-buttons button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--color-5);
}

/* Botón outline (rechazar) */
.cookie-buttons .outline {
  background: transparent;
  border: 2px solid var(--color-5);
  color: var(--color-5);
}

.cookie-buttons .outline:hover {
  background: var(--color-1);
  box-shadow: 0 0 20px var(--color-5);
}

/* Botón secundario (configurar) */
.cookie-buttons .secondary {
  background: linear-gradient(135deg, var(--color-3), var(--color-5));
  color: var(--text-light);
}

.cookie-buttons .secondary:hover {
  background: var(--color-1);
  color: var(--color-5);
  border: 2px solid var(--color-5);
}

.cookie-link {
  margin-top: 15px;
  text-align: right;
  font-size: 1.0em;
  color: var(--color-5);
  text-decoration: none;
  padding: 0px;
}

.cookie-link:hover {
  text-shadow: 0 0 0px var(--color-5);
  box-shadow: 0px 0px 0px var(--color-5);
  border: 0px;
  color: var(--text-light);
  padding: 0px;
}

/* Animación de aparición */
@keyframes popup-glow {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CENTRO DE COOKIES */
.cookie-preferences {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: rgba(7, 10, 41, 0.95);
  border-left: 2px solid var(--color-5);
  box-shadow: -5px 0 20px var(--color-5), inset 0 0 15px rgba(255, 32, 121, 0.3);
  backdrop-filter: blur(12px);
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  padding: 30px 25px;
  z-index: 2100;
  transform: translateX(110%);
  transition: transform 0.4s ease;
}

.cookie-preferences.active {
  transform: translateX(0);
}

.cookie-preferences h3 {
  font-size: 1.5em;
  color: var(--color-5);
  margin-bottom: 15px;
  text-shadow: none;
}

.cookie-preferences p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* ===== Estilo del interruptor ===== */
.cookie-preferences label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 1em;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Switch personalizado */
.cookie-preferences input[type="checkbox"] {
  display: none;
}

.cookie-preferences label::after {
  content: '';
  width: 42px;
  height: 22px;
  background: #444;
  border-radius: 30px;
  position: relative;
  transition: background 0.3s ease;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2);
}

.cookie-preferences label::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--color-5);
  border-radius: 50%;
  position: absolute;
  left: 390px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

/* Cuando está marcado (activo) */
.cookie-preferences input[type="checkbox"]:checked + label::after {
  background: var(--color-3);
}

.cookie-preferences input[type="checkbox"]:checked + label::before {
  transform: translateX(-20px);
}

/* Botones inferiores */
.config-cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.config-cookie-buttons button {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  transition: 0.3s ease;
  background: linear-gradient(135deg, var(--color-3), var(--color-5));
  color: var(--text-light);
  box-shadow: none;
}

.config-cookie-buttons button:hover {
  background: var(--color-1);
  color: var(--color-5);
  box-shadow: 0 0 15px var(--color-5);
}

/* Oculto por defecto */
.hidden {
  display: none;
}
/* OTROS */
h1, h2, h3 {
    text-shadow: 0px 0px 10px var(--text-glow);
}

button {
  background: linear-gradient(135deg, var(--color-5) 20%, var(--color-4) 100%);
  color: var(--text-light);
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.5s ease, box-shadow 0.3s ease;
  box-shadow: 0px 0px 15px var(--color-5);
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

button:hover {
  background: var(--color-1);
  border-color: var(--color-5);
  border-radius: 30px;
  border-width: 2px;
  border-style: solid;
  box-shadow: 0px 0px 25px var(--color-5);
  color: var(--color-5);
}

/* Animaciones */
@keyframes glow {
    0% { text-shadow: 0 0 5px var(--text-glow); }
    50% { text-shadow: 0 0 20px var(--text-glow); }
    100% { text-shadow: 0 0 5px var(--text-glow); }
}

h1 {
    animation: glow 1.5s infinite alternate;
}

@media (max-width:1024px) {
/* MENÚ */
header {
    padding: 15px;
    font-size: 1.3em; /* Un poco más pequeño */
  }

  nav {
    padding: 0 15px;
  }

  .logo {
    font-size: 0.9em;
    gap: 3px;
  }

  .logo-cursive {
    font-size: 0.75em;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  ul {
    gap: 15px;
    justify-content: flex-start;
  }

  li {
    margin: 0 10px;
  }

  a {
    font-size: 0.9em;
    padding: 8px 15px;
  }

  a:hover {
    border-radius: 25px;
    box-shadow: 0px 0px 10px var(--color-5);
  }
/*HERO*/
.hero {
    height: auto;
    padding: 33% 20px;
  }
.overlay {
    gap: 50px;
    top: 30px;
  }
  .hero-content {
    width: 50%;
  }
  .hero-text {
    width: 80%;
    margin-top: 80px;
  }
  .hero-text h1 {
    font-size: 3.0em;
  }
  .hero-text p {
    font-size: 1.8em;
  }
  .hero-content img {
    height: 500px;
    max-width: 130%;
  }
  /* TRANSITION */
  .transition {
    width: 90%;
    gap: 40px;
    left: 0;
    height: 20vh;
    bottom: 5%;
  }
  .transition-wrapper {
    width: 22%;
  }
  .transition-wrapper.special-size {
    width: 35%;
    bottom: 30px;
  }
  .transition-content {
    font-size: 1em;
    min-height: 60px;
    min-width: 90px;
    padding: 30px 15px;
  }
  .transition-content h2 {
    font-size: 1.4em;
  }
  .transition-content p {
    font-size: 0.9em;
  }

  /* SOBRE NOSOTROS */
    .about-all {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .about-photo img.about-img {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 100% 60%, 50% 100%, 50% 100%, 0 70%);
    box-shadow: none;
    border-radius: 20px;
  }

  .about-text {
    width: 100%;
    padding: 0 20px;
  }

  .about-content h1 {
    font-size: 2.2em;
  }

  .about-content p,
  .about-text p {
    font-size: 1em;
  }
  
  /* INTERSECCIÓN DOS */
 .highlights-loop {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 60px 20px;
  }

  .highlight-point {
    position: static;
    width: 90%;
    max-width: 500px;
  }

  .center-icon {
    position: static;
    margin-bottom: 20px;
  }

  .highlights-loop svg {
    display: none;
  }
  /* SERVICIO */
  .services {
    padding: 50px 15px;
    gap: 30px;
  }

  .services-intro h2 {
    font-size: 2em;
  }

  .services-description {
    font-size: 1.1em;
  }

  .service-item {
    max-width: 250px;
  }

  .service-text h2 {
    font-size: 1.2em;
  }

  .service-text p {
    font-size: 0.95em;
  }

  .services-cta h3 {
    font-size: 1.4em;
  }

  .services-cta p {
    font-size: 1.1em;
  }
  /* PROCESO */
  .map-image {
    mask-image: linear-gradient(to top, transparent 0%, #000 15%, #000 85%, transparent 100%),
                linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: 
      linear-gradient(to top, transparent 0%, #000 15%, #000 85%, transparent 100%),
      linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  }

  .tooltip {
    width: 180px;
    font-size: 14px;
  }

  .map-point i {
    font-size: 26px;
  }
   h2.timeline-title {
    font-size: 2.5em;
  }
   p.timeline-subtitle {
    font-size: 1.1em;
  }
  /* CONTACTO */
  .contact-header {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
 }
 .alternative-contact {
    margin-bottom: 30px;
  }
  .contact-section {
    padding: 35px 30px;
    max-width: 90%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1em;
  }

  .contact-description {
    font-size: 1.1em;
  }

  h2.neon {
    font-size: 2.5em;
  }

  /* POPUP DE COOKIES */

  .cookie-popup {
    width: 86%;
    left: 5%;
    bottom: 20px;
    padding: 20px;
  }

  .cookie-content h2 {
    font-size: 1.4em;
  }

  .cookie-content p {
    font-size: 0.95em;
  }

  .cookie-buttons button {
    font-size: 0.95em;
    padding: 10px 12px;
  }

}

@media (max-width: 768px) {
/* MENÚ */
.hamburger {
    display: flex;
    cursor: pointer;
    z-index: 1001;
  }

  header {
    padding: 0;
  }

  ul.nav-links {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: var(--color-1);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 30px 0 10px 0;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  ul.nav-links.active {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  ul.nav-links li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 0;
  }

  nav {
    position: relative;
  }

  a:hover {
    border-radius: 0;
    border-width: 2px;
    border-style: solid;
    border-left: none;
    border-right: none;
    width: 100%;
  }
 
/* HERO */
 .hero {
    height: auto;
    padding: 40px 20px;
  }
  .overlay {
    align-items: center;
    gap: 30px;
    position: static;
    padding-bottom:90px;
  }
  .hero-content,
  .hero-text {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-text {
    margin-top: 30px;
  }
  .hero-text h1 {
    font-size: 2em;
  }
  .hero-text p {
    font-size: 1em;
  }
  .hero-content img {
    height: 300px;
    max-width: 100%;
  }
  /* TRANSITION */
   .transition {
    width: 85%;
    gap: 30px;
    height: auto;       
    bottom: 3%;
    flex-wrap: wrap;    
    justify-content: center;
  }
  .transition-wrapper {
    width: 30%;
  }
  .transition-wrapper.special-size {
    width: 48%;
    bottom: 20px;
  }
  .transition-content {
    font-size: 0.95em;
    min-height: 80px;
    min-width: 140px;
    padding: 25px 20px;
  }
  .transition-content h2 {
    font-size: 1.3em;
  }
  .transition-content p {
    font-size: 0.85em;
  }
/* SOBRE NOSOTROS */
 .about {
    padding: 60px 15px;
    gap: 25px;
  }

  .about-content h1 {
    font-size: 2em;
  }

  .about-img {
    width: 80%;
    clip-path: none;
    border-radius: 20px;
  }

  .about-text h2,
  .about-text4 h2 {
    font-size: 1.5em;
  }

  .about-text {
    padding: 0 10px;
    gap: 30px;
  }

  .about-text4 .cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .neon-title {
    font-size: 2.2em;
  }

  /* INTERSECCIÓN DOS */
   .highlight-point h3 {
    font-size: 1rem;
  }

  .highlight-point p {
    font-size: 0.85rem;
  }

  .center-icon {
    width: 80px;
    height: 80px;
  }

  .center-icon i {
    font-size: 1.5rem;
  }
  /* SERVICIO */
  .services {
    padding: 40px 10px;
    gap: 25px;
  }

  .services-intro h2 {
    font-size: 1.8em;
  }

  .services-description {
    font-size: 1em;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    max-width: 90%;
    aspect-ratio: 3 / 4; /* Más cuadrado para móviles */
  }

  .service-text h2 {
    font-size: 1.1em;
  }

  .service-text p {
    font-size: 0.9em;
  }

  .service-badge {
    font-size: 0.8em;
    padding: 5px 8px;
  }

  .services-cta h3 {
    font-size: 1.3em;
  }

  .services-cta p {
    font-size: 1em;
  }
  /* PROCESO */
  .tooltip {
    width: 160px;
    font-size: 13px;
    top: -70px;
  }

  .map-point i {
    font-size: 24px;
  }

  .map-timeline {
    padding: 0 15px;
  }
   h2.timeline-title {
    font-size: 2.2em;
  }
   p.timeline-subtitle {
    font-size: 1em;
  }
  /* CONTACTO */
  .contact-section {
    padding: 30px 20px;
    max-width: 95%;
  }

  .contact-form label {
    font-size: 1em;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95em;
    padding: 12px;
  }

  .contact-description {
    font-size: 1em;
  }

  h2.neon {
    font-size: 2.2em;
  }
   .phone-field select {
  padding: 12px;
  width:40%;
}

.phone-field input[type="tel"] {
  width:60%;
}
.alternative-contact p{
 font-size: 0.9em;
}

/* POPUP DE COOKIES */
  .cookie-popup {
    width: 86%;
    left: 5%;
    bottom: 15px;
    padding: 18px;
  }

  .cookie-content h2 {
    font-size: 1.3em;
  }

  .cookie-content p {
    font-size: 0.9em;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
    font-size: 1em;
  }

  .cookie-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95em;
  }
}
@media (max-width: 480px) {
/* MENÚ */
  .hamburger {
    display: flex;
  }
  header {
    padding: 0px;
  }
  ul.nav-links {
    display: none;
    flex-direction: column;
    width: 100vw;
    background: var(--color-1);
    position: absolute;
    top: 70px; 
    left: 0;
    padding: 30px 10 10px 0;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  ul.nav-links li {
    width: 100vw;
    margin: 0;
    padding: 0;
  }
  ul.nav-links li a {
    display: block;
    width: 100vw;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 0;
  }
  ul.nav-links.active {
    display: flex;
  }
  nav {
    position: relative;
  }
  a:hover {
    border-radius: 0px;
    width: 100vw;
    border-width: 2px;
    border-style: solid;
    border-left: none;
    border-right: none;
}
/* HERO */
 .overlay {
    flex-direction: column; 
    gap: 10px;
    position: static;
    align-items: center;
    justify-content: flex-start;
  }
  .hero-content,
  .hero-text {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-text {
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero-text h1 {
    font-size: 2.2em;
    padding: 10px 0 0 0;
    margin-bottom: 10px;
  }
  .hero-text p {
    font-size: 1em;
  }
  .hero-text .cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .hero-content img {
    height: 250px;
    max-width: 140%;
    margin: 0 auto;
    display: block;
  }
/* TRANSITION */
.transition {
    width: 80%;
    gap: 20px;
    flex-direction: column; 
    height: auto;
    bottom: 2%;

    justify-content: center;
  }
  .transition-wrapper {
    width: 40%;
    margin-bottom:30%;
     right:10%
  }
  .transition-wrapper.special-size {
    width: 60%;
    bottom: 0px;
    left:6%;
  }
  .transition-content {
    font-size: 0.9em;
    min-height: 100px;
    min-width: auto;
    padding: 15px 25px;
  }
  .transition-content h2 {
    font-size: 1.1em;
    text-align: center;
  }
  .transition-content p {
    font-size: 0.8em;
    text-align: center;
  }

/* SOBRE NOSOTROS */
.about {
    padding: 40px 10px;
    gap: 20px;
  }

  .about-content h1 {
    font-size: 1.8em;
  }

  .about-content p,
  .about-text p {
    font-size: 0.95em;
  }

  .about-img {
    width: 100%;
    clip-path: none;
    border-radius: 15px;
  }

  .about-all {
    gap: 30px;
    padding: 30px 10px;
  }

  .about-text h2,
  .about-text4 h2 {
    font-size: 1.3em;
  }

  .about-text {
    gap: 20px;
    padding: 0;
  }

  .about-text4 .cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }

  .neon-title {
    font-size: 2em;
  }
  /* INTERSECCIÓN DOS */
  .highlights-loop {
    padding: 40px 10px;
    gap: 20px;
  }

  .highlight-point {
    padding: 0.8rem;
    width: 100%;
  }

  .highlight-point h3 {
    font-size: 0.95rem;
  }

  .highlight-point p {
    font-size: 0.8rem;
  }

  .center-icon {
    width: 60px;
    height: 60px;
  }

  .center-icon i {
    font-size: 1.2rem;
  }
  /* SERVICIOS */
  .services {
    padding: 30px 8px;
    gap: 20px;
  }

  .services-intro h2 {
    font-size: 1.5em;
  }

  .services-description {
    font-size: 0.95em;
  }

  .service-item {
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 15px;
  }

  .service-text {
    padding: 15px;
  }

  .service-text h2 {
    font-size: 1em;
  }

  .service-text p {
    font-size: 0.85em;
  }

  .service-badge {
    font-size: 0.75em;
    padding: 4px 6px;
  }

  .services-cta h3 {
    font-size: 1.2em;
  }

  .services-cta p {
    font-size: 0.95em;
  }
  /* PROCESO */
  .tooltip {
    width: 140px;
    font-size: 12px;
    top: -60px;
    padding: 8px 12px;
  }

  .map-point i {
    font-size: 20px;
  }

  .map-timeline {
    padding: 0 10px;
  }
   h2.timeline-title {
    font-size: 2em;
  }
  p.timeline-subtitle {
    font-size: 1em;
  }
  /* CONTACTO */
   #contact {
    padding: 80px 25px;
  }

  .contact-section {
    padding: 25px 15px;
    max-width: 100%;
    border-radius: 20px;
  }

  .contact-form label {
    font-size: 0.95em;
    text-align: left;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9em;
    padding: 10px;
  }

  .contact-description {
    font-size: 0.95em;
  }

  h2.neon {
    font-size: 2em;
  }

  .phone-field select {
  padding: 8px;
  width:40%;
}

.phone-field input[type="tel"] {
  width:60%;
}
.alternative-contact p{
 font-size: 0.85em;
}
/* FOOTER */
footer {
    padding: 15px;
    text-align: start;
    font-size:0.8em;
}

/* POPUP DE COOKIES */
  .cookie-popup {
    width: 86%;
    left: 2.5%;
    bottom: 10px;
    padding: 16px;
    border-radius: 15px;
  }

  .cookie-content h2 {
    font-size: 1.2em;
  }

  .cookie-content p {
    font-size: 0.85em;
  }

  .cookie-buttons button {
    font-size: 0.95em;
    padding: 10px;
  }

  .cookie-link {
    font-size: 0.9em;
  }

  /* CENTRO DE PREFERENCIAS DE COOKIES */
  .cookie-preferences {
    width: 300px;
  }
}



