* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/*body {
  background: #0f172a;
  color: white;
  line-height: 1.6;
}*/


.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 8%;
  background: #0b1220;
  position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #0b1220;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.logo-main span {
    color: #3b82f6;
}

.logo-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    letter-spacing: 0.8px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.section {
  padding: 80px 8%;
  text-align: center;
}

.section.dark {
  background: rgb(48,25,76);
  height: 1000;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #0b1220;
  padding: 30px;
  border-radius: 10px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #38bdf8;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
}
.hero {
    position: relative; /* Permite que las partículas se posicionen dentro */
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* Queda detrás del texto */
}

.hero-content {
    position: relative;
    z-index: 2; /* Asegura que el texto y botón estén por encima */
}

        /*:root {
            --primary: #007bff;
            --dark: #0a192f;
            --light: #f4f7f6;
        }*/
   :root {
    --primary: #00f2ff;
    --accent: #7000ff;
    --dark: #050a15;
    --light: #f4f7f6; /* Tu fondo actual */
    
    /* Ajuste para fondo claro */
    --card-bg: #ffffff; 
    --card-border: #e2e8f0; 
    --text-main: #1a202c;
    --text-dim: #4a5568;
}
.footer-moderno {
    background: rgb(27,32,43) /* Fondo oscuro elegante */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    font-family: sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
/* Contenedor principal */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espaciado entre iconos */
    margin-top: 15px;
}

/* El enlace que envuelve la imagen */
.social-link {
    width: 40px;  /* Tamaño del círculo */
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* La imagen SVG interna */
.social-img {
    width: 20px;  /* Tamaño del icono real */
    height: 20px;
    filter: brightness(0) invert(1); /* Los hace blancos */
    transition: all 0.3s ease;
}

/* Efectos Hover */
.social-link:hover {
    transform: translateY(-5px);
    border-color: #00d2ff;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.social-link:hover .social-img {
    filter: none; /* Recuperan su color original al pasar el mouse */
    transform: scale(1.1);
}

/* Colores específicos opcionales al hover */
.social-link:nth-child(1):hover { background: #1877F2; } /* FB */
.social-link:nth-child(2):hover { background: #E4405F; } /* IG */
.social-link:nth-child(3):hover { background: #0077B5; } /* IN */
.social-link:nth-child(4):hover { background: #25D366; } /* WA */


/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--light);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--text-main);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; }
.logo span { color: #3b82f6 }

.nav-links { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero con Partículas */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), 
                url('https://images.unsplash.com');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; line-height: 1.2; }

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.btn-msg {
    padding: 16px 40px;
    background: linear-gradient(45deg, var(--accent), var(--text-dim));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}        

.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4); }

.section { padding: 100px 10%; text-align: center; }
  .dark { 
    position: relative;
    /* Gradiente profundo que nace del azul oscuro al violeta del acento */
    background: linear-gradient(
        135deg, 
        rgba(5, 10, 21, 0.98) 0%, 
        rgba(15, 23, 42, 0.95) 50%,
        rgba(112, 0, 255, 0.05) 100% /* Un toque sutil del violeta accent */
    ), 
    url('https://images.unsplash.com'); /* Imagen de red neuronal/espacio */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Mantiene el efecto de desplazamiento profesional */
    
    color: white;
    padding: 120px 10%;
    text-align: center;
    border-top: 1px solid rgba(0, 242, 255, 0.1); /* Línea de acento superior */
    border-bottom: 1px solid rgba(112, 0, 255, 0.1); /* Línea de acento inferior */
}

/* El texto dentro de la sección oscura */
.dark h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    /* Texto con el gradiente de tus botones */
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
}

.dark p {
    /*font-size: 1.4rem;*/
    font-weight: 300;
    letter-spacing: 5px; /* Más espaciado para un look más premium/minimalista */
    color: #cbd5e1;
    text-transform: uppercase;
}

/* Efecto de resplandor sutil en el fondo */
.dark::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.03), transparent 70%);
    pointer-events: none;
}

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }


.card {
    position: relative;
    background: var(--card-bg);
    padding: 45px 40px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Borde inicial con el color primary del botón muy suave */
    border: 1px solid var(--card-border);
    
    /* Sombra profunda para que resalte sobre el fondo dark */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
}

.card:hover {
    transform: translateY(-12px);
    
    /* Mantenemos el fondo original de la variable */
    background: var(--card-bg); 
    
    /* Iluminamos el borde con el Cyan del botón */
    border-color: var(--accent);
    
    /* El brillo exterior (glow) */
    box-shadow: 0 15px 40px rgba(131, 117, 190, 0.2);
}


