@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  --color-primary: #78B800;
  --color-secondary: #10b981;
  --color-dark: #1e293b;
  --color-light: #f8fafc;
  --color-white: #ffffff;
  --color-gray: #64748b;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15); }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md); }

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm); } }
iframe {
  border: none; }

img {
  max-width: 100%;
  height: auto; }

iframe {
  max-width: 100%; }

body#home .nav-link.nav-link--home,
body#quienes-somos .nav-link.nav-link--quienes,
body#servicios .nav-link.nav-link--servicios,
body#productos .nav-link.nav-link--productos,
body#promociones .nav-link.nav-link--promociones,
body#video-consejos .nav-link.nav-link--video-consejos,
body#contacto .nav-link.nav-link--contacto {
  color: var(--color-primary); }

a {
  color: #78B800; }

h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark); }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray);
  font-size: 1.1rem; }

.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100; }

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0; }

.logo a {
  text-decoration: none;
  color: inherit; }
.logo svg {
  width: 110px;
  height: 90px;
  transition: width 0.3s ease, height 0.3s ease; }
  @media (min-width: 769px) {
    .logo svg {
      width: 140px;
      height: 128px; } }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  width: 40px;
  height: 40px;
  position: relative; }
  @media (min-width: 769px) {
    .hamburger {
      display: none; } }

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); }
  .hamburger-line:nth-child(1) {
    top: 10px; }
  .hamburger-line:nth-child(2) {
    top: 18px; }
  .hamburger-line:nth-child(3) {
    top: 26px; }

.hamburger.active .hamburger-line:nth-child(1) {
  top: 18px;
  transform: translateX(-50%) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) {
  top: 18px;
  transform: translateX(-50%) rotate(-45deg); }

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  padding-top: 80px;
  overflow-y: auto; }
  .nav.active {
    right: 0; }
  @media (min-width: 769px) {
    .nav {
      position: static;
      width: auto;
      max-width: none;
      height: auto;
      background-color: transparent;
      box-shadow: none;
      padding-top: 0;
      overflow-y: visible; } }

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--spacing-md);
  list-style: none; }
  .nav-list > li {
    border-bottom: 1px solid var(--color-light); }
  @media (min-width: 769px) {
    .nav-list {
      flex-direction: row;
      gap: var(--spacing-md);
      padding: 0; }
      .nav-list > li {
        position: relative;
        border-bottom: none; } }

.nav-item-submenu {
  display: flex;
  flex-direction: column;
  position: relative; }
  .nav-item-submenu > a {
    flex: 1; }
  @media (min-width: 769px) {
    .nav-item-submenu {
      display: block;
      position: relative; }
      .nav-item-submenu::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 10px;
        background: transparent; }
      .nav-item-submenu:hover .submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto; }
      .nav-item-submenu:hover > .nav-link {
        color: var(--color-primary); } }

.nav-link {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: var(--spacing-sm) 0;
  font-size: 1.1rem;
  position: relative; }
  .nav-link:hover, .nav-link.active {
    color: var(--color-primary); }

.submenu-toggle {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  padding: var(--spacing-sm);
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease; }
  .submenu-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray); }
  .submenu-toggle.active {
    transform: rotate(180deg); }
  @media (min-width: 769px) {
    .submenu-toggle {
      display: none; } }

