@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  /* Modo Claro */
  --light-bg: #f8f9fa;
  --light-card: #ffffff;
  --light-text: #2d3748;
  --light-text-secondary: #4a5568;

  /* Modo Oscuro */
  --dark-bg: #0a192f;
  --dark-card: #112240;
  --dark-text: #e2e8f0;
  --dark-text-secondary: #a0aec0;

  /* Tipografía */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Global Styles */
body {
  background-color: var(--light-bg);
  color: var(--light-text);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Light Mode Defaults */
.card {
  background-color: var(--light-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: var(--dark-bg);
  color: var(--dark-text);
}

.dark-mode .card {
  background-color: var(--dark-card);
  border-color: rgba(255, 255, 255, 0.05);
}

.dark-mode a {
  color: var(--dark-text);
}

.dark-mode .navbar-brand {
  color: rgba(255, 255, 255, 0.9);
}

/* Navbar Base Styles */
.navbar-custom {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Desktop Navbar */
.navbar-desktop {
  background: var(--gradient);
  /* width: calc(100% - 40px); */
  max-width: 1200px;
  /* Propuesta de margin abajo */
  /* margin: 634px auto; */
  margin: 20px auto;
  border-radius: 50px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 2rem;
}

/* Mobile Navbar */
.navbar-mobile {
  background: var(--gradient);
  width: 100%;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Links */
.navbar-custom .nav-link {
  /* color: rgba(255, 255, 255, 0.9) !important; */
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 0 0.2rem;
  position: relative;
}

.dark-mode .navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Theme Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0 0.5rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 34px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider:before {
  position: absolute;
  content: "🌙";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 1px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider:before {
  content: "🌞";
}

input:checked + .slider {
  background-color: rgba(0, 0, 0, 0.2);
}

input:checked + .slider:before {
  transform: translateX(29px);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
  .navbar-mobile .navbar-collapse {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-mobile .nav-link {
    text-align: center;
    margin: 0.5rem 0;
  }

  .switch {
    margin: 1rem auto;
    display: block;
  }
}

/* Dark Mode Styles */
.dark-mode .navbar-custom {
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.dark-mode .navbar-mobile .navbar-collapse {
  background: rgba(0, 0, 0, 0.2);
}

/* Project Cards */
/* Estilos base para todas las cards */
.project-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  color: inherit;
}

/* Hover effect para todas las cards */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* Project card específicos */
.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card .row {
  margin: 0;
}

.project-card .col-md-4 {
  padding: 0;
}

.image-container {
  height: 100%;
  min-height: 240px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

.project-content {
  padding: 1.5rem;
}

/* Modal styles */
.elegant-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

/* .modal-content {
            position: relative;
            background: #fff;
            width: 90%;
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        } */

.modal-content {
  position: relative;
  background-color: white;
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  margin: 9rem auto;
  padding: 2rem;
  transform: scale(1);
  transition: all 0.3s ease;
  color: inherit;
}

.dark-mode .modal-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dark-text);
}

.btn-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
}

.dark-mode .btn-close {
  filter: invert(1);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.feature-list li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  margin-right: 1rem;
  color: #4f46e5;
}

/* .feature-list i {
            color: var(--primary-color);
            margin-right: 0.5rem;
        } */

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel {
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .project-image {
    border-radius: 16px 16px 0 0;
  }

  .image-container {
    height: 200px;
    min-height: auto;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-actions .btn {
    width: 100%;
  }
}

/* Tech badges */
.tech-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border-radius: 20px;
  display: inline-block;
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
}

/* Hero Sections Base */
.hero-section-desktop,
.hero-section-mobile {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  color: var(--light-text);
  position: relative;
  z-index: 1;
}

.dark-mode .hero-section-desktop,
.dark-mode .hero-section-mobile {
  color: var(--dark-text);
}

.dark-mode a {
  color: #3498db;
}

/* Content Wrappers */
.content-wrapper-desktop,
.content-wrapper-mobile {
  padding: 2rem 0;
  animation: fadeIn 1s ease-out forwards;
}

.content-wrapper-mobile {
  text-align: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(9, 132, 227, 0.1);
  color: #0984e3;
  border-radius: 50px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
}

/* Hero Titles */
.hero-title-desktop,
.hero-title-mobile {
  font-size: 3.5rem;
  margin: 1rem 0;
  line-height: 1.2;
  color: inherit;
}

.highlight-text {
  color: #0984e3;
}

/* Hero Subtitles */
.hero-subtitle-desktop,
.hero-subtitle-mobile {
  font-size: 1.2rem;
  color: var(--light-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.dark-mode .hero-subtitle-desktop,
.dark-mode .hero-subtitle-mobile {
  color: var(--dark-text-secondary);
}

/* Social Icons */
.social-icons-desktop,
.social-icons-mobile {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.social-icons-mobile {
  justify-content: center;
  gap: 1rem;
}

.social-icon-desktop,
.social-icon-mobile {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.social-icon-desktop:hover,
.social-icon-mobile:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.social-icon-desktop:focus,
.social-icon-mobile:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.3);
}

/* Profile Container */
.profile-container-desktop,
.profile-container-mobile {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-image-desktop,
.hero-image-mobile {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
}

/* Desktop Specific Styles */
@media (min-width: 992px) {
  .hero-section-desktop {
    padding: 4rem 0;
  }

  .hero-title-desktop {
    font-size: 4.5rem;
    font-weight: 800;
    color: inherit;
    margin-bottom: 1.5rem;
  }

  .profile-container-desktop {
    position: relative;
    padding: 2rem;
  }

  .hero-image-desktop {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1),
      -20px -20px 60px rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
  }

  .hero-image-desktop:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.15),
      -25px -25px 70px rgba(255, 255, 255, 0.6);
  }

  .social-icon-desktop {
    font-size: 2rem;
    color: inherit;
    position: relative;
  }

  .social-icon-desktop::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0984e3;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .social-icon-desktop:hover::after {
    transform: scaleX(1);
  }

  .content-wrapper-desktop {
    max-width: 600px;
  }
}

/* Mobile Specific Styles */
@media (max-width: 991.98px) {
  .hero-section-mobile {
    padding: 6rem 0 2rem;
    text-align: center;
  }

  .hero-title-mobile {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle-mobile {
    font-size: 1rem;
  }

  .profile-container-mobile {
    margin-bottom: 2rem;
  }

  .hero-image-mobile {
    max-width: 250px;
    border-radius: 20px;
    margin: 0 auto;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.d-lg-flex {
  display: flex;
}

.d-lg-none {
  display: none;
}

/* About Section */
.about-card {
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.dark-mode .about-text {
  color: var(--dark-text);
}
.dark-mode .text-muted {
  color: var(--dark-text);
}

.skills-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.dark-mode .skills-title {
  color: var(--dark-text);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.skill-badge {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  /* color: white; */
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill-badge i {
  font-size: 1rem;
}

.skill-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Education Section */
.education-section {
  padding: 80px 0;
  color: var(--light-text);
}

.dark-mode .education-section {
  color: var(--dark-text);
}

.timeline-container {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #4f46e5 0%, #3b82f6 100%);
  top: 0;
}

.education-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  max-width: 90%;
  color: inherit;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.education-card::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #4f46e5;
  border-radius: 50%;
  top: 50%;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.3);
}

.education-card.left {
  margin-right: auto;
}

.education-card.right {
  margin-left: auto;
}

.education-card.left::before {
  right: -44px;
  transform: translateY(-50%);
}

.education-card.right::before {
  left: -44px;
  transform: translateY(-50%);
}

.education-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.education-icon i {
  font-size: 1.25rem;
  color: white;
}

.institution {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.dark-mode .institution {
  color: var(--dark-text);
}

.education-period {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(79, 70, 229, 0.2);
  color: #818cf8;
  margin-bottom: 1rem;
}

.education-description {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.dark-mode .education-description {
  color: var(--dark-text);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }

  .education-card {
    max-width: calc(100% - 50px);
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .education-card::before {
    left: -34px !important;
  }

  .education-card h4 {
    font-size: 1.1rem;
  }

  .institution {
    font-size: 0.9rem;
  }

  .education-description {
    font-size: 0.9rem;
  }
}

.fotografia {
  padding: 1.1rem;
}

/* Opción 1: Patrón de Dots Mejorado */
.bg-pattern-1 {
  background-color: #f8f9fa;
  background-image: radial-gradient(#3498db6b 1px, transparent 1px),
    radial-gradient(#3498db15 1px, transparent 1px);
  background-size: 20px 20px, 40px 40px;
  background-position: 0 0, 10px 10px;
}

/* Dark Mode */
.dark-mode .bg-pattern-1 {
  background-color: var(--dark-bg);
  background-image: radial-gradient(#3498db30 1px, transparent 1px),
    radial-gradient(#3498db20 1px, transparent 1px);
}

/* Noise Overlay para más textura */
.bg-pattern-1::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Footer Styles */
.footer {
  /* background: var(--light-card); */
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.dark-mode .footer {
  /* background: var(--dark-card); */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: white;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dark-mode .footer-link {
  color: var(--dark-text);
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--light-text-secondary);
  text-align: center;
}

.dark-mode .footer-copyright {
  color: var(--dark-text-secondary);
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

:root {
  --section-padding: 5rem;
  --container-padding: 1.5rem;
  --section-margin: 4rem;
  --element-margin: 1.5rem;
}

/* Contenedor principal */
.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

/* Márgenes consistentes para secciones */
section {
  margin-bottom: var(--section-margin);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* Ajustes para la sección hero */
.hero-section-desktop,
.hero-section-mobile {
  padding: var(--section-padding) 0;
  margin-bottom: var(--section-margin);
}

/* Ajustes para la sección about */
.about-section {
  margin-bottom: var(--section-margin);
}

.about-card {
  padding: var(--container-padding);
}

/* Ajustes para los proyectos */
/* .project-card {
  margin-bottom: var(--element-margin);
} */

/* Ajustes para la sección educación */
.education-section {
  margin-bottom: var(--section-margin);
}

.education-card {
  margin-bottom: var(--element-margin);
}

/* Utilidades de espaciado Bootstrap personalizadas */
.my-section {
  margin-top: var(--section-margin) !important;
  margin-bottom: var(--section-margin) !important;
}

.py-section {
  padding-top: var(--section-padding) !important;
  padding-bottom: var(--section-padding) !important;
}

/* Ajustes responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
    --container-padding: 1rem;
    --section-margin: 3rem;
    --element-margin: 1rem;
  }

  .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

/* Clases de utilidad para Bootstrap */
.px-consistent {
  padding-left: var(--container-padding) !important;
  padding-right: var(--container-padding) !important;
}

.mb-consistent {
  margin-bottom: var(--element-margin) !important;
}

/* Footer */
.footer {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  margin-top: var(--section-margin);
}

/* About section */
/* Nueva gradiente para about-section que complementa el patrón */

.about-card {
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin: 0 auto;
  max-width: 90%;
}

.about-title {
  /* color: white; */
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-primary, "Poppins", sans-serif);
  font-weight: bold;
}

.about-text {
  /* color: rgba(255, 255, 255, 0.9); */
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--font-secondary, "Inter", sans-serif);
}

.skills-title {
  /* color: white; */
  margin-bottom: 1.5rem;
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  text-align: center;
}

.skill-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 0.3s, background 0.3s;
}

.skill-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.skill-badge i {
  font-size: 2rem;
  color: var(--primary-color);
}

.skill-badge span {
  /* color: white; */
  font-size: 0.9rem;
}

/* Modo oscuro */

/* }.dark-mode .about-section {
  background: linear-gradient(
    135deg,
    rgba(41, 128, 185, 0.95),
    rgba(30, 94, 136, 0.95),
    rgba(41, 128, 185, 0.8)
  ); */

@media (max-width: 768px) {
  .about-card {
    padding: 1.5rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}
