/*--------------------------------------------------------------
# MOURON-IT - TECH DARK CORPORATE STYLE
--------------------------------------------------------------*/

:root { 
  --background-color: #ffffff;
  --default-color: #4b5563;
  --heading-color: #1f2937;

  --accent-color: #2563eb;

  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Inter", sans-serif;
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  color: #1d4ed8;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  font-size: 32px;
  color: var(--heading-color);
}

.section-title p {
  color: #f7f7f8;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  background: rgba(15, 23, 42, 0.85);
  padding: 15px 0;
  transition: 0.3s;
  backdrop-filter: blur(8px);
}

.scrolled .header {
  background: rgba(15, 23, 42, 0.95);
}

.header .logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.navbar a {
  color: #e5e7eb;
  font-weight: 500;
  margin-left: 25px;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
  background: linear-gradient(135deg, #0f172a, #111827);
  padding: 140px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.hero p {
  color: #cbd5e1;
  font-size: 18px;
  margin-top: 20px;
}

.hero .btn-get-started {
  margin-top: 30px;
  padding: 12px 30px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: #1d4ed8;
}

.hero-post {
  position: relative;
  height: 45vh;   /* antes 60 */
  min-height: 320px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .service-item {
  background: #242323e3;
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s;
  height: 100%;
}

.services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.services .service-item h4 {
  font-weight: 600;
  margin-top: 15px;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
/* =========================
   CLIENTES PRO - FIX TAMAÑO
========================= */

.clientes-pro {
  background: linear-gradient(135deg, #0f172a, #111827);
  padding: 80px 0;
  color: #ffffff;
}

.clientes-pro .section-title h2 {
  color: #ffffff;
}

.clientes-pro .section-title p {
  color: #cbd5e1;
}

/* Card contenedora */

.clientes-pro .cliente-item {
  background: rgba(134, 133, 133, 0.04);
  padding: 40px;
  border-radius: 42px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(151, 9, 9, 0.171);

  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;          /* altura fija elegante */
}

.clientes-pro .cliente-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

/* Logo */

.clientes-pro .client-logo {
  max-height: 55px !important;
  max-width: 120px !important;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.clientes-pro .cliente-item:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/*--------------------------------------------------------------
# Footer FULL DARK TECH
--------------------------------------------------------------*/

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 30px;
}

.footer h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer a {
  color: #cbd5e1;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--accent-color);
}

.footer .social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 14px;
  color: #94a3b8;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 30px;
  }

}
/* ======================================
   FIX LOGO HEADER
====================================== */

.header img {
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
}
/* ======================================
   FIX LOGO FOOTER
====================================== */

.footer img {
  max-height: 35px !important;
  width: auto !important;
  height: auto !important;
}
.site-logo {
  max-height: 38px;
  width: auto;
}
/* ======================================
   FIX NAVBAR BULLETS
====================================== */

.navbar ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar li {
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--accent-color);
}
/* =========================
   NAVBAR FIX FINAL
========================= */

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #e5e7eb;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--accent-color);
}

.site-logo {
  max-height: 38px;
  width: auto;
}
body {
  background-color: #4b5368;
  color: #e2e8f0;
}

section {
  padding: 80px 0;
}s
.section-light {
  background-color: #ecedf0;
}
.hero-premium {
  height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #0b1120 100%);
  position: relative;
  color: white;
}

.hero-premium::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.2), transparent 70%);
  top: -200px;
  right: -200px;
}

.hero-premium h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-premium p {
  font-size: 20px;
  margin-top: 20px;
  color: #cbd5e1;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary {
  background: #38bdf8;
  color: #0f172a;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 15px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
}
/* ===== CASES SECTION ===== */

.cases-premium {
  background: #111827;
  padding: 100px 0;
}

.section-header h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

.section-header p {
  color: #94a3b8;
  margin-top: 10px;
}

