/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Header styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  
  /* Logo styles */
  .logo a {
    display: flex;
    align-items: center;
    margin-left: 30px;
  }
  
  .logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
  }
  
  
  /* Header right section social */
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: -330px;
  }
  
  /* Social icons */
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s;
  }
  
  .social-icons a:hover {
    background-color: #333;
    color: #fff;
  }
  /*Location button, top left corner*/
  .header-left{
    display: flex;
    align-items: left;
    margin-left: -350px;
  }
  
  .button {
    --width: 100px;
    --height: 35px;
    --tooltip-height: 35px;
    --tooltip-width: 90px;
    --gap-between-tooltip-to-button: 18px;
    --button-color: #333;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    background: var(--button-color);
    position: relative;
    text-align: center;
    border-radius: 0.45em;
    font-family: "Arial";
    transition: background 0.3s;
  }
  
  .button::before {
    position: absolute;
    content: attr(data-tooltip);
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: #555;
    font-size: 0.9rem;
    color: #fff;
    border-radius: .25em;
    line-height: var(--tooltip-height);
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
    left: calc(50% - var(--tooltip-width) / 2);
  }
  
  
  
  .text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-wrapper,.text,.icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
  }
  
  .text {
    top: 0
  }
  
  .text,.icon {
    transition: top 0.5s;
  }
  
  
  .button:hover {
    background: #5a4a42;
  }
  
  
  
  /* Account links */
  .account-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .account-links a {
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .account-links a:hover {
    color: #b88e65;
  }
  
  .cart-icon {
    font-size: 18px;
  }
  
  
  /* Header scroll effect */
  .header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  
  /* Hero section */
  .hero {
    display: flex;
    height: 100vh;
    width: 100%;
  }
  
  .hero-left {
    width: 50%;
    height: 100%;
    background-color: #e9b8a8; /* Peach/salmon color from the reference */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
  }
  
  .hero-content {
    max-width: 500px;
  }
  
  .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #5a4a42;
    margin-bottom: 20px;
    display: block;
  }
  
  .title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    color: #3d3d3d;
    margin-bottom: 40px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #5a4a42;
    color: #5a4a42;
    font-size: 16px;
    transition: all 0.3s;
  }
  
  .cta-button:hover {
    background-color: #5a4a42;
    color: #fff;
  }
  
  .hero-right {
    width: 50%;
    position: relative;
    overflow: hidden;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Conocenos section styling  */
  
  .conc{
   width: 100%;
   height: 100%;
   background: #f8f6f2;
  }
  
  .about-section {
    padding: 100px 0;
    background-color: #f9f5f2;
    position: fixed;
  }
  
  
  .container-about{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
  }
  
  /* Left card with message */
  .about-card {
    flex: 2;
    margin: 100px;
    padding: 40px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
  }
  
  .section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b88e65;
    margin-bottom: 15px;
    display: block;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 25px;
  }
  
  .section-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
  }
  
  .text-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b88e65;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s;
  }
  
  .text-link:hover {
    gap: 15px;
    color: #5a4a42;
  }
  
  
  /* Carousel Styles */
  .carousel-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width:50vh;
    height: 20%;
    margin-right: -800px;
    margin-top: 75px;
    margin-bottom: 75px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }
  
  .carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  
  .carousel-prev,
  .carousel-next {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5a4a42;
    font-size: 14px;
    transition: all 0.3s;
  }
  
  .carousel-prev:hover,
  .carousel-next:hover {
    background-color: #fff;
    color: #b88e65;
  }
  
  .carousel-dots {
    display: flex;
    gap: 8px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .carousel-dot.active {
    background-color: #fff;
    transform: scale(1.2);
  }
  
  /* Services Section Styles - Improved UX */
  .services-section {
    padding: 100px 0;
    background-color: #f5f1e9; 
    position: relative;
    z-index: 3;
  }
  
  .services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  
  .section-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
  }

  .services-container{
    margin-left: 90px;
  }
  
  /* Services content wrapper */
  .services-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Services Navigation Menu Styles */
  .services-navigation {
    width: 280px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
  }
  
  .nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e9b8a8;
  }
  
  .services-menu {
    max-width: 100%;
  }
  
  /* Services container layout */
  .services-container {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
  }
  
  /* Selected category title */
  .selected-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9b8a8;
    display: none; /* Hidden by default */
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  /* Select category prompt */
  .select-category-prompt {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    font-size: 18px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  /* No services message */
  .no-services {
    text-align: center;
    padding: 30px;
    color: #666;
    font-style: italic;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  /* Category menu styles */
  .category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .category-menu li {
    margin-bottom: 5px;
  }
  
  /* First level items */
  .category-menu > li > a {
    display: block;
    padding: 10px 15px;
    color: #5a4a42;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
  }
  
  .category-menu > li > a:hover {
    background-color: #f5f1e9;
    color: #b88e65;
  }
  
  /* Second level items (subcategories) */
  .category-menu .category-menu {
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: none; /* Hide by default */
  }
  
  /* Show submenu when parent is open */
  .category-menu .open > .category-menu {
    display: block;
  }
  
  .category-menu .category-menu a {
    display: block;
    padding: 8px 15px;
    color: #666;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
  }
  
  .category-menu .category-menu a:hover {
    background-color: #f5f1e9;
    color: #b88e65;
  }
  
  /* Active category styling */
  .category-menu .active > a {
    background-color: #e9b8a8;
    color: #fff;
  }
  
  /* Indicator for items with children */
  .has-children > a::after {
    content: '\f107'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.3s;
  }
  
  .has-children.open > a::after {
    transform: rotate(180deg);
  }
  
  /* Service card styles */
  .service-card {
    background-color: #fff; 
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: #e9b8a8; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  
  .service-icon i {
    font-size: 28px;
    color: #fff;
  }
  
  .service-category {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .service-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e9b8a8;
  }
  
  .service-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
  }
  
  .service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0e9e2;
  }
  
  .service-list li:last-child {
    border-bottom: none;
  }
  
  .service-name {
    color: #5a4a42;
    font-size: 15px;
  }
  
  .service-price {
    font-weight: 500;
    color: #b88e65;
  }
  
  .service-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #5a4a42;
    color: #5a4a42;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
    margin-top: auto;
  }
  
  .service-button:hover {
    background-color: #5a4a42;
    color: #fff;
  }
  
  /* Ubicación Section Styles */
  .ubicacion-section {
      padding: 100px 0;
      background-color: #f9f5f2;
      position: relative;
      z-index: 2;
  }
  
  .ubicacion-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
  }
  
  .ubicacion-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
  }
  
  .ubicacion-map {
      flex: 1;
      min-width: 300px;
  }
  
  .map-container {
      width: 100%;
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .map-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .ubicacion-info {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 30px;
  }
  
  .ubicacion-card {
      background-color: #fff;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .ubicacion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .ubicacion-icon {
      width: 60px;
      height: 60px;
      background-color: #e9b8a8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
  }
  
  .ubicacion-icon i {
      font-size: 24px;
      color: #fff;
  }
  
  .ubicacion-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 600;
      color: #3d3d3d;
      margin-bottom: 15px;
  }
  
  .ubicacion-address {
      font-style: normal;
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 15px;
  }
  
  .ubicacion-link {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #b88e65;
      font-weight: 500;
      transition: all 0.3s;
  }
  
  .ubicacion-link:hover {
      gap: 15px;
      color: #5a4a42;
  }
  
  .ubicacion-city {
      text-align: center;
      padding: 20px;
  }
  
  .ubicacion-city h4 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 600;
      color: #3d3d3d;
      margin-bottom: 5px;
  }
  
  .ubicacion-city p {
      color: #666;
      font-size: 15px;
  }
  
  /* Footer Styles */
  .footer {
      background-color: #3d3d3d;
      color: #fff;
      padding-top: 80px;
  }
  
  .footer-top {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 60px;
  }
  
  .footer-logo {
      flex: 1;
      min-width: 250px;
  }
  
  .footer-logo h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
  }
  
  .footer-logo p {
      color: #ccc;
      line-height: 1.8;
      margin-bottom: 25px;
      max-width: 300px;
  }
  
  .footer-social {
      display: flex;
      gap: 15px;
  }
  
  .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: #fff;
      transition: all 0.3s;
  }
  
  .footer-social a:hover {
      background-color: #e9b8a8;
      transform: translateY(-3px);
  }
  
  .footer-links {
      flex: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
  }
  
  .footer-links-column {
      flex: 1;
      min-width: 150px;
  }
  
  .footer-links-column h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
  }
  
  .footer-links-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: #e9b8a8;
  }
  
  .footer-links-column ul {
      list-style: none;
      padding: 0;
  }
  
  .footer-links-column ul li {
      margin-bottom: 12px;
  }
  
  .footer-links-column ul li a {
      color: #ccc;
      transition: all 0.3s;
  }
  
  .footer-links-column ul li a:hover {
      color: #e9b8a8;
      padding-left: 5px;
  }
  
  .contact-info li {
      display: flex;
      align-items: center;
      gap: 10px;
  }
  
  .contact-info li i {
      color: #e9b8a8;
      font-size: 16px;
  }
  
  .footer-newsletter h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: #e9b8a8;
  }
  
  .footer-newsletter p {
      color: #ccc;
      margin-bottom: 20px;
  }
  
  .newsletter-form {
      display: flex;
      height: 46px;
  }
  
  .newsletter-form input {
      flex: 1;
      padding: 0 15px;
      border: none;
      background-color: rgba(255, 255, 255, 0.1);
      color: #fff;
      border-radius: 4px 0 0 4px;
  }
  
  .newsletter-form input::placeholder {
      color: #aaa;
  }
  
  .newsletter-form button {
      width: 46px;
      border: none;
      background-color: #e9b8a8;
      color: #fff;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      transition: all 0.3s;
  }
  
  .newsletter-form button:hover {
      background-color: #d9a898;
  }
  
  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 25px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
  }
  
  .copyright p {
      color: #aaa;
      font-size: 14px;
  }
  
  .footer-bottom-links {
      display: flex;
      gap: 20px;
  }
  
  .footer-bottom-links a {
      color: #aaa;
      font-size: 14px;
      transition: all 0.3s;
  }
  
  .footer-bottom-links a:hover {
      color: #e9b8a8;
  }
  
  /* Responsive styles */
  @media (max-width: 1400px){
    .container-about{
      margin-left: -100px;
    }

    .header-right {
      margin-right: -50px;
    }

    .header-left{
      margin-left: -50px;
    }
  }

  @media (max-width: 1199px) {
    .header-right {
        margin-right: -150px;
    }
    
    .header-left {
        margin-left: -150px;
    }
    
    .services-navigation {
        width: 250px;
    }
    
    .carousel-container {
        margin-right: -400px;
    }
  }
  
  @media (max-width: 992px) {
    .social-icons {
        gap: 10px;
    }
  
    .logo a {
        margin-left: 0;
    }
  
    .header-right {
        margin-right: 0;
    }
  
    .header-left{
        margin-left: 0;
    }
  
    .subtitle {
        margin-top: 90px;
    }
  
    .title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .carousel-container {
        width: 400px;
        margin-right: 0;
        margin-left: 0;
    }
  
    .container-about {
        width: 100%;
        flex-direction: column;
        margin-left: 0;
    }
    
    .about-card {
        margin: 50px 20px;
        height: auto;
    }
    
    .services-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-navigation {
        width: 100%;
        position: static;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ubicacion-content {
        flex-direction: column;
    }
    
    .ubicacion-map, .ubicacion-info {
        width: 100%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-logo, .footer-links, .footer-newsletter {
        width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .header .container {
        height: 70px;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100%;
    }
    
    .hero-left {
        padding: 100px 20px 60px;
    }
    
    .hero-right {
        height: 50vh;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        width: 90%;
        margin: 20px auto;
    }
    
    .selected-category-title {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .account-links {
        gap: 10px;
    }
    
    .title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-category {
        font-size: 22px;
    }
    
    .selected-category-title {
        font-size: 22px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
    }
    
    .ubicacion-card {
        padding: 25px 20px;
    }
    
    .ubicacion-icon {
        width: 50px;
        height: 50px;
    }
    
    .ubicacion-icon i {
        font-size: 20px;
    }
    
    .ubicacion-title {
        font-size: 20px;
    }
  }

  @media (max-width: 460px) {
    .services-container{
      margin: auto;
    }
  }