/* Variables */
:root {
  /* Colores principales */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #93C5FD;
  
  /* Escala de grises */
  --dark: #1E293B;
  --gray-dark: #334155;
  --gray: #64748B;
  --gray-light: #E2E8F0;
  --light: #F8FAFC;
  --white: #FFFFFF;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  
  /* Transiciones */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
  
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(37, 37, 37, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
  }
  
  .logo span {
    color: var(--primary);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero h1 span {
    color: var(--primary);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .cta-btn:hover {
    background: #1D4ED8;
  }
  
  /* About Section */
  .about {
    padding: 5rem 0;
  }
  
  .about-content {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title span {
    color: var(--primary);
  }
  
  .about-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .table-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .table-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  /* Services Section */
  .services {
    padding: 5rem 0;
    background: var(--white);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  
  .btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #1D4ED8;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: var(--white);
      flex-direction: column;
      padding: 1rem;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .about-content, .about-image {
      text-align: center;
    }
  
    .about-image {
      margin-top: 2rem;
    }
  }
  /*---------------------------------------------------*/
  /* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--light);
  text-align: center;
}

.testimonials .section-title {
  margin-bottom: 3rem;
}

.testimonials .section-title span {
  color: var(--primary);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 1rem;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial p::before,
.testimonial p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
}

.testimonial p::before {
  top: -10px;
  left: -15px;
}

.testimonial p::after {
  bottom: -20px;
  right: -10px;
}

.testimonial h4 {
  font-weight: 600;
  color: var(--primary);
}

/* Slider Dots (opcional) */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial {
    padding: 1.5rem;
  }
  
  .testimonial p {
    font-size: 1rem;
  }
}
/*---------------------------------------------------*/
/* Contact CTA Section */
.contact-cta {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-cta .cta-btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  transition: all 0.3s ease;
}

.contact-cta .cta-btn:hover {
  background: transparent;
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo .logo {
  color: var(--white);
  font-size: 1.8rem;
}

.footer-logo .logo span {
  color: var(--primary);
}

.footer-logo p {
  margin-top: 1rem;
  opacity: 0.8;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    align-items: center;
    margin-top: 1.5rem;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
  }
}
/*---------------------------------------------------*/
/* Estilo base para todas las imágenes */
img {
  max-width: 100%;    /* La imagen no excederá el ancho de su contenedor */
  height: auto;       /* Mantiene la proporción de aspecto */
  display: block;     /* Elimina espacio extra debajo de la imagen */
}

/* Clase adicional para control específico (opcional) */
.responsive-img {
  width: 100%;        /* Ocupa todo el ancho disponible */
  border-radius: 8px; /* Bordes redondeados (opcional) */
  object-fit: cover;  /* Recorta la imagen manteniendo proporción (útil para thumbnails) */
}

/* Ajustes para imágenes en secciones específicas */
.hero img,
.about-image img {
  max-height: 400px;  /* Altura máxima para imágenes grandes */
  margin: 0 auto;     /* Centrado horizontal */
}

/* Mobile: Reduce aún más el tamaño en dispositivos pequeños */
@media (max-width: 768px) {
  .hero img,
  .about-image img {
    max-height: 250px;
  }
}
/*---------------------------------------------------*/
/* Testimonials Carrusel */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
  display: none;
  padding: 2rem;
  background: var(--white);
  text-align: center;
}

.testimonial-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--primary);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content p::before {
  top: -15px;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -25px;
  right: -10px;
}

.testimonial-content h4 {
  font-weight: 600;
  color: var(--primary);
}

/* Controles del Carrusel */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1rem;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Puntos Indicadores */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: 1.5rem;
  }
  
  .testimonial-img {
    width: 80px;
    height: 80px;
  }
}
/*---------------------------------------------------*/
/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background: var(--light);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
}

/* Filtros */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Grid de Proyectos */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.9);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  margin-bottom: 1.5rem;
}