.case-card {
  background: #0f172a;
  padding: 40px;
  border-radius: 14px;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #1e293b;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

.case-content h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.case-tag {
  display: inline-block;
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.case-content p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

.case-results {
  list-style: none;
  padding: 0;
}

.case-results li {
  color: #94a3b8;
  margin-bottom: 8px;
  font-size: 14px;
}
/* ===== CASOS DE ÉXITO ===== */

.cases-section {
  background: #0b1120;
  padding: 100px 0;
}

.section-title h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

.section-title p {
  color: #94a3b8;
  margin-top: 10px;
}

.case-block {
  margin-top: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #1e293b;
}

.case-country {
  display: inline-block;
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.case-content h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.case-content p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

.case-metrics {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.case-metrics li {
  color: #94a3b8;
  margin-bottom: 8px;
}

.case-btn {
  display: inline-block;
  background: #38bdf8;
  color: #0f172a;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.case-btn:hover {
  background: #0ea5e9;
}

.case-images img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.case-images img:hover {
  transform: scale(1.03);
}
/* ===== BLOG SECTION ===== */

.blog-section {
  background: #111827;
  padding: 100px 0;
}

.blog-card {
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #1e293b;
}

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

.blog-content {
  padding: 25px;
}

.blog-date {
  font-size: 13px;
  color: #38bdf8;
  display: block;
  margin-bottom: 10px;
}

.blog-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-content p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-btn {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
}

.blog-main-btn {
  background: #38bdf8;
  color: #0f172a;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.blog-main-btn:hover {
  background: #0ea5e9;
}
/* =========================
   BLOG CLEAN TECH STYLE
========================= */

.blog-wrapper {
  max-width: 820px;
  margin: 80px auto;
  padding: 0 20px;
  background: #fff;
}

.blog-header h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-meta {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 40px;
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
}

.blog-content {
  font-size: 19px;
  line-height: 1.9;
  color: #222;
}

.blog-content p {
  margin-bottom: 24px;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

.autor-box {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.autor-box img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

@media(max-width:768px){
  .blog-header h1 {
    font-size: 28px;
  }

  .blog-content {
    font-size: 17px;
  }
}
/* ===============================
   BLOG INDEX - REVISTA TECH
=================================*/

.blog-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.blog-header p {
    color: #777;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

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

.card-content {
    padding: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.categoria {
    background: #007BFF;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.fecha {
    color: #999;
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card h2 a {
    text-decoration: none;
    color: #111;
}

.blog-card h2 a:hover {
    color: #007BFF;
}

.extracto {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.leer-mas {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #007BFF;
}

.leer-mas:hover {
    text-decoration: underline;
}
/* ===============================
   HERO DESTACADO PREMIUM
=================================*/



.hero-featured h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
}

.hero-featured p {
  font-size: 20px;
  opacity: .85;
  max-width: 700px;
  margin: 20px auto 0;
}

.blog-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc107;
  font-weight: 600;
}

/* ===============================
   GRID EDITORIAL
=================================*/

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
}

.blog-card-modern {
  border: none;
  border-radius: 0;
  background: transparent;
  transition: .3s;
}

.blog-card-modern:hover {
  transform: translateY(-4px);
}

.blog-card-modern img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.blog-card-modern .card-body {
  padding: 18px 0;
}

.blog-card-modern h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-modern p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
}

.blog-card-modern a {
  text-decoration: none;
  font-weight: 600;
}

.blog-card-modern a:hover {
  color: #ffc107;
}

/* MÁS ESPACIO ENTRE BLOQUES */

section {
  margin-bottom: 80px;
}
/* ===============================
   HERO ESTILO APPLE
=================================*/

.hero-apple {
  padding: 120px 0;
  background: #ffffff;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.hero-excerpt {
  font-size: 18px;
  color: #6c757d;
  max-width: 500px;
  margin-bottom: 25px;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.hero-link {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 3px;
}

.hero-link:hover {
  opacity: .7;
}

.blog-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc107;
  font-weight: 600;
}

/* ===============================
   GRID MINIMAL
=================================*/

.section-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 60px;
}

.blog-card-modern {
  border: none;
  background: transparent;
  transition: .3s;
}

.blog-card-modern:hover {
  transform: translateY(-4px);
}

.blog-card-modern img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-card-modern h5 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.blog-card-modern p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}

.blog-card-modern a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.blog-card-modern a:hover {
  color: #ffc107;
}

section {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-excerpt {
    font-size: 16px;
  }

  .hero-apple {
    padding: 80px 0;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }
}
@media (prefers-color-scheme: dark) {

  body {
    background: #0f172a;
    color: #e5e7eb;
  }

  .hero-apple {
    background: #0f172a;
  }

  .hero-title {
    color: #fff;
  }

  .blog-card-modern h5 {
    color: #fff;
  }

  .blog-card-modern p {
    color: #cbd5e1;
  }

  .hero-link {
    color: #fff;
  }

}
#scroll-top {
  width: 70px;
  height: 70px;
  border-radius: 90%;
  background-color: #0d6efd;
  color: rgb(247, 247, 250);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
}

#scroll-top:hover {
  background-color: #0056b3;
  transform: translateY(4px);
}

#scroll-top i {
  font-size: 60px;
}