body {
font-family: 'Open Sans', sans-serif;
color: #333;
background-color: #ffffff;
}

/* Colores base */
:root {
--primary-color: #FFA500; /* Naranja */
--secondary-color: #002244; /* Azul Oscuro */
--text-light: #ffffff;
--text-dark: #333333;
}

/* Hero Animation */
      @keyframes fadeInUp {
        0% {
          opacity: 0;
          transform: translateY(40px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .animate-fadeInUp {
        animation: fadeInUp 1s ease-out forwards;
      }

      /* Typing Effect */
      .typing {
        border-right: .15em solid #fff;
        white-space: nowrap;
        overflow: hidden;
        animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
      }

      @keyframes typing {
        from { width: 0 }
        to { width: 100% }
      }

      @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: white; }
      }

      /* Parallax */
      .parallax-bg {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }

      /* Canvas background for particles */
      #particles {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

/* Reset básico */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/**/
/* Sección Hero */
.hero {
background: linear-gradient(to right, var(--secondary-color), #011627);
color: var(--secondary-light);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 20px;
font-family: 'Orbitron', sans-serif;
}

.hero h1 {
font-family: 'Orbitron', sans-serif;
font-size: 4rem;
margin-bottom: 20px;
}

.hero p {
font-size: 1.5rem;
margin-bottom: 30px;
}

.cta-buttons .btn {
margin: 0 10px;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}

.btn.primary {
background-color: var(--primary-color);
color: var(--text-dark);
}

.btn.secondary {
background-color: transparent;
color: var(--text-dark);
border: 2px solid var(--primary-color);
}

.btn:hover {
transform: translateY(-3px);
}

/* Contenedores Generales */
.container {
width: 85%;
margin: 0 auto;
padding: 60px 0;
}

h2 {
font-family: 'Orbitron', sans-serif;
color: var(--secondary-color);
font-size: 2.5rem;
margin-bottom: 20px;
text-align: center;
}

.neurosalad{
	font-family: 'Orbitron', sans-serif;
	font-size: 5.5rem;
}

/* Quiénes Somos */
.quienes-somos p {
text-align: center;
margin-bottom: 40px;
font-size: 1.2rem;
}

.valores {
display: flex;
justify-content: center;
gap: 20px;
}

.valor {
background: var(--primary-color);
color: var(--text-light);
padding: 15px 20px;
border-radius: 10px;
flex: 1;
text-align: center;
}

/* Soluciones */
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.card {
background: #f9f9f9;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card h3 {
margin-bottom: 15px;
color: var(--secondary-color);
}

/* Casos de Éxito */
.testimonios {
display: flex;
flex-direction: column;
gap: 20px;
}

.testimonio {
background: #f0f0f0;
padding: 20px;
border-radius: 10px;
font-style: italic;
}

/* Recursos */
.recursos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.recurso {
background: #f9f9f9;
padding: 25px;
border-radius: 10px;
}

.recurso h3 {
color: var(--primary-color);
margin-bottom: 10px;
}

/* Contacto */
.contacto form {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 600px;
margin: 0 auto;
}

.contacto input,
.contacto textarea {
padding: 15px;
border: 1px solid #ccc;
border-radius: 8px;
}

.contacto textarea {
resize: vertical;
}

/* Footer */
footer {
background: var(--secondary-color);
color: var(--text-light);
padding: 20px 0;
text-align: center;
}

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

.social-icons a img {
width: 30px;
margin: 0 10px;
transition: transform 0.3s ease;
}

.social-icons a:hover img {
transform: scale(1.2);
}

.text-orange-400{
	color: var(--primary-color);
}