.portfolio-link {
  color: var(--white);
  border: 2px solid var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.portfolio-link:hover {
  background: var(--white);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-item img {
    height: 200px;
  }
}
/*---------------------------------------------------*/
/* Agrega esto a tu styles.css */
.hidden {
  display: none !important;
}

/* Ajuste para el botón "Cargar Más" */
#load-more {
  margin-top: 2rem;
  transition: transform 0.3s;
}

#load-more:hover {
  transform: scale(1.05);
}
/*---------------------------------------------------*/
.portfolio-item.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.portfolio-item:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}
/*---------------------------------------------------*/
/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 5px;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  color: var(--gray);
}

.contact-map {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    flex-direction: column;
  }
}
/*---------------------------------------------------*/
/* Centrar títulos de secciones */
.section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: inline-block;
}

/* Ajuste para el span dentro del título */
.section-title span {
  position: relative;
}

/* Opcional: Línea decorativa bajo el título (opcional) */
.section-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Asegurar que el contenedor padre también centre el título */
.container {
  text-align: center;
}
/*---------------------------------------------------*/
.services, .portfolio, .about, .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*---------------------------------------------------*/
/* Contenedor de información de contacto - Alineación izquierda */
.contact-info {
  text-align: left; /* Forzar alineación izquierda */
}

/* Items de información (Dirección, Email, etc) */
.info-item {
  display: flex;
  align-items: flex-start; /* Alinear ícono y texto al inicio */
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 3px; /* Ajuste fino para alinear con el texto */
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  text-align: left; /* Alinear texto a la izquierda */
  font-weight: 600;
}

.info-item p {
  color: var(--gray);
  text-align: left; /* Alinear texto a la izquierda */
}
/*---------------------------------------------------*/
.spinner {
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  width: 20px;
  height: 20px;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none; }
