body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: white;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Navbar styles */
.navbar {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #333;
}

.nav-link {
  font-weight: 500;
  color: #666;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #333;
}

.nav-link.active {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Main content */
.main-content {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

/* Profile section */
.profile-section {
  margin-bottom: 3rem;
  text-align: center;
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f8f9fa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  width: 100%;
}

.btn-link {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-link:hover {
  background-color: #333;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .profile-img {
    width: 180px;
    height: 180px;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .social-links {
    max-width: 280px;
  }
  
  .btn-link {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .profile-img {
    width: 160px;
    height: 160px;
  }
  
  .btn-link {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Estilos para la página de asesoría */
.asesoria-container {
  min-height: calc(100vh - 80px);
  padding: 40px 0;
}

.asesoria-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 20px;
}

.asesoria-image {
  flex: 0 0 45%;
  position: relative;
}

.asesoria-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.asesoria-info {
  flex: 1;
  text-align: left;
  padding-top: 20px;
}

.asesoria-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.asesoria-duration {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.asesoria-price {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 10px;
}

.asesoria-platform {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.asesoria-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 40px;
  transition: background-color 0.3s ease;
}

.asesoria-btn:hover {
  background-color: #222;
}

.asesoria-description {
  margin-top: 30px;
}

.asesoria-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.asesoria-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.asesoria-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asesoria-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}

.asesoria-benefits li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

/* Responsive design para asesoría */
@media (max-width: 768px) {
  .asesoria-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .asesoria-image {
    flex: none;
    width: 100%;
  }
  
  .asesoria-info {
    text-align: center;
  }
  
  .asesoria-title {
    font-size: 2rem;
  }
  
  .asesoria-duration {
    font-size: 1.3rem;
  }
}

/* Estilos para la página de blog */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.blog-title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.blog-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}

.blog-card-icon {
  width: 60px;
  height: 60px;
  background-color: #6c757d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.blog-card-icon i {
  font-size: 24px;
  color: white;
}

.blog-card-icon .dollar-sign {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.blog-card-icon .bi-arrow-right {
  font-size: 16px;
  margin: 0 5px;
}

.blog-card-content {
  flex: 1;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-meta {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Responsive design para blog */
@media (max-width: 768px) {
  .blog-container {
    padding: 40px 15px;
  }
  
  .blog-title {
    font-size: 2.5rem;
  }
  
  .blog-description {
    font-size: 1.1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-card {
    padding: 25px;
  }
  
  .blog-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-description {
    font-size: 1rem;
  }
  
  .blog-card {
    padding: 20px;
  }
  
  .blog-card-icon {
    width: 50px;
    height: 50px;
  }
  
  .blog-card-icon i {
    font-size: 20px;
  }
}

/* Estilos para páginas de artículos del blog */
.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-post {
  background: white;
}

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

.blog-post-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.blog-post-meta {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.blog-post-image {
  margin: 40px 0;
  text-align: center;
}

.featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
  line-height: 1.8;
  color: #333;
}

.blog-post-content h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin: 40px 0 20px 0;
  padding-top: 20px;
}

.blog-post-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.blog-post-content p:first-of-type {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

/* Responsive design para artículos del blog */
@media (max-width: 768px) {
  .blog-post-container {
    padding: 40px 15px;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-post-content p {
    font-size: 1rem;
  }
  
  .blog-post-content p:first-of-type {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.3rem;
  }
  
  .blog-post-content p {
    font-size: 0.95rem;
  }
  
  .blog-post-content p:first-of-type {
    font-size: 1rem;
  }
}

/* Estilos para el modal de asesoría */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  color: #666;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.close-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.ecommerce-booking-modal {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.ecommerce-booking-modal__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.ecommerce-booking-modal__info {
  padding: 40px 35px 20px;
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.ecommerce-booking-modal__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.ecommerce-booking-modal__icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ecommerce-booking-modal__text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ecommerce-booking-modal__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ecommerce-booking-modal__text {
  font-size: 1rem;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.ecommerce-booking-modal__availability {
  flex: 1;
  padding: 30px 35px;
  overflow-y: auto;
  background-color: white;
}

.ecommerce-booking-modal__time-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-align: center;
}

.ecommerce-booking-modal__calendar-wrapper {
  margin-bottom: 35px;
}

.ecommerce-booking-modal-calendar {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  max-width: 400px;
  margin: 0 auto;
}

.dp__main {
  font-family: inherit;
}

.dp__menu {
  border: none;
  box-shadow: none;
}

.dp__menu_inner {
  padding: 0;
}

.dp__month_year_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fafafa;
}

.dp__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 500;
}

.dp__btn:hover {
  background-color: #e8e8e8;
  color: #1a1a1a;
}

.dp__month_year_wrap {
  display: flex;
  gap: 15px;
}

.dp__month_year_select {
  font-weight: 600;
  color: #1a1a1a;
}

.dp__calendar_header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
}

.dp__calendar_header_item {
  padding: 15px 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: lowercase;
}

.dp__calendar_header_separator {
  height: 1px;
  background-color: #e5e5e5;
}

.dp__calendar {
  padding: 15px;
}

.dp__calendar_row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.dp__calendar_item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dp__calendar_item:hover {
  background-color: #f0f0f0;
}

.dp__cell_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #4a4a4a;
  border-radius: 8px;
  font-weight: 500;
}

.dp__cell_disabled {
  color: #c0c0c0;
  cursor: not-allowed;
}

.dp__active_date .dp__cell_inner {
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.dp__today .dp__cell_inner {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 600;
  border: 2px solid #2563eb;
}

.ecommerce-booking-modal__time-wrapper {
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
  text-align: center;
}

.ecommerce-booking-modal__selected-day {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.ecommerce-booking-modal__time-slot-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ecommerce-booking-modal__time-slot {
  padding: 15px 30px;
  border: 2px solid #e5e5e5;
  background-color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.05rem;
  color: #4a4a4a;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
  text-align: center;
}

.ecommerce-booking-modal__time-slot:hover {
  border-color: #2563eb;
  background-color: #f8fafc;
  color: #2563eb;
}

.ecommerce-booking-modal__time-slot--selected {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.ecommerce-booking-modal__buttons {
  display: flex;
  gap: 20px;
  padding: 35px;
  border-top: 1px solid #e5e5e5;
  background-color: #fafafa;
}

.ecommerce-booking-modal__button {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
}

.ecommerce-booking-modal__button:first-child {
  background-color: white;
  color: #4a4a4a;
  border: 2px solid #e5e5e5;
}

.ecommerce-booking-modal__button:first-child:hover {
  background-color: #f8f8f8;
  border-color: #d0d0d0;
}

.ecommerce-booking-modal__button--save {
  background-color: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.ecommerce-booking-modal__button--save:hover:not(:disabled) {
  background-color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.ecommerce-booking-modal__button--save:disabled {
  background-color: #c0c0c0;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Responsive design para el modal */
@media (max-width: 768px) {
  .modal {
    padding: 15px;
  }
  
  .ecommerce-booking-modal {
    max-height: 90vh;
    border-radius: 12px;
  }
  
  .ecommerce-booking-modal__info {
    padding: 25px 20px 15px;
  }
  
  .ecommerce-booking-modal__icons {
    flex-direction: column;
    gap: 15px;
  }
  
  .ecommerce-booking-modal__availability {
    padding: 25px 20px;
  }
  
  .ecommerce-booking-modal__buttons {
    padding: 25px 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .ecommerce-booking-modal__time-slot-wrapper {
    gap: 15px;
  }
  
  .ecommerce-booking-modal__time-slot {
    min-width: 70px;
    padding: 12px 20px;
  }
  
  .dp__month_year_row {
    padding: 20px 25px;
  }
  
  .dp__calendar {
    padding: 12px;
  }
}