.submenu {
  position: static;
  box-shadow: none;
  background-color: var(--color-light);
  margin: 0;
  padding: 0;
  border-radius: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  list-style: none; }
  .submenu.active {
    max-height: 300px; }
  .submenu li {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
    .submenu li:last-child {
      border-bottom: none; }
  .submenu .nav-link {
    padding: var(--spacing-sm) var(--spacing-md);
    padding-left: calc(var(--spacing-md) * 2);
    font-size: 0.95rem; }
    .submenu .nav-link:hover {
      padding-left: calc(var(--spacing-md) * 2); }
  @media (min-width: 769px) {
    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--color-white);
      box-shadow: var(--shadow-lg);
      border-radius: var(--border-radius);
      padding: var(--spacing-xs) 0;
      min-width: 220px;
      margin-top: 0;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
      max-height: none;
      overflow: visible; }
      .submenu:hover {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto; }
      .submenu li {
        border-bottom: none; }
      .submenu .nav-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        white-space: nowrap;
        transition: all 0.2s ease;
        font-size: 1rem; }
        .submenu .nav-link:hover {
          background-color: var(--color-light);
          padding-left: calc(var(--spacing-sm) + 5px); } }

.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  color: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center; }

.hero-overlay {
  width: 100%; }

.hero-title {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  font-weight: 700; }
  @media (min-width: 769px) {
    .hero-title {
      font-size: 3rem; } }

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  color: white; }
  @media (min-width: 769px) {
    .hero-subtitle {
      font-size: 1.25rem; } }

p.page-hero-subtitle {
  padding: 0 0 10px;
  font-size: 1.15em;
  color: #fff; }

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer; }

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary); }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg); }

/* ===================================
   FOOTER STYLES
   =================================== */
.footer {
  background: linear-gradient(135deg, #1a4d2e 0%, #2c5f2d 100%);
  color: #ffffff;
  padding: 3rem 0 1rem; }
  .footer p {
    color: #ffffff; }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.footer-section h3,
.footer-section h4,
.footer-section h5 {
  color: #ffffff;
  margin-bottom: 1rem; }

.footer-section h3 {
  font-size: 1.5rem; }

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600; }

.footer-section h5 {
  font-size: 0.95rem;
  margin-top: 1rem; }

.footer-slogan {
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 0.75rem; }

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85; }

/* Badges */
.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem; }

.footer-badges .badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3); }

/* Navigation Lists */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.footer-section ul li {
  margin-bottom: 0.5rem; }

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block; }

.footer-section a:hover {
  color: #ffffff;
  transform: translateX(3px); }

/* Contact Section */
.footer-contacto address {
  font-style: normal;
  line-height: 1.8; }

.footer-contacto address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.1; }

.footer-contacto svg {
  flex-shrink: 0;
  margin-top: 0.2rem; }

.footer-horario {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2); }

.footer-horario p {
  margin: 0.25rem 0;
  font-size: 0.9rem; }

/* Social Links */
.footer-social {
  margin-top: 1rem; }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem; }

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: none; }

.social-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px); }

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.5rem;
  text-align: center; }

.footer-legal {
  margin-bottom: 0.75rem; }

.footer-legal p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  opacity: 0.85; }

.footer-cookies {
  font-size: 0.85rem !important;
  opacity: 0.7 !important; }

.footer-credits {
  font-size: 0.85rem;
  opacity: 0.75; }

.footer-credits a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline; }

.footer-credits a:hover {
  color: #ffffff; }

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; }

  .footer {
    padding: 2rem 0 1rem; } }