/*---------------------------------------------------*/
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    transition: left 0.3s;
  }
  .nav-links.active {
    left: 0;
  }
}
/*---------------------Menú de Navegación-- para Móviles----------------------------*/
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
/*------------------------Formulario de Contacto---------------------------*/
@media (max-width: 480px) {
  .contact-form {
    padding: 1rem;
  }
  .form-group input, 
  .form-group textarea {
    padding: 10px;
  }
}
/*------------------------Testimonios (Carrusel)---------------------------*/
@media (max-width: 600px) {
  .testimonial-slide {
    padding: 1rem;
  }
  .testimonial-img {
    width: 70px;
    height: 70px;
  }
}
/*-------------------------código para evitar que imágenes grandes consuman datos--------------------------*/
img {
  max-width: 100%;
  height: auto;
  /* Optimización extra */
  border-radius: 8px;
  object-fit: cover;
}
/*-----------------------Efectos hover solo en desktop----------------------------*/
@media (hover: hover) {
  .btn:hover, .cta-btn:hover {
    transform: translateY(-3px);
  }
}
/*---------------------------------------------------*/
/* About Section - Estilos existentes + mejoras */
.about-content {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.about-section {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.about-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.team-list {
  list-style: none;
  margin-top: 1rem;
}

.team-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-list i {
  color: var(--primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 8px;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.about-image {
  position: relative;
  margin-top: 2rem;
}

.image-caption {
  text-align: center;
  font-style: italic;
  color: var(--gray);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    padding: 1rem;
  }
}
/*---------------------------------------------------*/
/* Estilo para la sección detallada */
.service-detail {
  padding: 4rem 0;
  background: var(--light);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.detail-text ul {
  margin: 1.5rem 0;
  list-style-type: none;
}

.detail-text li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.detail-text li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .detail-content {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------------------------*/
/* Estilos para la sección de apps */
.tech-stack {
  margin: 2rem 0;
}

.tech-icons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.tech-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.tech-icons img:hover {
  filter: grayscale(0);
}

/* Hero para subpáginas */
.hero-subpage {
  padding: 8rem 0 4rem;
  color: white;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-icons {
    justify-content: center;
  }
}
/*---------------------------------------------------*/
/* Estilos para sección SEO */
.custom-list li {
  background: url('../assets/icons/seo-check.svg') no-repeat left center;
  padding-left: 30px;
  margin-bottom: 15px;
}

.results-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  background: var(--light);
  padding: 1.5rem;
  border-radius: 10px;
}

.result-item {
  text-align: center;
}

.result-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.result-text {
  font-size: 0.9rem;
}

/* Hero para subpáginas de servicios */
.hero-subpage {
  padding: 7rem 0 4rem;
  color: white;
  text-align: center;
}

.hero-subpage h1 {
  font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .results-box {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------------------------*/
/* Contenedor del Formulario */
.audit-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  border-top: 4px solid var(--primary);
}

.audit-form-container h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.audit-form-container p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Formulario Personalizado */
.audit-form .form-group {
  margin-bottom: 1.2rem;
}

.audit-form input[type="url"],
.audit-form input[type="email"],
.audit-form input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

.audit-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.privacy-text {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.privacy-text i {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .audit-form-container {
    padding: 1.5rem;
  }
}
/*---------------------------------------------------*/
/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  width: max-content;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Animación de pulso */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive: Móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float .tooltip {
    display: none; /* Ocultar tooltip en móviles */
  }
}
/*---------------------------------------------------*/
/* Formulario de Cotización */
.quote-form {
  padding: 4rem 0;
  background: var(--light);
}

.styled-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Opciones de Tipo de App */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.option-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.option-card:hover {
  border-color: var(--primary);
}

.option-card input {
  display: none;
}

.option-card input:checked + .option-content {
  color: var(--primary);
  font-weight: 600;
}

.option-content i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Botones de Navegación */
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------------------------*/
/* Medios de Pago */
.payment-methods {
  padding: 4rem 0;
  background: var(--white);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.payment-card {
  background: var(--light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);
}

.payment-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.payment-icon i {
  margin: 0 5px;
}

.payment-brands, .crypto-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 1.5rem 0;
}

.payment-brands img, .crypto-grid img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.bank-list {
  text-align: left;
  list-style: none;
  margin: 1rem 0;
}

.bank-list li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.payment-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.small-text {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1rem;
}

.payment-notice {
  margin-top: 3rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.payment-notice i {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------------------------*/
/* Estilos del Carrito */
.cart-container {
  position: relative;
  margin-left: 20px;
}

.cart-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.cart-btn:hover {
  background: var(--dark);
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cart-container:hover .cart-dropdown {
  display: block;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

.cart-item-info {
  flex: 1;
  padding: 0 10px;
}

.cart-item-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: bold;
}

.cart-item-remove {
  color: #ff4757;
  cursor: pointer;
}

.empty-cart {
  text-align: center;
  padding: 1rem;
  color: var(--gray);
}

.empty-cart i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

.checkout-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
  .cart-dropdown {
    width: 250px;
    right: -20px;
  }
}
/*---------------------------------------------------*/
/* Hero Específico de Servicio */
.service-hero {
  padding: 8rem 0 4rem;
  color: white;
  text-align: center;
}
/* Sección de Precios */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.features {
  list-style: none;
  margin: 2rem 0;
}

.features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features .fa-check {
  color: var(--primary);
}

.features .fa-times {
  color: #ff4757;
}

/* Servicios Adicionales */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.addon-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.addon-card:hover {
  transform: translateY(-5px);
}

.addon-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.addon-card h3 {
  margin-bottom: 0.5rem;
}

.addon-card p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.addon-card ul {
  list-style: none;
  text-align: left;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.addon-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.addon-card ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Proceso de Trabajo */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero {
    padding: 6rem 0 3rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/*---------------------------------------------------*/
/* Estilos Específicos para Apps */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.tech-card.featured {
  border: 2px solid var(--primary);
}

.tech-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tech-icon i {
  margin: 0 5px;
}

.tech-card ul {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.tech-card ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.tech-card ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Timeline de Proceso */
.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 2rem;
}

.timeline-number {
  position: absolute;
  left: 30px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* FAQs */
.faq-grid {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-question.active + .faq-answer {
  padding: 1rem;
  max-height: 300px;
}
/*---------------------------------------------------*/
/* Hero SEO */
.seo-hero {
  padding: 6rem 0 4rem;
  color: white;
  text-align: center;
}

.results-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.result-item {
  text-align: center;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.result-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Pestañas de Servicios */
.service-tabs {
  margin-top: 4rem;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 12px 25px;
  background: #f1f5f9;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.tab-btn.active {
  background: var(--primary);
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tab-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-text h3 i {
  color: var(--primary);
}

.tab-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.tab-text ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.tab-text ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
}

/* Paquetes SEO */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.package-card.featured {
  border: 2px solid var(--primary);
}

.package-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.package-card .price span {
  font-size: 1rem;
  color: var(--gray);
}

.package-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.package-card ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-card ul li i.fa-check {
  color: var(--primary);
}

.package-card ul li i.fa-times {
  color: #ff4757;
}

/* Auditoría Gratuita */
.free-audit {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: white;
  padding: 4rem 0;
  margin: 4rem 0;
}

.audit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.audit-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.audit-content h2 span {
  color: #fbbf24;
}

.audit-form {
  margin-top: 2rem;
}

.audit-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: none;
}

/* Testimonios SEO */
.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.results-badge {
  display: inline-block;
  background: #f0fdf4;
  color: #16a34a;
  padding: 5px 15px;
  border-radius: 30px;
  margin-top: 1rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .tab-grid {
    grid-template-columns: 1fr;
  }
  
  .audit-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/*---------------------------------------------------*/
/* Navbar - Versión corregida */
.navbar {
  display: flex;
  align-items: center;
}

/* Menú principal (desktop) */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Hamburguesa (mobile) */
.menu-toggle {
  display: none; /* Oculto por defecto */
  cursor: pointer;
  z-index: 1001;
}

/* Contenedor del menú móvil */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: var(--white);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 80px;
}

.mobile-menu.active {
  left: 0;
}

/* Items del menú móvil */
.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-links li {
  margin-bottom: 1.5rem;
  list-style: none;
}

.mobile-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive: Mostrar hamburguesa y ocultar menú desktop */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Oculta el menú desktop */
  }
  
  .menu-toggle {
    display: block; /* Muestra la hamburguesa */
    margin-left: auto; /* Lo empuja a la derecha */
  }
  
  /* Elimina espacio vacío */
  .navbar {
    justify-content: space-between;
    width: 100%;
  }
}
/*---------------------------------------------------*/
@media (max-width: 768px) {
  /* Ajustes para la sección de contacto en móviles */
  .contact-section {
    padding: 10px;
  }
  
  /* Asegurar que los elementos internos no sobresalgan */
  .contact-section > * {
    max-width: 100%;
  }
  
  /* Ajustes específicos para el mapa */
  .map-container {
    padding-top: 75%; /* Proporción más alta para móviles */
  }
}
/*---------------------------------------------------*/
/* Mapas responsive */
.map-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .service-card {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .portfolio-item {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-form, .contact-info {
    width: 100%;
  }
}


/*-----------------------Mejorar el Carrusel de Testimonios----------------------------*/
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  transition: transform 0.5s ease;
}

/* Controles más accesibles */
.slider-prev, .slider-next {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.8);
  color: var(--primary);
}

.slider-prev:hover, .slider-next:hover {
  background: var(--primary);
  color: white;
}
/*-------------------------Media Queries Mejoradas--------------------------*/
/* Breakpoints mejor organizados */
@media (max-width: 1200px) {
  /* Ajustes para tablets grandes */
}

@media (max-width: 992px) {
  /* Tablets estándar */
}

@media (max-width: 768px) {
  /* Tablets pequeñas y móviles grandes */
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .services-grid, .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  /* Móviles pequeños */
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
/*---------------------------------------------------*/
/* Añade estas clases utilitarias */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }

.p-4 { padding: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
/*---------------------------------------------------*/
/* Contenedor del carrito */
.cart-container {
  position: relative;
  margin-left: 20px;
}

/* Dropdown del carrito */
.cart-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 1rem;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.cart-container:hover .cart-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Botón "Ir a Pagar" */
.checkout-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: var(--dark);
  transform: none; /* Evitar transformación que lo mueva */
}
/*---------------------------------------------------*/
/* Feedback del carrito */
.cart-feedback {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.cart-feedback.show {
  opacity: 1;
}

/* Ícono del menú móvil */
.menu-toggle.open i {
  transform: rotate(180deg);
}

/* Dropdown del carrito */
.cart-dropdown.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Transición para items del portafolio */
.portfolio-item {
  transition: all 0.3s ease;
}
/*---------------------------------------------------*/
/* Estilo base para todos los botones */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

/* Estilo específico para botón SEO */
.seo-btn {
  background: #10b981; /* Verde para SEO */
}

.seo-btn:hover {
  background: transparent;
  border-color: #10b981;
  color: #10b981;
}

.seo-btn i {
  margin-right: 8px;
}
/*---------------------------------------------------*/
/* Estilo específico para botón de Apps */
.app-btn {
  background: #3b82f6; /* Azul para apps móviles */
  display: inline-flex;
  align-items: center;
}

.app-btn:hover {
  background: transparent;
  border-color: #3b82f6;
  color: #3b82f6;
}

.app-btn i {
  margin-right: 8px;
  font-size: 0.9em;
}
/*---------------------------------------------------*/
.app-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}
/*---------------------------------------------------*/
/* Estilo específico para botón de Desarrollo Web */
.web-btn {
  background: #7c3aed; /* Color púrpura para desarrollo web */
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.web-btn:hover {
  background: transparent;
  border-color: #7c3aed;
  color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.web-btn i {
  margin-right: 8px;
  font-size: 0.9em;
}
/*---------------------------------------------------*/
/* About Section */
.about {
  padding: 5rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about .section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2c3e50;
}

.about .section-title span {
  color: #3498db;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-features li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  color: #2c3e50;
}

.about-features i {
  color: #3498db;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 3rem 0;
  }
  
  .about .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }
  
  .about-text p, .about-features li {
    font-size: 1rem;
  }
}
/*---------------------------------------------------*/
/* Estilos específicos para la página de Política de Privacidad */
.privacy-policy {
  padding: 60px 0;
  line-height: 1.6;
  color: #333;
}

.privacy-policy .container {
  max-width: 900px;
}

.privacy-policy .page-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.privacy-policy .page-title span {
  color: #2a7ae2;
}

.privacy-policy .last-updated {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 0.9rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: #2a7ae2;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.policy-section h3 {
  margin: 25px 0 15px;
  font-size: 1.3rem;
  color: #444;
}

.policy-section p,
.policy-section ul {
  margin-bottom: 15px;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 8px;
}

.policy-section address {
  font-style: normal;
  line-height: 1.6;
}

.policy-section address p {
  margin-bottom: 10px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #2a7ae2;
  text-decoration: none;
}

.breadcrumb span {
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 0;
  }
  
  .privacy-policy .page-title {
    font-size: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .policy-section h3 {
    font-size: 1.2rem;
  }
}
/*---------------------------------------------------*/
/* Estilos específicos para la página de Términos del Servicio */
.terms-service {
  padding: 60px 0;
  line-height: 1.6;
  color: #333;
}

.terms-service .container {
  max-width: 900px;
}

.terms-service .page-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.terms-service .page-title span {
  color: #2a7ae2;
}

.terms-service .last-updated {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 0.9rem;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  color: #2a7ae2;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.terms-section h3 {
  margin: 25px 0 15px;
  font-size: 1.3rem;
  color: #444;
}

.terms-section p,
.terms-section ul {
  margin-bottom: 15px;
}

.terms-section ul {
  padding-left: 20px;
}

.terms-section li {
  margin-bottom: 8px;
}

.terms-section address {
  font-style: normal;
  line-height: 1.6;
}

.terms-section address p {
  margin-bottom: 10px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #2a7ae2;
  text-decoration: none;
}

.breadcrumb span {
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-service {
    padding: 40px 0;
  }
  
  .terms-service .page-title {
    font-size: 2rem;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section h3 {
    font-size: 1.2rem;
  }
}
/*---------------------------------------------------*/
/* Estilos específicos para la página de Política de Cookies */
.cookies-policy {
  padding: 60px 0;
  line-height: 1.6;
  color: #333;
}

.cookies-policy .container {
  max-width: 900px;
}

.cookies-policy .page-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.cookies-policy .page-title span {
  color: #2a7ae2;
}

.cookies-policy .last-updated {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 0.9rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: #2a7ae2;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.policy-section h3 {
  margin: 25px 0 15px;
  font-size: 1.3rem;
  color: #444;
}

.policy-section p,
.policy-section ul {
  margin-bottom: 15px;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 8px;
}

.policy-section address {
  font-style: normal;
  line-height: 1.6;
}

.policy-section address p {
  margin-bottom: 10px;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #2a7ae2;
  text-decoration: none;
}

.breadcrumb span {
  color: #333;
}

/* Cookie Table */
.cookies-table {
  overflow-x: auto;
  margin: 20px 0;
}

.cookies-table table {
  width: 100%;
  border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.cookies-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.cookies-table tr:hover {
  background-color: #f5f5f5;
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.panel-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-option {
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
}

.cookie-option input {
  margin-right: 15px;
  margin-top: 3px;
}

.cookie-option label {
  flex: 1;
}

.cookie-option label span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.buttons button {
  flex: 1;
}

.secondary {
  background-color: #6c757d;
}

.secondary:hover {
  background-color: #5a6268;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.banner-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.banner-content .buttons {
  display: flex;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .cookies-policy {
    padding: 40px 0;
  }
  
  .cookies-policy .page-title {
    font-size: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .policy-section h3 {
    font-size: 1.2rem;
  }
  
  .banner-content .buttons {
    width: 100%;
  }
  
  .banner-content button {
    flex: 1;
  }
}
/*---------------------------------------------------*/
/* Estilos para los pasos del formulario */
.form-step {
  display: none;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.form-step.completed {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Estilos para los grupos de botones */
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn-outline {
  background: white;
  color: #2a7ae2;
  border: 2px solid #2a7ae2;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #f0f7ff;
}

/* Estilos para validación */
input:invalid, textarea:invalid {
  border-color: #ff6b6b;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

input:invalid + .error-message {
  display: block;
}
/*---------------------------------------------------*/
/* Contenedor del carrito */
.cart-container {
  position: relative;
  margin-left: 20px;
}

/* Botón del carrito */
.cart-btn {
  background: transparent;
  border: none;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  padding: 10px;
}

/* Contador del carrito */
#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #2a7ae2;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Dropdown del carrito */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  padding: 15px;
  margin-top: 10px;
}

/* Mostrar dropdown cuando está activo */
.cart-container:hover .cart-dropdown,
.cart-dropdown.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Contenido del carrito */
.cart-items {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 15px;
}

/* Carrito vacío */
.empty-cart {
  text-align: center;
  padding: 20px;
  color: #666;
}

.empty-cart i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  color: #ccc;
}

/* Total del carrito */
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #eee;
  font-weight: bold;
}

/* Botón de pago */
.checkout-btn {
  display: block;
  background: #2a7ae2;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: #1a5cb0;
  text-decoration: none;
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/*------------------------Recomendado para los 6 Nuevos Proyectos:---------------------------*/
.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; 
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.portfolio-overlay p {
  margin: 0 0 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.portfolio-link {
  display: inline-block;
  color: white;
  border: 1px solid white;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.portfolio-link:hover {
  background: white;
  color: #2a7ae2;
  text-decoration: none;
}
/*--------------Adicional para Mejorar el Diseño: 10 a 15 Nuevos Proyectos:-------------*/
/* Estilos para las etiquetas de tecnología */
.tech-tags {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tech-tags span {
  background: rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  backdrop-filter: blur(5px);
}

/* Mejoras para el overlay */
.portfolio-overlay {
  padding: 25px;
  background: linear-gradient(to top, rgba(42,122,226,0.9), rgba(42,122,226,0.7));
}

.portfolio-link {
  background: white;
  color: #2a7ae2;
  border: none;
  font-weight: 600;
  margin-top: 10px;
}

/* Efecto hover más sofisticado */
.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(42,122,226,0.2);
}

/* Responsive para móviles */
@media (max-width: 576px) {
  .portfolio-overlay {
    padding: 15px;
  }
  
  .portfolio-overlay h3 {
    font-size: 1rem;
  }
  
  .portfolio-overlay p {
    font-size: 0.8rem;
  }
}
/*------------------------para 6 Proyectos Ocultos y Mejoras Visuales:---------------------*/
/* Estilos para proyectos ocultos inicialmente */
.portfolio-item.hidden {
  display: none;
}

/* Mostrar al cargar más proyectos */
.portfolio-item.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Estadísticas de proyecto */
.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.project-stats span {
  background: rgba(0,0,0,0.3);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-stats i {
  font-size: 0.9em;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover mejorado */
.portfolio-item:hover .project-stats span {
  background: rgba(0,0,0,0.5);
}
/*-------------------------Corregido para el Botón de WhatsApp--------------------------*/
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Tooltip ajustado */
.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  width: max-content;
  background: #075E54;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.whatsapp-float .tooltip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #075E54;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float .tooltip {
    font-size: 12px;
    padding: 6px 12px;
    right: 60px;
  }
}
/*-------------------------Adicional para el Carrito--------------------------*/
/* Estilos para items del carrito */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.item-info {
  flex: 2;
}

.item-actions {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-subtotal {
  flex: 1;
  text-align: right;
  font-weight: bold;
}

.btn-quantity {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

.btn-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
}
/*---------------------------------------------------*/
/* Estilos para el feedback */
.cart-feedback {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #4CAF50;
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease;
}

.cart-feedback i {
  font-size: 1.2rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/*---------------------------------------------------*/
/* Estilos para los botones del carrito */
.btn-remove {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 1.2rem;
  margin-left: 10px;
  transition: transform 0.2s;
}

.btn-remove:hover {
  transform: scale(1.2);
  color: #ff3b3b;
}

.btn-quantity {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f8f9fa;
  cursor: pointer;
  font-weight: bold;
}

.btn-quantity:hover {
  background: #e9ecef;
}

.btn-quantity.decrease {
  color: #ff6b6b;
}

.btn-quantity.increase {
  color: #28a745;
}

/* Feedback visual */
.cart-feedback {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #4CAF50;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/*------------------------Adicinal---------------------------*/
/* Estilos para el contador */
.cart-btn {
  position: relative;
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #2a7ae2;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Estilos para el carrito vacío */
.empty-cart {
  text-align: center;
  padding: 20px;
  color: #666;
}

.empty-cart i {
  font-size: 2rem;
  color: #ddd;
  margin-bottom: 10px;
  display: block;
}
/*-----------------------Adicional para el Formulario--------------------------*/
/* Estilos para mensajes del formulario */
.form-message {
  margin: 15px 0;
}

.alert {
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Estilo para el spinner */
.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*-----------------------------------------------*/