/* --- RESET Y VARIABLES GLOBALES --- */
:root {
  /* --primary-color: #0d9488;  Un verde azulado */
  --primary-color: #ff7f50; /* Un coral  */
  /*--second-color: #f0fdfa; Un fondo muy claro, casi blanco */
  --second-color: #f5f5f5; /* Un fondo muy claro, casi blanco */
  --secondary-color: #0a0a0a; /* Un fondo muy oscuro, casi negro */
  --dark-color: #1e293b; /* Texto principal oscuro */
  --gray-color: #64748b; /* Texto secundario gris */
  --light-color: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--second-color);
  color: var(--secondary-color);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-align: center;
}

/* --- NAVEGACIÓN --- */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--secondary-color);
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 15px 0;
}

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

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
}
.navbar .logo:hover {
  color: var(--light-color);
}
/* ---  EN MÓVIL --- */

/* Por defecto (escritorio): ocultamos la versión móvil */
.navbar .logo-mobile {
  display: none;
}

/*  pantallas pequeñas (móvil/tablet) */
@media (max-width: 768px) {
  /* En móvil, ocultamos la versión de escritorio */
  .navbar .logo-desktop {
    display: none;
  }

  /* Y mostramos la versión móvil (el dominio) */
  .navbar .logo-mobile {
    display: inline-block;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .navbar .logo {
    font-size: 1.3rem;
  }
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: var(--light-color);
  text-decoration: true;
}

/* --- SECCIÓN HERO (PORTADA) --- */
.hero {
  padding-top: 150px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero .subtitle {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.hero .social-links a {
  margin: 0 10px;
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.hero .social-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* --- SECCIÓN PROYECTOS --- 3 columnas
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }*/

/* --- SECCIÓN PROYECTOS 2 columnas--- */
.projects-grid {
  display: grid;

  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

/* Media query para tablets y escritorios */
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.project-content p {
  flex-grow: 1;
}

.project-tags {
  margin: 15px 0;
}

.project-tags .tag {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 5px;
  margin-bottom: 5px;
}

.project-links {
  display: flex;
  gap: 10px; /* Espacio entre botones */
}

.project-links a {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;

  background-color: var(--primary-color);
  color: var(--secondary-color);

  padding: 8px 16px;
  border-radius: 10px;
  margin-right: 0;
  transition: all 0.3s ease;
}

.project-links a:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-2px);
}

/* --- FOOTER --- */
footer h2 {
  color: var(--primary-color);
}
footer {
  text-align: center;
  padding: 40px 0;
  background-color: var(--secondary-color);
  color: var(--light-color);
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .navbar ul {
    display: none;
  }
}
/* --- ESTILOS DEL CHATBOT --- */

/* Burbuja flotante con animación "pulse" */
#chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    #fc6932
  ); /* Gradiente */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* Sombra inicial y animación de pulso */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8),
    /* Sombra principal */ 0 0 0 4px rgba(255, 255, 255, 0.2); /* Anillo blanco */

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;

  animation: pulse 2s infinite;
}

/* Efecto hover: escala + brillo + sombra intensa */
#chat-bubble:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 0 6px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.4);

  /* Detiene la pulsación al interactuar */
  animation: none;
}

/* Animación de pulsación (afecta a la sombra) */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8),
      0 0 0 4px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9),
      0 0 0 8px rgba(255, 255, 255, 0.15); /* Cambia el anillo sutilmente */
  }
}

/* Icono SVG con ligero movimiento al hover */
#chat-bubble svg {
  transition: transform 0.3s ease;
}

#chat-bubble:hover svg {
  transform: scale(1.2) rotate(10deg);
}

/* --- Ventana del Chat --- */
#chat-window {
  position: fixed;
  bottom: 100px; /* Ajusta tamaño de la burbuja */
  right: 30px;
  width: 350px;
  max-width: 90%;
  height: 500px;
  background-color: var(--light-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  /* Oculto por defecto */
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: all 0.3s ease-out;
}

#chat-window.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* --- Cabecera del Chat --- */
#chat-header {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  font-weight: 600;
}

#chat-close-btn {
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
}
#chat-close-btn:hover {
  opacity: 1;
}

/* --- Cuerpo del Chat --- */
#chat-body {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Mensajes del Chat --- */
.chat-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
}

.chat-message.bot {
  background-color: #f1f0f0;
  color: var(--secondary-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background-color: var(--primary-color);
  color: var(--light-color);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message.loading {
  background-color: #f1f0f0;
  color: var(--gray-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  font-style: italic;
}

.chat-message p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* --- Pie del Chat --- */
#chat-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

#chat-input {
  flex-grow: 1;
  border: none;
  padding: 10px;
  border-radius: 5px;
  background-color: #f7f7f7;
}
#chat-input:focus {
  outline: 1px solid var(--primary-color);
}

#chat-send-btn {
  background: var(--primary-color);
  border: none;
  color: var(--light-color);
  padding: 0 12px;
  margin-left: 8px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat-send-btn:hover {
  opacity: 0.8;
}
