/* Estilos Generales y Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta de Colores HSL Premium */
  --primary-hue: 200; /* Azul Clínico */
  --accent-hue: 165;  /* Verde Menta / Turquesa */
  
  --primary: hsl(var(--primary-hue), 85%, 45%);
  --primary-hover: hsl(var(--primary-hue), 90%, 35%);
  --primary-light: hsl(var(--primary-hue), 90%, 95%);
  --primary-dark: hsl(var(--primary-hue), 90%, 15%);
  
  --accent: hsl(var(--accent-hue), 75%, 46%);
  --accent-hover: hsl(var(--accent-hue), 85%, 38%);
  --accent-light: hsl(var(--accent-hue), 80%, 93%);
  
  --text-dark: hsl(210, 24%, 16%);
  --text-muted: hsl(208, 12%, 46%);
  --bg-light: hsl(210, 40%, 98%);
  --bg-white: hsl(0, 0%, 100%);
  --border-color: hsl(210, 14%, 90%);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-stack);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Botones Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 107, 210, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 107, 210, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(29, 209, 161, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 209, 161, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Animaciones del Intersection Observer (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Clases de retraso para cascada */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* HEADER Y NAVEGACIÓN ORIGINAL */
.vitale-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-white {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1); /* Hace la imagen completamente blanca */
}

.nav-links-white {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links-white a {
  font-weight: 600;
  color: var(--bg-white);
  font-size: 1rem;
  padding: 0.5rem 0;
  opacity: 0.95;
  transition: var(--transition);
}

.nav-links-white a:hover {
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.header-socials {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: hsl(190, 95%, 48%);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-circle-btn svg {
  width: 20px;
  height: 20px;
}

.social-circle-btn:hover {
  transform: scale(1.1);
  background-color: var(--bg-white);
  color: hsl(190, 95%, 48%);
}

/* HERO SECTION VITALE */
.vitale-hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 1.5rem 0rem;
  background: linear-gradient(105deg, hsl(198, 90%, 46%) 0%, hsl(200, 90%, 42%) 45%, hsl(265, 80%, 40%) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.bubble-cyan {
  background: radial-gradient(circle, hsl(190, 90%, 50%, 0.7) 0%, hsl(190, 90%, 50%, 0.2) 70%);
}

.bubble-pink {
  background: radial-gradient(circle, hsl(330, 80%, 60%, 0.55) 0%, hsl(330, 80%, 60%, 0.1) 70%);
}

.vitale-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.vitale-hero-left {
  color: var(--bg-white);
  padding-bottom: 4rem;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-logo-emblem {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-brand-name {
  color: var(--bg-white);
  font-size: 3rem;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: -1px;
}

.hero-main-title {
  color: var(--bg-white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-subtitle {
  color: var(--bg-white);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.btn-agenda {
  display: inline-block;
  background-color: hsl(186, 95%, 48%);
  color: var(--bg-white);
  padding: 1.1rem 3.8rem;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 210, 211, 0.4);
  transition: var(--transition);
  text-align: center;
}

.btn-agenda:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 210, 211, 0.6);
  background-color: hsl(186, 100%, 42%);
}

.vitale-hero-right {
  display: flex;
  justify-content: flex-end;
  align-self: end;
  position: relative;
  z-index: 3;
}

.hero-team-img {
  max-width: 110%;
  height: auto;
  display: block;
  transform: translateY(10px);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  aspect-ratio: 4/3;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
}

/* SECCIONES COMUNES */
section {
  padding: 6rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-bg-white {
  background-color: var(--bg-white);
}

/* ESPECIALIDADES */
.specialties-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.specialty-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.specialty-card:hover::before {
  opacity: 1;
}

.specialty-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.specialty-card:hover .specialty-icon-wrapper {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: scale(1.05);
}

.specialty-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.specialty-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* OFERTAS DEL MES */
.offer-section {
  background: linear-gradient(135deg, var(--primary-dark), hsl(200, 100%, 8%));
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.offer-section h2, .offer-section p {
  color: var(--bg-white);
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.offer-content h3 {
  color: var(--accent);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.offer-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.offer-content p {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.offer-price {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.price-now {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
}

.price-before {
  font-size: 1.4rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.offer-image-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
}

.offer-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* NUESTRO EQUIPO (ESPECIALISTAS) */
.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-image-box {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--primary-light);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.team-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
}

.team-specialty {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.team-cv {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}

.team-schedule {
  font-size: 0.85rem;
}

.team-schedule-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.schedule-label {
  font-weight: 600;
  color: var(--text-dark);
}

.schedule-value {
  color: var(--text-muted);
}

/* ACCIONES SOCIALES (NOTICIAS) */
.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--accent-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.news-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

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

/* TESTIMONIOS (Carrusel nativo) */
.testimonios-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
}

.testimonials-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.testimonio-card {
  min-width: 100%;
  scroll-snap-align: start;
  padding: 2.5rem;
  text-align: center;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.testimonio-quote {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.testimonio-author {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonio-title {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* CONTACTO Y UBICACIÓN */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 350px;
  background-color: var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FOOTER */
footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h2 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-links h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* PÁGINA LOGIN Y PANEL DE ADMIN (ESTILO WORDPRESS PREMIUM / GLASSMORPHISM) */
.admin-login-body {
  background: linear-gradient(135deg, var(--primary-dark), hsl(200, 100%, 8%));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.login-card h2 {
  color: var(--bg-white);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 0 0 10px rgba(29, 209, 161, 0.2);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
}

.admin-sidebar .brand {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-menu-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 550;
  font-size: 0.95rem;
}

.admin-menu-link:hover, .admin-menu-link.active {
  color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.admin-menu-link.active {
  background-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 107, 210, 0.3);
}

.admin-main {
  background-color: var(--bg-light);
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.admin-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

/* Tablas Admin */
.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--text-dark);
}

.badge-rol {
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-admin {
  background-color: var(--primary-light);
  color: var(--primary);
}

.badge-editor {
  background-color: var(--accent-light);
  color: var(--accent);
}

.badge-colaborador {
  background-color: hsl(40, 90%, 93%);
  color: hsl(40, 90%, 35%);
}

.badge-status {
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-published {
  background-color: var(--accent-light);
  color: var(--accent);
}

.badge-draft {
  background-color: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 40%);
}

/* Modales e Inputs de Formularios en Admin */
.admin-form-group {
  margin-bottom: 1.5rem;
}

.admin-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.admin-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.admin-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 107, 210, 0.15);
}

.action-btns {
  display: flex;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-danger {
  background-color: hsl(354, 70%, 53%);
  color: var(--bg-white);
}

.btn-danger:hover {
  background-color: hsl(354, 70%, 43%);
}

.btn-warning {
  background-color: hsl(45, 90%, 50%);
  color: var(--text-dark);
}

.btn-warning:hover {
  background-color: hsl(45, 90%, 40%);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-container, .offer-container, .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .admin-layout {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Simplificado para ejemplo */
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
