body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #121216;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* navbar */
.navbar {
  background: #000000;
  padding: 1rem 0;
  border-bottom: 2px solid #ff00aa;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.logo {
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
}

.logo b {
  color: #f21c6b;
}

/* Navegación principal */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #ff00aa;
}

.btn-login {
  background: #ff00aa;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background: #e60095;
}


@media (max-width: 768px) {
  /* Ocultar el menú de navegación principal (el que sale como lista vertical) */
  .navbar nav {
    display: none !important;
  }
  
  /* O si el nav está dentro de .container */
  .navbar .container nav {
    display: none !important;
  }
  
  /* También ocultar el botón de login */
  .btn-login {
    display: none !important;
  }
}






/* Typography */

.typography-main {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.intro h1 {
  font-size: 2.5rem;
  color: #ff00aa;
}

.font-showcase {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.font-card {
  background-color: #1b1b2f;
  border-left: 4px solid #ff00aa;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.font-card:hover {
  transform: translateY(-5px);
}

.font-preview {
  font-size: 1.8rem;
  margin-top: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.kinetic {
  animation: flicker 1.5s infinite alternate;
  color: #ff00aa;
}

@keyframes flicker {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}

.serif {
  font-family: 'Times New Roman', serif;
  color: #ffc1ea;
}

.variable {
  font-variation-settings: 'wght' 700;
  color: #88ffe3;
}

.hero {
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
}

hero-text h2 {
  font-size: 3rem;
  line-height: 1.2;
}

.agency {
  color: #df0a7c;
}

.desc {
  margin: 1rem 0 2rem;
  font-size: 1rem;
  color: #bbb;
  max-width: 400px;
}

.btn-white {
  background: #fff;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
}


.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-text p {
  max-width: 500px;
  color: #bbb;
}
.hero-buttons {
  margin-top: 2rem;
}
.hero-image {
  flex: 1 1 45%;
  text-align: center;
}


.stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem 0;
  text-align: center;
}
.stats div {
  font-size: 1.2rem;
}
.stats span {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
}

.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: #111122;
  justify-items: center;
  align-items: center;
}
.partners img {
  width: 100%;         /* Ajustable según gusto: 100px–150px está bien */
  height: auto;
  object-fit: contain;  /* Mantiene proporción sin recortar el logo */
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
  grid-template-columns: repeat(3, 1fr);
}

.partners img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-items: center;
  background: #0b0b1c;
}

.popular-grid img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.popular-grid img:hover {
  transform: scale(1.03);
  opacity: 1;
}


.popular, .top-sellers, .explore {
  padding: 3rem 2rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card-container, .seller-grid, .explore-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}



.cta {
  background: linear-gradient(135deg, #9d0659, #6c0530);
  text-align: center;
  padding: 4rem 2rem;
  color: white;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}



.design-trends {
  background: #000000;
  padding: 3rem 2rem;
  color: #eee;
}

.design-trends h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trend-card {
  background: #b40565;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(214, 8, 139, 0.3);
}

.trend-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #0a0006;
}
@media (max-width: 768px) {
  .navbar .container,
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .font-preview {
    font-size: 1.4rem;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .btn-login {
    margin-top: 1rem;
  }
}

/* Services Section */
.services-section {
  background-color: #f9fafb;
  padding: 4rem 2rem;
}

.services-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 86, 179, 0.2);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #004a99;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.service-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .container,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .font-preview {
    font-size: 1.4rem;
  }

  .btn-login {
    margin-top: 1rem;
  }
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-text h2 {
  font-size: 3rem;
  line-height: 1.2;
}

.agency {
  color: #df0a7c;
}

.desc {
  margin: 1rem 0 2rem;
  font-size: 1rem;
  color: #bbb;
  max-width: 400px;
}