/* El título usa el mismo gradiente que el cuerpo del botón */
.card h3 {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.card p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* El indicador inferior es el botón primary estirado */
.card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transition: width 0.5s ease;
}

.card:hover::after {
    width: 100%;
}

/* Efecto de luz interna que nace del color del botón */
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 242, 255, 0.05), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Contenedor del Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 60px auto;
    padding: 50px;
    gap: 20px;
    background: var(--text-dim); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Inputs y Textarea Estilo Tech - CORREGIDO */
.contact-form input, 
.contact-form textarea {
    padding: 18px;
    background: rgba(255, 255, 255, 0.05); /* Un poco más de opacidad para ver el campo */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    
    /* CAMBIO CLAVE: Color blanco para que se lea sobre el fondo oscuro */
    color: #ffffff; 
    
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

/* Efecto de Foco */
.contact-form input:focus, 
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary); 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff; /* Aseguramos que siga siendo blanco */
}

/* Placeholder - CORREGIDO */
.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Blanco semitransparente */
}

/* Botón de Envío - CORREGIDO */
.contact-form button {
    margin-top: 10px;
    padding: 18px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    
    /* CAMBIO CLAVE: Texto blanco o muy claro para que resalte en el gradiente */
    color: #ffffff; 
    
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.4);
    filter: brightness(1.2); /* Un poco más de brillo en hover */
}

/* Título de la sección */
#contacto h2 {
    background: #007bff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}
/* Línea de acento sutil debajo del título */
#contacto h2::after {
    content: "";
    position: absolute;
    bottom: -1100px;
    left: 25%;                 /* Línea centrada y más corta que el texto */
    width: 50%;
    height: 4px;
    /*background: linear-gradient(90deg, var(--primary), var(--accent));*/
    border-radius: 10px;
    opacity: 0.3;              /* Transparente para no distraer demasiado */
}

/* Título de la Sección de Servicios */
#servicios h2 {
    font-size: 3rem;           /* Tamaño impactante */
    font-weight: 800;          /* Grosor extra para autoridad */
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;      /* Espaciado moderno y compacto */
    
    /* Aplicamos el gradiente de tus botones al texto */
    background: #007bff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Línea de acento sutil debajo del título */
#servicios h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 25%;                 /* Línea centrada y más corta que el texto */
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    opacity: 0.3;              /* Transparente para no distraer demasiado */
}

/* Ajuste del contenedor de la sección para que el texto luzca */
#servicios {
    padding: 120px 20px;       /* Más aire (espacio blanco) es más lujoso */
    background-color: var(--light); 
    color: #1a202c;            /* Texto base oscuro para legibilidad */
}


.grid {
    position: relative; /* Asegura que el contenido flote sobre el blur */
    z-index: 1;
}

footer { background: var(--text-main); color: white; padding: 40px 20px; text-align: center; }

/* --- BOTÓN SUBIR (Back to Top) --- */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: var(--card-border);
    color: rgb(4, 4, 4);
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#scrollTopBtn:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}
    .btn-whatsapp {
        background-color: #25D366; /* Verde oficial WhatsApp */
        color: white !important;
        display: inline-block;
        margin-top: 30px;
        padding: 12px 24px;
        color: black;
        border-radius: 6px;
        text-decoration: none;
        border: none;
        cursor: pointer;    
                    padding: 16px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: 0.4s;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);

      }

    /* Efectos al pasar el mouse */
    .btn-primary:hover {
        background-color: #0056b3;
    }

    .btn-whatsapp:hover {
        background-color: #128C7E;
    }

    /* Ajuste para celulares: uno sobre otro */
    @media (max-width: 480px) {
        .botones-container {
            flex-direction: column;
        }
    }

