:root {
    --primary: #FF385C;
    --secondary: #FF385C;
    --accent: #00A699;
    --light: #F7F7F7;
    --dark: #222222;
    --font-primary: Circular, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;


    --evecto-primary: #FF385C;
    --evecto-price-color: #FF385C; 
    --evecto-gray: #f8f9fa; 


    --primary-color: #FF385C;
    --primary-hover: #E31C5F;
    --text-primary: #222222;
    --text-secondary: #717171;
    --text-light: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7F7;
    --border-color: #DDDDDD;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);    

}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

  }
  .visuallyhidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
  }
  body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: white;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #DDDDDD;
    padding: 16px 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header {
    padding: 12px;
  }
  .logo {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
  }
  
  .logo svg {
    height: 32px;
    width: auto;
  }
  
  .search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #DDDDDD;
    border-radius: 40px;
    padding: 8px 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .search-bar:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
  }
  
  .search-bar input {
    border: none;
    outline: none;
    padding: 0 8px;
    font-size: 14px;
    width: 100%;
  }
  
  .search-icon {
    color: var(--primary);
  }
  
  .menu-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 5px 5px 12px;
    border: 1px solid #DDDDDD;
    border-radius: 21px;
    cursor: pointer;
    background: white;
  }
  
  .menu-button:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
  }
  
  .user-icon {
    background: #717171;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 60px;
    right: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    padding: 8px 0;
    display: none;
    z-index: 1000;
  }
  
  .dropdown-menu.active {
    display: block;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--dark);
  }
  
  .dropdown-menu a:hover {
    background: var(--light);
  }
  
  .main-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
  }
  
  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-main {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .listing-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
  }
  
  .listing-details h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .host-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
  }
  
  .booking-card {
    position: sticky;
    top: 80px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  
  .price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .booking-dates {
    border: 0px solid #ddd;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  
  .reserve-button {
    width: 100%;
    padding: 14px;
    background: #FF385C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .options-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #ddd;
  }
  
  .options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
  }
  
  .options-grid2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 32px;
  }


  .option-card {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: transform 0.2s;
    cursor: pointer;
  }
  
  .option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .option-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #222;
  }
  
  .option-card p {
    color: #717171;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .icon-container {
    width: 48px;
    height: 48px;
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .icon-container i {
    font-size: 24px;
    color: #222;
  }
  
.ratings-section {
  width: 100%;
  overflow-x: hidden;
}
  
  .ratings-grid {
    display: grid;
    grid-template-columns: auto repeat(6, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  
  .rating-column {
    text-align: center;
  }
  
  .rating-column h4 {
    margin-bottom: 16px;
    color: #222;
    font-size: 14px;
  }
  
  .rating-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
  }
  
  .stars-column {
    text-align: right;
    padding-right: 20px;
    font-weight: bold;
  }
  
  .rating-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  
  .rating-bar {
    height: 4px;
    background: #FF385C;
    border-radius: 2px;
  }
  
  .reviews-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #ddd;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  
  .review-card {
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 24px;
  }
  
  .review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  


          .reviewer-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid #e0e0e0;
            transition: border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;            
        }

  
  .reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .review-date {
    color: #717171;
    font-size: 14px;
  }
  
  .review-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    color: #FF385C;
  }
  
  .review-content {
    color: #222;
    line-height: 1.5;
    font-size: 14px;
  }
  
  .host-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #ddd;
    text-align: justify;
  }
  
  .host-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-top: 32px;
  }
  
  .host-left {
    text-align: center;
  }
  
  .host-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #DDDDDD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    overflow: hidden;    
    margin: 0 auto 16px;
  }
  