.btn-white {
  background: #fff;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Marquee */
.tags-slider {
  background: #1a1a1a;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #700540;
}

/* Services */
.services-section {
  padding: 4rem 0;
  background: #121212;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
}

.service-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.service-text {
  flex: 1 1 50%;
}

.service-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-text ul {
  margin: 1rem 0;
  padding-left: 1rem;
}

.service-text ul li {
  margin-bottom: 0.5rem;
}

.btn-learn {
  display: inline-block;
  margin-top: 1rem;
  color: #a00a5c;
  font-weight: 600;
}

.service-img {
  flex: 1 1 40%;
  text-align: center;
}

.service-img img {
  max-width: 100%;
  height: auto;
}

/* Stats */
.stats-section {
  padding: 3rem 0;
  background: #0a0a0a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}

.stats-grid div {
  font-size: 1.1rem;
  color: #ccc;
}

.stats-grid strong {
  font-size: 1.6rem;
  display: block;
  color: #fff;
}

/* Imagen del logo */
.logo img {
    height: 80%; /* Ajusta la altura relativa al header */
    max-height: 50px; /* Altura máxima permitida */
    object-fit: contain; /* Asegura que la imagen no se deforme */
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-primary);
}

/* Footer */

.footer {
    background-color: var(--color-secondary);
    color: white;
    padding: 60px 0 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 32px;
    justify-content: space-between;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo img {
    max-width: 140px;
    height: auto;
}

.footer-logo p {
    margin-top: 12px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #0d1b47; /* color acento */
}

.footer-contact p {
    margin-bottom: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact address {
    font-style: normal;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #610930;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.featured-posts {
  padding: 4rem 0;
  background: #161616;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.post-card {
  background: #1f1f1f;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.post-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.post-card p {
  font-size: 0.95rem;
  color: #bbb;
}

.design-tips {
  padding: 3rem 0;
  background-color: #131313;
}

.tips-list {
  max-width: 800px;
  margin: auto;
  list-style: none;
  padding-left: 0;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.tips-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.tips-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #780743;
}

.subscribe-section {
  padding: 4rem 0;
  background-color: #1a1a1a;
  text-align: center;
}

.subscribe-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.subscribe-section p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-form input[type="email"] {
  padding: 0.8rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  width: 280px;
}

.subscribe-form button {
  padding: 0.8rem 1.6rem;
  background: #df0a7c;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: #8d094d;
}

.gallery-section {
  padding: 4rem 0;
  background: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.quote-section {
  background: #0d0d0d;
  padding: 3rem 1rem;
  text-align: center;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #da115e;
  max-width: 700px;
  margin: auto;
  position: relative;
}

.quote-section cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #040000;
}

.subscribe-thanks {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f0f0f;
  text-align: center;
  color: white;
  padding: 2rem;
}

.subscribe-thanks h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #df0a7c;
}

.subscribe-thanks p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.subscribe-thanks .btn-white {
  background-color: white;
  color: black;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.thanks-video video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.thanks-video {
  flex: 1 1 400px;
  text-align: center;
}

.thanks-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    margin-top: 2rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px; /* Puedes aumentar si quieres más grande */
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .hero-text {
    flex: 1 1 100%;
  }
}

/*blog*/
.about-image {
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 18px; /* Bordes ligeramente más redondeados */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); /* Sombra más profunda y elegante */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.about-image img:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}





/* Hero Section */
.hero {
    padding: 100px 20px; /* Más espacio para hacerlo más llamativo */
    color: white;
    position: relative;
    overflow: hidden;
    text-align: left; /* Asegura una buena alineación de texto */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Forma dinámica para fondo */
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
    z-index: 1; /* Prioridad sobre el fondo */
}

.hero h1 {
    font-size: 4rem; /* Tamaño más grande */
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif; /* Tipografía moderna */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.978); /* Efecto de sombra */
}

.hero p {
    font-size: 1.5rem; /* Aumentar para mejor visibilidad */
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: 'Roboto', sans-serif; /* Combina bien con el título */
}

.hero .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #860948;
    background-color: white;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.hero .btn:hover {
    background-color: #db7ab3;
    transform: scale(1.05);
    color: #000000;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 0;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0, 0, 0); /* Sombra atractiva para la imagen */
}

/* Servicios Destacados */
.featured-services {
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.featured-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Efecto de sombra para destacar el título */
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: rgb(0, 0, 0);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Sombra atractiva */
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* Mayor profundidad al pasar el cursor */
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05); /* Animación sutil al pasar el cursor */
}