/* Screen Reader Only (para h5 si quieres ocultarlo visualmente) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.cardsGrid {
  display: grid;
  gap: var(--spacing-md); }
  @media (min-width: 468px) {
    .cardsGrid--2 {
      grid-template-columns: repeat(auto-fill, minmax(40%, 1fr)); } }
  .cardsGrid--3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg); }
  .card__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center; }
    .card__icon svg {
      width: 100%;
      height: 100%; }
  .card__title {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark); }
  .card__text {
    color: var(--color-gray);
    line-height: 1.4;
    margin: 0 0 12px; }
    .card__text a {
      color: var(--color-primary);
      text-decoration: none; }
      .card__text a:hover {
        color: #39c; }
  .card__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease; }
    .card__link:hover {
      color: #39c; }
    .card__link svg {
      display: inline-flex;
      width: 34px;
      height: 34px;
      vertical-align: middle; }

body .cardsGrid .card__icon svg.icono-asesoramiento {
  width: 110px;
  height: 110px; }
body .cardsGrid .card__icon svg.icono-dietetica {
  width: 80px;
  height: 80px; }
body .cardsGrid .card__icon svg.icono-dermocosmetico {
  width: 90px;
  height: 90px; }
body .cardsGrid .card__icon svg.icono-profesionalidad {
  width: 84px;
  height: 84px; }
body .cardsGrid .card__icon svg.icono-personalizado {
  width: 122px;
  height: 122px; }
body .cardsGrid .card__icon svg.icono-tick {
  width: 90px;
  height: 90px; }
body .cardsGrid .card__icon svg.icono-dosificacion {
  width: 80px;
  height: 80px; }
body .cardsGrid .card__icon svg.icono-mortero {
  width: 90px;
  height: 90px; }
body .cardsGrid .card__icon svg.icono-tabaco {
  width: 80px;
  height: 80px; }
body .cardsGrid .card__icon svg.icono-biomedico {
  width: 80px;
  height: 80px; }
body .cardsGrid .card__icon svg.icono-cosmetica2 {
  width: 90px;
  height: 90px; }
body .cardsGrid .card__icon svg.icono-naturaleza {
  width: 80px;
  height: 80px; }
body .cardsGrid .card__icon svg.icono-bucodental {
  width: 80px;
  height: 80px; }
body .cardsGrid .card__icon svg.icono-reloj {
  width: 90px;
  height: 90px; }
body .cardsGrid .card__icon svg.icono-andador {
  background-color: #6ebb2e;
  border-radius: 50%;
  width: 90px;
  height: 90px; }

.ecofarmacia {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #059669 100%);
  color: var(--color-white); }

.ecofarmacia-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  text-align: center; }
  @media (min-width: 769px) {
    .ecofarmacia-content {
      flex-direction: row;
      text-align: left; } }

.ecofarmacia-badge {
  flex-shrink: 0;
  text-align: center; }
  .ecofarmacia-badge h3 {
    font-size: 1.5rem; }

.badge-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .badge-icon svg {
    width: 60px;
    height: 60px; }
  @media (min-width: 769px) {
    .badge-icon {
      width: 120px;
      height: 120px; }
      .badge-icon svg {
        width: 70px;
        height: 70px; } }

.ecofarmacia-text h2 {
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: var(--spacing-sm);
  color: #f8fafc; }
  @media (min-width: 481px) {
    .ecofarmacia-text h2 {
      font-size: 2rem; } }
.ecofarmacia-text p {
  font-size: 1.1rem;
  line-height: 1.48;
  color: #fff; }

.servicios {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light); }

.section-title {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  color: var(--color-dark); }
  @media (min-width: 481px) {
    .section-title {
      font-size: 2.5rem; } }

.sobre-nosotros {
  padding: var(--spacing-xl) 0; }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center; }
  @media (min-width: 769px) {
    .sobre-grid {
      grid-template-columns: 1fr 1fr; } }

.sobre-text h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark); }
.sobre-text p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray);
  font-size: 1.1rem; }

.sobre-image {
  width: 100%; }

.contacto {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg); }
  @media (min-width: 769px) {
    .contacto-grid {
      grid-template-columns: 1fr 1fr; } }

.info-item.homeTimetable {
  display: grid; }

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md); }

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-dark); }
.info-item p {
  color: var(--color-gray); }

.info-item-tels p a {
  color: var(--color-gray);
  text-decoration: none; }

.mapa-placeholder {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-gray);
  color: var(--color-gray); }

@media (max-width: 480px) {
  .hero {
    min-height: 400px; } }

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem; } }

.contacto-page {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl); }
  @media (min-width: 769px) {
    .contacto-grid {
      grid-template-columns: 1fr 1fr; } }

.contacto-info-section h2,
.mapa-section h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
  line-height: 1.1; }

.info-item {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow); }

.info-item-block {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px; }
  .info-item-block:last-child {
    margin-left: auto;
    margin-right: 10px; }

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary); }
  .info-icon svg {
    width: 24px;
    height: 24px; }

.info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-dark); }
.info-text p {
  color: var(--color-gray);
  line-height: 1.6; }
.info-text a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600; }

.horarios-section {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: var(--spacing-md); }
  .horarios-section h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark); }
  .horarios-section p {
    line-height: 1.1;
    margin-top: 12px;
    font-size: 1rem; }

.horario-item {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--color-light); }
  .horario-item:last-child {
    border-bottom: none; }

.dia {
  font-weight: 500;
  color: var(--color-dark); }

.hora {
  color: var(--color-gray);
  font-weight: 600; }

.redes-sociales {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: var(--spacing-md); }
  .redes-sociales h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark); }
  .redes-sociales p {
    font-size: 1.1rem;
    line-height: 1.3; }

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center; }
  @media (min-width: 769px) {
    .social-icons {
      justify-content: flex-start; } }

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease; }
  .social-icon svg {
    width: 22px;
    height: 22px; }
  .social-icon:hover {
    transform: scale(1.1); }
  .social-icon.facebook {
    background: #1877f2; }
  .social-icon.instagram {
    background: #e4405f; }
  .social-icon.twitter {
    background: #1da1f2; }
  .social-icon.youtube {
    background: #ff0000; }

.mapa-container {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px; }
  .mapa-container iframe {
    width: 100%;
    height: 100%;
    display: block; }

.mapa-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  color: var(--color-gray); }
  .mapa-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm); }

.contacto-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }

.como-llegar-info {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px; }

.como-llegar-info ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem; }

.como-llegar-info li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem; }

.como-llegar-info li::before {
  content: "🚗";
  position: absolute;
  left: 0; }

.como-llegar-info li:nth-child(1)::before {
  content: "🚌"; }

.como-llegar-info li:nth-child(3)::before {
  content: "🚶"; }

.horario-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0; }

.horario-item:last-child {
  border-bottom: none; }

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem; }

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease; }

.social-icon:hover {
  transform: translateY(-4px); }

.social-icon.facebook {
  background: #1877f2;
  color: white; }

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white; }

.social-icon.linkedin {
  background: #0077b5;
  color: white; }

.social-icon svg {
  width: 24px;
  height: 24px; }

.cta-contacto {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-radius: 12px;
  margin: 3rem 0; }

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  color: var(--color-white);
  padding: var(--spacing-lg) 0;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center; }

.page-hero-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  line-height: 1.1; }
  @media (min-width: 769px) {
    .page-hero-title {
      font-size: 3rem; } }

.page-hero-subtitle {
  font-size: 1.25rem; }

.servicios-page {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light); }

.servicios-intro {
  text-align: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
  color: var(--color-gray);
  padding: 0 1em; }
  .servicios-intro p a {
    color: var(--color-primary);
    text-decoration: none; }
  @media (min-width: 769px) {
    .servicios-intro {
      padding: 0 4em; } }

.promociones-page {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light); }

.promociones-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
  color: var(--color-gray);
  line-height: 1.8; }

.promoFeatures__title {
  text-align: center;
  font-size: 2rem;
  margin: 0 auto 24px; }

.promociones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl); }
  @media (min-width: 769px) {
    .promociones-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }

.promo-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
  min-height: 200px;
  display: flex;
  align-items: center; }
  .promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); }
  .promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg); }
  .promo-banner h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 700; }
  .promo-banner p {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95; }

.banner-secondary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }

.banner-green {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #059669 100%); }

.banner-content {
  position: relative;
  z-index: 1; }

.banner-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  backdrop-filter: blur(10px); }

.banner-validity {
  display: inline-block;
  font-size: 0.85rem;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 4px 10px;
  border-radius: 4px; }

.promo-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md); }

.info-card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center; }
  .info-card svg {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm); }
  .info-card h4 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs); }
  .info-card p {
    color: var(--color-gray);
    font-size: 0.95rem; }

.club-welnia-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0; }
  .club-welnia-info h2 {
    margin: 0 0 4px;
    text-decoration: underline; }

.club-welnia-info ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 24px 20px; }

.club-welnia-info li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem; }

.club-welnia-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5f2d;
  font-weight: bold; }

.cta-promociones {
  text-align: center;
  padding: 2rem;
  background: #e8f5e9;
  border-radius: 8px;
  margin: 2rem 0; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem; }
  .cta-buttons a {
    background-color: #7ded91; }

.quienes-somos-page {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light); }

.intro-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  align-items: center; }
  @media (min-width: 1025px) {
    .intro-section {
      grid-template-columns: 1fr 1fr; } }

.intro-content h2 {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md); }
  @media (min-width: 769px) {
    .intro-content h2 {
      font-size: 2.5rem; } }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin: 0 0 20px; }

.intro-image,
.historia-image,
.ecofarmacia-image {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow); }

.historia-section {
  margin-bottom: var(--spacing-xl); }
  .historia-section h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center; }
    @media (min-width: 769px) {
      .historia-section h2 {
        font-size: 2.5rem; } }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center; }
  @media (min-width: 1025px) {
    .historia-grid {
      grid-template-columns: 1fr 1fr; } }

.historia-image {
  order: -1; }
  @media (min-width: 1025px) {
    .historia-image {
      order: 0; } }

.historia-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin: 0 0 20px; }

.valores-section {
  margin-bottom: var(--spacing-xl); }
  .valores-section h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center; }
    @media (min-width: 769px) {
      .valores-section h2 {
        font-size: 2.5rem; } }

.cta-visita {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  color: white;
  padding: 8px 10px 22px;
  border-radius: var(--border-radius);
  text-align: center; }
  .cta-visita h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white; }
    @media (min-width: 769px) {
      .cta-visita h2 {
        font-size: 2.5rem; } }
  .cta-visita p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    color: white; }
  @media (min-width: 768px) {
    .cta-visita {
      padding: var(--spacing-xl); } }

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center; }
  @media (min-width: 769px) {
    .cta-buttons {
      flex-direction: row;
      flex-wrap: wrap; } }

.btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  max-width: 300px; }
  @media (min-width: 769px) {
    .btn {
      width: auto;
      max-width: none; } }

.btn-primary {
  background: white;
  color: var(--color-primary); }
  .btn-primary:hover {
    background: var(--color-light);
    transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white; }
  .btn-secondary:hover {
    background: white;
    color: var(--color-primary); }

.videoblog-page {
  background-color: var(--color-light); }

.video-filters {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  overflow-x: auto;
  padding-bottom: var(--spacing-xs); }

.filter-chip {
  padding: var(--spacing-xs) var(--spacing-sm);
  border: 2px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.95rem; }
  .filter-chip:hover {
    background-color: rgba(37, 99, 235, 0.1); }
  .filter-chip.active {
    background-color: var(--color-primary);
    color: var(--color-white); }

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  padding: 0 0 30px; }
  @media (min-width: 769px) {
    .videos-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } }

.video-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; }
  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg); }
    .video-card:hover .play-button {
      transform: translate(-50%, -50%) scale(1.1); }

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%); }

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
  transition: all 0.3s ease; }
  .play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px; }

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600; }

.video-info {
  padding: var(--spacing-sm); }

.video-title {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4; }

.video-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--color-gray); }

.video-source {
  font-weight: 500; }

.videos-intro {
  text-align: center;
  padding: 20px 0 30px;
  color: var(--color-gray); }
  .videos-intro__title {
    padding: 0 0 4px;
    text-decoration: underline; }

/*# sourceMappingURL=main.css.map */