.metodo-texto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Step base */
.metodo-step {
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Mostrar activo */
.metodo-step.active {
    opacity: 1;
}

/* Tooltip base (SIEMPRE debe existir) */
.metodo-step::after {
    content: attr(data-info);
    position: absolute;
    top: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);

    width: max-content;
    max-width: 260px;

    background: linear-gradient(135deg, #00d2ff, #00a1ff);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;

    font-size: 0.85rem;
    line-height: 1.4;

    white-space: normal;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    z-index: 20;
}

/* Mostrar solo en hover */
.metodo-step::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Animación suave */
@keyframes hint-pulse {
    0%, 100% {
        color: rgba(255, 255, 255, 0.4);
        text-shadow: none;
    }
    50% {
        color: rgba(255, 255, 255, 0.6);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    }
}

/* 5. Separators (Dots) - Low profile */
.separador {
    color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    user-select: none;
}

/* Responsive: Tooltip might be too wide on mobile */
@media (max-width: 768px) {
    .metodo-step::after {
        white-space: normal;
        min-width: 150px;
        text-align: center;
    }
}


.info-modal {
    display: none;
}

.info-modal.active {
    display: flex;
}

.info-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.info-content {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    color: white;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

.dropdown {
 position: relative;
}

.dropdown-menu {
 position: absolute;
 top: 100%;   /* 👇 baja */
 left: 0;
 background: #1e293b;
 padding: 10px 0;
 border-radius: 10px;
 display: none;
 min-width: 240px;
}

.dropdown:hover > .dropdown-menu {
 display: block;
}

/* Sub dropdown */

.sub-dropdown {
 position: relative;
}

.sub-dropdown-menu {
 position: absolute;
 top: 100%;   /* 👇 también baja */
 left: 0;     /* 👈 alineado al mismo borde */
 background: #1e293b;
 padding: 10px 0;
 border-radius: 10px;
 display: none;
 min-width: 200px;
}
#google-form-container {
    animation: fadeInForm 0.4s ease forwards;
}

@keyframes fadeInForm {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-wrapper {
    display: none;   /* oculto por defecto */
    margin-top: 20px;
}

.form-inner iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Caja interna con estilo */
.form-inner {
    width: 100%;
    max-width: 650px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Iframe responsivo */
.form-inner iframe {
    width: 100%;
    height: 600px;
    border: none;
}
.sub-dropdown:hover > .sub-dropdown-menu {
 display: block;
}
/* Ajustes específicos para la nueva estrategia */
.highlight-neuro {
    color: #007bff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.card h3 i {
    margin-right: 10px;
    color: #007bff;
}
.hero-content h1 {
    line-height: 1.2;
}
.section.dark {
  background: rgb(48,58,75);
  padding: 120px 10%;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.metodo-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.metodo-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight {
  color: #3b82f6;
}

.metodo-subtitle {
  color: #94a3b8;
  margin-bottom: 80px;
  font-size: 1.1rem;
}

/* Timeline */

.metodo-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
}

.metodo-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  opacity: 0.3;
}

/* Steps */

.metodo-step {
  width: 22%;
  cursor: pointer;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3b82f6;
  transition: 0.4s ease;
  border: 2px solid rgba(59,130,246,0.2);
}

.metodo-step h3 {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cbd5e1;
}

/* Hover inteligente */

.metodo-step:hover .step-icon {
  background: #3b82f6;
  color: white;
  box-shadow: 0 0 25px rgba(59,130,246,0.6);
  transform: translateY(-10px);
}

.metodo-step:hover h3 {
  color: white;
}

/* Info panel */

.metodo-info {
  margin-top: 40px;
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: #94a3b8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s ease;
}
/* Media Query para Móviles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Apila logo y enlaces */
        gap: 15px;
        padding: 20px 5%;
    }

    .nav-links {
        gap: 12px;
        font-size: 14px;
        flex-wrap: wrap; /* Evita que los links se salgan */
        justify-content: center;
    }

    .hero {
        height: auto;
        padding: 100px 20px;
    }

    .dark h2 {
        font-size: 2rem; /* Tamaño de letra más razonable */
    }

    .section {
        padding: 60px 5%; /* Menos espacio muerto a los lados */
    }

    .social-icons {
        gap: 10px;
    }
}

/* 1. The Jump Animation */
@keyframes stepJump {
    0%, 20% { 
        transform: translateY(0) scale(1); 
    }
    10% { 
        transform: translateY(-20px) scale(1.1); /* The peak of the jump */
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    }
}

/* 2. Apply to the icons */
.step-icon {
    animation: stepJump 4s infinite; /* Total cycle time */
}

/* 3. Staggered Delays (The "Next Step" logic) */
.metodo-step:nth-child(1) .step-icon { animation-delay: 0s; }
.metodo-step:nth-child(2) .step-icon { animation-delay: 1s; }
.metodo-step:nth-child(3) .step-icon { animation-delay: 2s; }
.metodo-step:nth-child(4) .step-icon { animation-delay: 3s; }