.service-card h3 {
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e1065e;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-card a:hover {
    background-color: #010106;
    transform: scale(1.1); /* Resaltar al pasar el cursor */
}



/* Sobre Nosotros */
.about-us {
    background: linear-gradient(135deg, #ffffff, #e0dcd9);
    padding: 80px 20px;
    color: #c2145c; 
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-us .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-content {
    flex: 1;
    min-width: 350px;
    text-align: left;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0d1b2a; /* Azul muy oscuro para elegancia */
    margin-bottom: 25px;
    text-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
}

.about-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #333; /* Gris oscuro para lectura óptima */
    margin-bottom: 35px;
    font-weight: 500;
}

.values-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.values-list li {
    margin-bottom: 18px;
    padding-left: 45px;
    position: relative;
    font-size: 1.15rem;
    color: #2f2f2f;
    line-height: 1.7;
    font-weight: 600;
}

.values-list li::before {
    content: "✓";
    color: #00000480; /* Verde profesional y elegante */
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 1.6rem;
    top: 0;
}

.about-image {
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 18px; /* Bordes ligeramente más redondeados */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); /* Sombra más profunda y elegante */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.about-image img:hover {
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}




/* Clientes y Testimonios */
.clients {
    padding: 80px 20px;
    text-align: center;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
}

.clients h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #be165f; 
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.clients-logos img {
    max-width: 130px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0 10px 20px rgba(156, 5, 85, 0.3);
}

/* Testimonios */
.testimonials {
    max-width: 850px;
    margin: 50px auto 0;
    padding: 0 20px;
}

blockquote {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    position: relative;
    padding: 30px 40px;
    background: #e9f1f7;
    border-left: 6px solid #ee0c72;
    border-radius: 10px;
    color: #be136e;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

blockquote:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

blockquote::before {
    content: "“";
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    left: 15px;
    top: 5px;
    color: #edd1de;
    opacity: 0.2;
    line-height: 1;
}

blockquote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    text-align: right;
    color: #e10d7e;
    font-size: 1rem;
    letter-spacing: 0.5px;
}


/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.blog-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.blog-img-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    color: #d4066a;
}

.blog-content .date {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 16px;
}

.blog-content p {
    flex-grow: 1;
    font-size: 1rem;
    color: #555555;
    line-height: 1.5;
}

.read-more {
    margin-top: 16px;
    font-weight: 600;
    color: #7d0c54;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ab0756;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    background-color: #ed0791;
    color: rgb(0, 0, 0);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ae92a2;
}

/* Contacto */


/* Contact Hero Section */
.contact-hero {
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-hero .lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    padding: var(--spacing-xl) 0;
}


/* Contact formulario*/

/* Contenedor general */
.contact-form-container {
  background-color: #b1a1ab; /* Fondo blanco */
  padding: 2rem;             /* Espaciado interno */
  border-radius: 8px;        /* Bordes redondeados suaves */
  border: 1px solid #ddd;    /* Borde gris claro */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Sombra suave */
  max-width: 600px;          /* Ancho del formulario */
  margin: 2rem auto;         /* Espaciado hacia afuera, centrado */
  font-family: var(--font-family, 'Roboto', sans-serif); 
  color: var(--color-text, #333); 
}



.contact-form-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(7, 7, 100, 0.3);
}

/* Título */
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}


/* FAQ */

/* FAQ estilo acordeón */
.accordion-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.accordion-header h3 {
  margin: 0;
}

.accordion-button {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #000;
}

.accordion-button:not(.collapsed) {
  background-color: #000000;
  color: #cccacb;
}

.accordion-body {
  background-color: #ffffff;
  font-size: 0.95rem;
  color: #000000;
}



/* Grupos de campos */
.form-group {
  margin-bottom: var(--spacing-md);
  position: relative;
}

/* Labels */
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  font-size: 1rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* Inputs y textarea */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-family);
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
}

/* Focus con sombra y cambio de borde */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  outline: none;
}

/* Placeholder estilizado */
input::placeholder,
textarea::placeholder {
  color: #a8a8a8;
  font-style: italic;
  font-weight: 400;
}

/* Botón de envío */
.btn-submit {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-weight: 700;
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 6px 16px rgba(8, 7, 93, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary-dark));
  box-shadow: 0 10px 28px rgba(7, 7, 95, 0.7);
  transform: scale(1.05);
}

/* Mensajes de error ocultos por defecto */
.error-message {
  display: none;
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: var(--spacing-xs);
  position: absolute;
  bottom: -20px;
  left: 0;
  font-weight: 600;
}

/* Mostrar mensajes de error */
input:invalid + .error-message,
textarea:invalid + .error-message {
  display: block;
}

/* Animación suave para error */
input:invalid,
textarea:invalid {
  animation: shake 0.3s ease-in-out;
  border-color: var(--color-error);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%, 75% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
}



.contact-info {
  background-color: var(--color-light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  font-family: var(--font-family);
  color: var(--color-text);
  max-width: 400px;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
}

.contact-info:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.contact-item {
  margin-bottom: var(--spacing-md);
}

.contact-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 4px;
  width: fit-content;
}

.contact-item p,
.contact-item address {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

.contact-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover,
.contact-item a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Tabla Horario */
.horario-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--spacing-sm);
}

.horario-table td {
  padding: var(--spacing-xs) 0;
  border: none;
  font-size: 1rem;
  color: var(--color-text);
}










/* Mapa */
.location-map {
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#00796b;
    text-align: center;
}