.host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}  

  .host-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 16px 0;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #FF385C;
  }
  
  .stat-label {
    font-size: 14px;
    color: #717171;
  }
  
  .host-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
  }
  
  .badge {
    padding: 4px 12px;
    background: #3b3a3a82;
    border-radius: 20px;
    font-size: 14px;
  }
  
    .calendar {
            border: 1px solid #e1e5e9;
            border-radius: 12px;
            padding: 16px;
            background: white;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            max-width: 400px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding: 0 4px;
        }
        
        .calendar-header button {
            background: #f8f9fa;
            border: 1px solid #e1e5e9;
            border-radius: 8px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #495057;
            transition: all 0.2s ease;
        }
        
        .calendar-header button:hover {
            background: #e9ecef;
            border-color: #ced4da;
        }
        
        .calendar-header button:active {
            transform: scale(0.95);
        }
        
        #currentMonth {
            font-size: 16px;
            font-weight: 600;
            color: #212529;
        }
        
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 8px;
            text-align: center;
        }
        
        .weekday {
            font-size: 12px;
            font-weight: 500;
            color: #6c757d;
            padding: 8px 0;
            text-transform: uppercase;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            text-align: center;
        }
        
        .calendar-day {
            padding: 10px 0;
            cursor: pointer;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 400;
            color: #212529;
            transition: all 0.2s ease;
            position: relative;
            border: 1px solid transparent;
        }
        
        .calendar-day:hover:not(.disabled):not(.selected) {
            background: #f8f9fa;
            border-color: #e1e5e9;
            transform: translateY(-1px);
        }
        
        .calendar-day.selected {
            background: #FF385C;
            color: white;
            font-weight: 600;
            border-color: #FF385C;
            box-shadow: 0 2px 6px rgba(255, 56, 92, 0.3);
        }
        
        .calendar-day.today {
            background: #e7f3ff;
            color: #0066cc;
            font-weight: 600;
            border: 1px solid #b3d9ff;
        }
        
        .calendar-day.disabled {
            color: #ced4da;
            cursor: not-allowed;
            background: #f8f9fa;
        }
        
        .calendar-day.other-month {
            color: #adb5bd;
        }
        
        /* Responsive para móviles */
        @media (max-width: 480px) {
            .calendar {
                padding: 12px;
                border-radius: 10px;
                margin: 8px;
            }
            
            .calendar-header {
                margin-bottom: 12px;
            }
            
            .calendar-header button {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            
            #currentMonth {
                font-size: 14px;
            }
            
            .weekday {
                font-size: 11px;
                padding: 6px 0;
            }
            
            .calendar-day {
                padding: 8px 0;
                font-size: 13px;
                border-radius: 6px;
            }
        }
        
        @media (max-width: 360px) {
            .calendar {
                padding: 8px;
            }
            
            .calendar-day {
                padding: 6px 0;
                font-size: 12px;
            }
            
            .weekday {
                font-size: 10px;
            }
        }
  
  .gallery-carousel {
    display: none;
    position: relative;
    
    height: 300px;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    
    height: 100%;
    transition: transform 0.3s ease-in-out;



  }

  .carousel-slides {


  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;    

  }
  
  .carousel-buttons {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }
  
  .carousel-dot.active {
    background: white;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  

  .location-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #ddd;
  }
  
  .location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  
  .location-details {
    padding-right: 24px;
  }
  
  .location-details h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .location-details p {
    color: #717171;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
  }
  


  @media (max-width: 1200px) {
    .main-content,
    .options-section,
    .ratings-section,
    .reviews-section,
    .host-section,
    .location-section  {
      max-width: 95%;
      padding: 16px;
    }
  }
  
  @media (max-width: 992px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .listing-info {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .options-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .ratings-grid {
      grid-template-columns: auto repeat(3, 1fr);
      gap: 10px;
    }
    
    .rating-column {
      font-size: 12px;
    }
    
    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .host-profile {
      grid-template-columns: 1fr;
      gap: 24px;
      text-align: center;
    }
    
    .host-right {
      text-align: justify;
    }

    .fctl {
      display: grid; 
      gap: 32px;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      flex-direction: column;
      gap: 16px;
      padding: 16px;
    }
    
    
    .gallery {
      display: none;
    }
    
    .gallery-carousel {
      display: block;
    }
    
    .gallery-main {
      grid-column: auto;
      grid-row: auto;
    }
    
    .options-grid {
      grid-template-columns: 1fr;
    }

  .options-grid2 {
  display: grid;
  grid-template-columns: repeat(5,  1fr);;
  gap: 12px;
  width: 100%;
}

/* Para pantallas de 800px específicamente */
@media screen and (max-width: 1112px) {
  .options-grid2 {
    grid-template-columns: repeat(4,  1fr);;
    gap: 10px;
  }
}

/* Para tablets */
@media screen and (max-width: 768px) {
  .options-grid2 {
    grid-template-columns: repeat(3,  1fr);
    gap: 8px;
  }
}

/* Para móviles */
@media screen and (max-width: 600px) {
  .options-grid2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Para móviles muy pequeños */
@media screen and (max-width: 480px) {
  .options-grid2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}


    .ratings-grid {
      grid-template-columns: auto repeat(2, 1fr);
      font-size: 12px;
    }
    
    .amenities {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar {
      font-size: 14px;
    }
    
    .calendar-day {
      padding: 4px;
    }
    
    .host-stats {
      flex-wrap: wrap;
    }
    
    .host-badges {
      justify-content: center;
    }
    
    .location-content {
      grid-template-columns: 1fr;
    }
    .location-details {
      padding-right: 0;
    }
    
    .map-container {
      height: 300px;
    }

    .fctl {
      display: grid; 
      gap: 32px;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .user-menu {
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .ratings-grid {
      grid-template-columns: auto 1fr;
    }
    
    .rating-column:not(:nth-child(1)):not(:nth-child(2)) {
      display: none;
    }
    
    .review-card {
      padding: 16px;
    }
    
    .review-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .host-stats {
      flex-direction: column;
      align-items: center;
    }
    
    .calendar {
      font-size: 12px;
    }
    
    .calendar-day {
      padding: 2px;
    }

    .fctl {
      display: grid; 
      gap: 32px;
      grid-template-columns: repeat(2, 1fr);
    }
  }


.faq-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid #ddd;
}

.faq-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.active {
  padding: 16px 24px;
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.active {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 16px;
  }
  
  .faq-question {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
  }
  
  .faq-answer.active {
    padding: 12px 16px;
  }
}

.show-all-photos {
  display: block;
  width: 100%;
  max-width: 1120px;
  margin: 16px auto;
  padding: 12px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.show-all-photos:hover {
  background-color: #f7f7f7;
}

@media (max-width: 768px) {
  .show-all-photos {
    margin: 12px auto;
    font-size: 14px;
  }
}

.total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.total-price2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

/* Asegurar que todos los elementos se ajusten al viewport */
* {
    box-sizing: border-box;
}

/* Media query específica para dispositivos de 800px de ancho */
@media screen and (max-width: 800px) {
    body, .container, .main-content {
        width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ajustar elementos que puedan estar causando el desbordamiento */
    .gallery, .gallery-carousel, .listing-info, .amenities, .location-content {
        max-width: 100%;
    }
    
    /* Asegurar que las imágenes no excedan el ancho */
    img {
        max-width: 100%;
        height: auto;
    }
}


       .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            text-decoration: none;
            color: white;
            font-size: 30px;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
            background-color: #128C7E;
            color: white;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 26px;
            }
        }

        