.map-container {
    margin: 40px auto 0;
    max-width: 900px;
    height: 550px; /* Más grande */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.6);
}

.map-note {
    margin-top: 25px;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    user-select: none;
}


.info-section {
  background-color: transparent;
  padding: 4rem 0;
}

.featured-posts {
  padding: 4rem 0;
  background: #161616;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.post-card {
  background: #1f1f1f;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.post-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.post-card p {
  font-size: 0.95rem;
  color: #bbb;
}

.design-tips {
  padding: 3rem 0;
  background-color: #131313;
}

.tips-list {
  max-width: 800px;
  margin: auto;
  list-style: none;
  padding-left: 0;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.tips-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.tips-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #780743;
}

.subscribe-section {
  padding: 4rem 0;
  background-color: #1a1a1a;
  text-align: center;
}

.subscribe-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.subscribe-section p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-form input[type="email"] {
  padding: 0.8rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  width: 280px;
}

.subscribe-form button {
  padding: 0.8rem 1.6rem;
  background: #df0a7c;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: #8d094d;
}

.gallery-section {
  padding: 4rem 0;
  background: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.quote-section {
  background: #0d0d0d;
  padding: 3rem 1rem;
  text-align: center;
}


/* Font showcase grid */
.font-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.font-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.font-card:hover {
  transform: translateY(-5px);
}

.font-card img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  margin-bottom: 1rem;
  max-height: 200px;
}

.font-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #d50582;
}

.font-card p {
font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #554a51;
  margin-bottom: 1rem;
}

/* Font preview styles */
.font-preview {
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  width: 100%;
}

/* Ejemplo de clases tipográficas personalizadas */
.font-preview.kinetic {
  font-family: 'Orbitron', sans-serif;
  background: #7592d1a6;
  color: #1e3a8a;
}

.font-preview.serif {
  font-family: 'Orbitron', sans-serif;
  background: #fce4ec;
  color: #c2185b;
}

.font-preview.variable {
  font-family: 'Orbitron', sans-serif;
  background: #beeae7;
  color: #00796b;
}

.service-list {
  list-style-type: none; /* Quita los bullets */
  color: #000; /* Texto negro */
  text-align: center; /* Centra el texto */
  padding: 0;
  margin: 1rem 0;
}

.service-list li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}




.serif {
  font-family: 'Times New Roman', serif;
  color: #ffc1ea;
}

.variable {
  font-variation-settings: 'wght' 700;
  color: #88ffe3;
}

.brutal {
  text-transform: uppercase;
  font-weight: 900;
  color: #ff5c5c;
}

.modular {
  letter-spacing: 0.2em;
  color: #c9f31d;
}

.font-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.font-table h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff00aa;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1b1b2f;
  border-radius: 8px;
  overflow: hidden;
  min-width: 400px;
}

thead {
  background-color: #000000;
  color: #ff00aa;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #fcf8f8;
}

tbody tr:hover {
  background-color: #c9168a;
}

.conclusion {
  margin-top: 3rem;
  background-color: #ba1364;
  padding: 2rem;
  border-radius: 1rem;
}






/* Mobile Header psts nbar en resposivee*/
.header-mobile {
    display: none;
    background: linear-gradient(135deg, #000000, #000000);
    padding: 15px 20px;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Checkbox oculto para controlar el menú */
.menu-checkbox {
    display: none;
}

/* Botón hamburguesa */
.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    color: #cd0b55;
}

.logo-mobile img {
    height: 45px;
    width: auto;
}

.btn-contact-mobile {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contact-mobile:hover {
    background-color: #e90e66;
    color: #ffffff;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #000000, #000000);
    z-index: 999;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.close-menu {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    color: #cf1069;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a {
    display: block;
    padding: 18px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ea1060;
    padding-left: 30px;
}

.mobile-nav ul li a.active {
    background-color: rgba(0, 0, 0, 0.3);
    color: #d60b81;
    border-left: 4px solid #b4095e;
}

/* Estados del menú cuando está activo (checkbox checked) */
.menu-checkbox:checked ~ .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.menu-checkbox:checked ~ .mobile-menu {
    left: 0;
}

/* Prevenir scroll cuando el menú está abierto */
.menu-checkbox:checked ~ body {
    overflow: hidden;
}

/* Contenido principal */
main {
    margin-top: 80px; /* Espacio para el header fijo */
    padding: 2rem;
    min-height: 100vh;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header {
        display: none;
    }
    
    .header-mobile {
        display: flex;
    }

    main {
        margin-top: 75px; /* Ajustar para header móvil */
    }
}

@media screen and (max-width: 480px) {
    .mobile-menu {
        width: 90%;
        max-width: none;
    }
    
    .header-mobile {
        padding: 12px 15px;
    }
    
    .btn-contact-mobile {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Estilos adicionales para mejorar la experiencia */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Animación del icono hamburguesa cuando está activo */
.menu-checkbox:checked ~ .menu-toggle i:before {
    content: "\f00d"; /* Icono de X */
}












/* =============================================
   MEDIA QUERIES (SOLO MÓVILES Y TABLETS)
============================================= */

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    /* Proceso - eliminar líneas conectoras */
    .step:not(:last-child)::after {
        display: none;
    }
    
    .process-steps {
        gap: var(--spacing-lg);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step {
        flex-basis: calc(50% - var(--spacing-md));
        margin-bottom: var(--spacing-md);
    }
    
    /* Precios */
    .pricing-table {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .pricing-plan {
        flex-basis: calc(50% - var(--spacing-md));
        max-width: 300px;
        margin-bottom: var(--spacing-lg);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        text-align: left;
    }
    
    /* Blog detail */
    .blog-detail .container {
        width: 90%;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .author-image {
        margin: 0 auto var(--spacing-md);
    }
}

/* Móviles grandes y tablets pequeñas (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    /* Cards más compactas */
    .service-card, .blog-card {
        padding: var(--spacing-md);
    }
    
    .service-card h3, .blog-card h3 {
        font-size: 1.2rem;
    }
    
    /* Proceso en una sola columna */
    .process-steps {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .step {
        flex-basis: auto;
        max-width: 400px;
        margin: 0 auto var(--spacing-sm);
    }
    
    /* Precios en una columna */
    .pricing-table {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .pricing-plan {
        flex-basis: auto;
        width: 100%;
        max-width: 350px;
        margin-bottom: var(--spacing-md);
    }
    
    /* Footer en una columna */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Navegación */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    /* Logos de clientes */
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .clients-logos img {
        max-width: 90px;
    }
}

/* Móviles medianos (481px - 575px) */
@media (max-width: 575px) and (min-width: 481px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .service-card, .blog-card {
        padding: var(--spacing-sm);
    }
    
    .service-card h3, .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Navegación móvil */
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    /* Clientes */
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .clients-logos img {
        max-width: 100px;
    }
}

/* Móviles pequeños (376px - 480px) */
@media (max-width: 480px) and (min-width: 376px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        text-align: center;
    }
    
    .service-card, .blog-card {
        width: 100%;
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }
    
    .service-card h3, .blog-card h3 {
        font-size: 1.2rem;
    }
    
    /* Proceso */
    .step {
        max-width: none;
        width: 100%;
        padding: var(--spacing-md);
    }
    
    /* Precios */
    .pricing-plan {
        width: 100%;
        max-width: none;
        margin-bottom: var(--spacing-md);
    }
    
    /* Footer */
    .footer-content > div {
        margin-bottom: var(--spacing-md);
    }
    
    /* Clientes */
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-logos img {
        max-width: 90px;
    }
}

/* Móviles muy pequeños (hasta 375px) */
@media (max-width: 375px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .services-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .service-card, .blog-card {
        width: 100%;
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }
    
    .service-card h3, .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    /* Header */
    .header {
        padding: var(--spacing-sm) 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Navegación */
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    .nav-menu li a {
        padding: var(--spacing-xs);
        display: block;
    }
    
    /* Proceso */
    .step {
        padding: var(--spacing-sm);
        text-align: center;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto var(--spacing-xs);
    }
    
    /* Precios */
    .pricing-plan {
        padding: var(--spacing-sm);
    }
    
    .pricing-plan h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    /* Footer */
    .footer-content {
        text-align: center;
    }
    
    .footer-content > div {
        margin-bottom: var(--spacing-sm);
    }
    
    .social-links {
        justify-content: center;
        gap: var(--spacing-xs);
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Clientes */
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .clients-logos img {
        max-width: 80px;
    }
    
    /* Blog detail */
    .blog-detail .container {
        width: 95%;
    }
    
    .author-box {
        padding: var(--spacing-sm);
        text-align: center;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
        margin: 0 auto var(--spacing-xs);
    }
}

/* Dispositivos de alta resolución */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero,
    .service-img,
    .blog-img {
        background-size: cover;
        background-position: center;
    }
} 

/* =============================================
   CAMBIOS DE ORIENTACIÓN PARA TABLETS
   ============================================= */
@media (orientation: landscape) and (max-width: 992px) {
    .hero .container {
        flex-direction: row;
    }
    
    .hero-content,
    .hero-image {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


