/* COMPONENTS.CSS - Arquivo completo com ajustes */

/* ==== BOTÕES ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--primary-color, #d4af37);
    color: var(--light-text, #fff);
  }
  
  .btn:hover {
    background-color: var(--primary-color-dark, #b89323);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color, #d4af37);
    color: var(--primary-color, #d4af37);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color, #d4af37);
    color: var(--light-text, #fff);
  }
  
  .btn i {
    margin-right: 0.5rem;
  }
  
  /* ==== PRICING POLICIES ==== */
  .pricing-policies {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--card-background, #f8f9fa);
    border-radius: 8px;
    border: 1px solid var(--border-color, #e9ecef);
  }
  
  .pricing-info h3 {
    color: var(--primary-color, #d4af37);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
  }
  
  .pricing-info h3 i {
    margin-right: 0.5rem;
  }
  
  .policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .policy-item {
    background-color: var(--background-color, #fff);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color, #e9ecef);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .policy-item h4 {
    color: var(--text-color, #333);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
  
  .policy-item h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color, #d4af37);
  }
  
  .policy-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .policy-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color, #e9ecef);
    color: var(--text-color, #666);
  }
  
  .policy-item li:last-child {
    border-bottom: none;
  }
  
  .policy-item li strong {
    color: var(--primary-color, #d4af37);
    font-weight: 600;
  }
  
  .price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted, #666);
    margin-top: 0.25rem;
  }
  
  /* ==== WHATSAPP FLUTUANTE ==== */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
  }
  
  .whatsapp-float:hover {
    background-color: #20b858;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
  }
  
  @keyframes whatsapp-pulse {
    0% {
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
  }
  
  /* Ajuste para não sobrepor o chatbot */
  .chatbot-icon {
    bottom: 90px !important;
  }
  
  /* ==== CARROSSEL INOVADOR DE QUARTOS ==== */
  .rooms-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .rooms-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
  }
  
  .room-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .room-slide.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  .room-slide.prev {
    transform: translateX(-100%);
  }
  
  .room-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 2rem;
    align-items: center;
  }
  
  .room-visual {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .room-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .room-slide:hover .room-main-image {
    transform: scale(1.05);
  }
  
  .room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  
  .room-slide:hover .room-overlay {
    transform: translateY(0);
  }
  
  .story-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .story-description {
    font-size: 1rem;
    opacity: 0.9;
  }

  /* ==== VERSÃO MOBILE DO CARROSSEL ==== */
  /* REMOVIDO - CONFLITO COM RESPONSIVE.CSS */
  
  @media (max-width: 480px) {
    .rooms-carousel-container {
      padding: 0.5rem;
      margin: 0 5px;
    }
    
    .rooms-carousel {
      min-height: 350px;
    }
    
    .room-visual {
      height: 200px;
    }
    
    .room-main-image {
      height: 200px;
    }
    
    .room-details {
      padding: 0.5rem;
    }
    
    .room-features {
      grid-template-columns: 1fr;
      gap: 0.3rem;
    }
    
    .room-pricing {
      text-align: center;
    }
    
    .price-main {
      font-size: 1.5rem;
    }
  }
  
  /* ==== HOTSPOTS INTERATIVOS ==== */
  .hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
  }
  
  .hotspot-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color, #d4af37);
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    position: relative;
  }
  
  .hotspot-dot.eco {
    background: #28a745;
  }
  
  .hotspot-dot.tech {
    background: #007bff;
  }
  
  .hotspot-dot.family {
    background: #e83e8c;
  }
  
  .hotspot-dot.safety {
    background: #6c757d;
  }
  
  .hotspot-dot.luxury {
    background: #6f42c1;
  }
  
  .hotspot-dot.space {
    background: #20c997;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
      transform: scale(1.2);
      box-shadow: 0 2px 20px rgba(212, 175, 55, 0.5);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
  }
  
  .hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
  }
  
  .hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
  }
  
  .hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
  }
  
  .hotspot-tooltip h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .hotspot-tooltip p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
  }
  
  /* ==== DETALHES DO QUARTO ==== */
  .room-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  
  .room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .room-type {
    background: var(--primary-color, #d4af37);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .sustainability-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .sustainability-badges span {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .eco-badge {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
  }
  
  .energy-badge {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
  }
  
  .smart-badge {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
  }
  
  .flex-badge {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
  }
  
  .family-badge {
    background: rgba(232, 62, 140, 0.1);
    color: #e83e8c;
    border: 1px solid rgba(232, 62, 140, 0.3);
  }
  
  .safety-badge {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
  }
  
  .luxury-badge {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
    border: 1px solid rgba(111, 66, 193, 0.3);
  }
  
  .space-badge {
    background: rgba(32, 201, 151, 0.1);
    color: #20c997;
    border: 1px solid rgba(32, 201, 151, 0.3);
  }
  
  .room-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color, #333);
    font-weight: 700;
  }
  
  .room-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted, #666);
    margin-bottom: 1.5rem;
  }
  
  .room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
  }
  
  .feature-item i {
    color: var(--primary-color, #d4af37);
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-weight: 500;
    color: var(--text-color, #333);
  }
  
  .room-pricing {
    margin-bottom: 1.5rem;
  }
  
  .price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #d4af37);
    margin-bottom: 0.5rem;
  }
  
  .price-period {
    font-size: 1rem;
    color: var(--text-muted, #666);
    font-weight: 400;
  }
  
  .price-note {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    margin-top: 0.25rem;
  }
  
  .price-sustainability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #28a745;
    margin-top: 0.5rem;
  }
  
  .price-sustainability i {
    color: #28a745;
  }
  
  /* ==== CONTROLES DO CARROSSEL ==== */
  .carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 15;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color, #d4af37);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .carousel-btn:hover {
    background: var(--primary-color, #d4af37);
    color: white;
    transform: scale(1.1);
  }
  
  .carousel-btn:active {
    transform: scale(0.95);
  }
  
  /* ==== INDICADORES ==== */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background: var(--primary-color, #d4af37);
    transform: scale(1.2);
  }
  
  .indicator:hover {
    background: var(--primary-color, #d4af37);
    transform: scale(1.1);
  }
  
  /* ==== THUMBNAILS ==== */
  .carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }
  
  .thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    min-width: 80px;
  }
  
  .thumbnail:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
  }
  
  .thumbnail.active {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
  }
  
  .thumbnail img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
  }
  
  .thumbnail.active img {
    border-color: var(--primary-color, #d4af37);
  }
  
  .thumbnail span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color, #333);
  }
  
  /* ==== RESPONSIVIDADE ==== */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .chatbot-container {
      width: calc(100% - 60px);
      right: 30px;
      left: 30px;
    }
    .rooms-carousel-container {
      padding: 1rem;
    }
    
    .rooms-carousel {
      height: auto;
    }
    
    .room-story {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .room-visual {
      height: 300px;
    }
    
    .room-details {
      padding: 1rem;
    }
    
    .room-features {
      grid-template-columns: 1fr;
    }
    
    .carousel-thumbnails {
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .thumbnail {
      min-width: 60px;
    }
    
    .thumbnail img {
      width: 50px;
      height: 35px;
    }
    
    .hotspot-tooltip {
      min-width: 150px;
      font-size: 0.8rem;
    }
  }
  
  /* ==== ANIMAÇÕES ESPECIAIS ==== */
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .room-slide.slide-in-right {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .room-slide.slide-in-left {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* ==== BADGE INCLUSO ==== */
  .included-badge {
    display: inline-block;
    background-color: #28a745;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .service-item.featured {
    position: relative;
    border: 2px solid var(--primary-color, #d4af37);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  }
  
  .service-item.featured::before {
    content: '⭐';
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color, #d4af37);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* ==== CARDS ==== */
  
  /* Ajuste do grid de quartos */
  .room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  
  /* Ajuste dos cards de quartos */
  .room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--card-bg, #fff);
  }
  
  .room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* Imagem do quarto */
  .room-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }
  
  .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .room-card:hover .room-image img {
    transform: scale(1.05);
  }
  
  /* Conteúdo do card */
  .room-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  /* Tipo de quarto (tag) */
  .room-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color, #d4af37);
    color: var(--light-text, #fff);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    align-self: flex-start;
  }
  
  /* Título do quarto */
  .room-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-text, #333);
  }
  
  /* Descrição do quarto */
  .room-description {
    margin-bottom: 1.25rem;
    color: var(--secondary-text, #666);
    line-height: 1.6;
    flex-grow: 1;
  }
  
  /* Características do quarto */
  .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .room-feature {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--secondary-text, #666);
  }
  
  .room-feature i {
    margin-right: 0.375rem;
    color: var(--accent-color, #d4af37);
  }
  
  /* Preço */
  .room-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-text, #333);
  }
  
  .room-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--secondary-text, #666);
  }
  
  /* Botões de ação */
  .room-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
  }
  
  /* ==== FORMULÁRIOS ==== */
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-text, #333);
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color, #ddd);
    border-radius: 4px;
    background-color: var(--input-bg, #fff);
    color: var(--primary-text, #333);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--primary-color, #d4af37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  }
  
  .form-control.error {
    border-color: var(--error-color, #e74c3c);
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group.half {
    flex: 1;
    margin-bottom: 0;
  }
  
  /* ==== ÍCONES DE CARACTERÍSTICAS ==== */
  .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color-light, rgba(212, 175, 55, 0.1));
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
    color: var(--accent-color, #d4af37);
  }
  
  .feature-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--primary-text, #333);
  }
  
  .feature-text p {
    margin: 0;
    color: var(--secondary-text, #666);
  }
  
  /* ==== CARDS DE SERVIÇOS ==== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--card-bg, #fff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-color-light, rgba(212, 175, 55, 0.1));
    margin-bottom: 1.5rem;
  }
  
  .service-icon i {
    font-size: 2rem;
    color: var(--accent-color, #d4af37);
  }
  
  .service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-text, #333);
  }
  
  .service-description {
    color: var(--secondary-text, #666);
    line-height: 1.6;
  }
  
  /* ==== GALERIA ==== */
  .gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1.25rem;
    background-color: transparent;
    border: 1px solid var(--border-color, #ddd);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-text, #666);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover {
    background-color: var(--accent-color-light, rgba(212, 175, 55, 0.1));
    color: var(--accent-color, #d4af37);
  }
  
  .filter-btn.active {
    background-color: var(--accent-color, #d4af37);
    border-color: var(--accent-color, #d4af37);
    color: var(--light-text, #fff);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 200px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color, #d4af37);
    color: var(--light-text, #fff);
    font-size: 1.25rem;
  }
  
  /* ==== CONTATO ==== */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color-light, rgba(212, 175, 55, 0.1));
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    font-size: 1.25rem;
    color: var(--accent-color, #d4af37);
  }
  
  .contact-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: var(--primary-text, #333);
  }
  
  .contact-text p, .contact-text address {
    margin: 0;
    color: var(--secondary-text, #666);
    font-style: normal;
    line-height: 1.6;
  }
  
  .contact-text a {
    color: var(--secondary-text, #666);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-text a:hover {
    color: var(--accent-color, #d4af37);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color-light, rgba(212, 175, 55, 0.1));
    color: var(--accent-color, #d4af37);
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background-color: var(--accent-color, #d4af37);
    color: var(--light-text, #fff);
    transform: translateY(-3px);
  }
  
  /* ==== NEWSLETTER ==== */
  .newsletter-form {
    display: flex;
    margin-top: 1rem;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color, #ddd);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background-color: var(--input-bg, #fff);
    color: var(--primary-text, #333);
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color, #d4af37);
  }
  
  .newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: var(--accent-color, #d4af37);
    color: var(--light-text, #fff);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-btn:hover {
    background-color: var(--primary-color-dark, #b89323);
  }
  
  /* ==== CHATBOT ==== */
  .chatbot-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
    backdrop-filter: blur(10px);
    color: var(--light-text, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .chatbot-icon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(212, 175, 55, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  
  .chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
    backdrop-filter: blur(10px);
    color: var(--light-text, #fff);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
  }
  
  .chatbot-header h3 {
    margin: 0;
    font-size: 1.125rem;
  }
  
  .chatbot-close {
    background: none;
    border: none;
    color: var(--light-text, #fff);
    font-size: 1.25rem;
    cursor: pointer;
  }
  
  .chatbot-messages {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
  }
  
  .message {
    max-width: 80%;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    line-height: 1.5;
  }
  
  .message p {
    margin: 0;
  }
  
  .message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
    backdrop-filter: blur(10px);
    color: var(--light-text, #fff);
    border-bottom-right-radius: 8px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-text, #333);
    border-bottom-left-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
  }
  
  .chatbot-form {
    display: flex;
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .chatbot-form input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-text, #333);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }
  
  .chatbot-form input:focus {
    outline: none;
    border-color: var(--primary-color, #d4af37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.95);
  }
  
  .chatbot-send {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(135deg, var(--accent-color, #d4af37), var(--primary-color-dark, #b89323));
    color: var(--light-text, #fff);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  }
  
  .chatbot-send:hover {
    background: linear-gradient(135deg, var(--primary-color-dark, #b89323), var(--accent-color, #d4af37));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  }
  
  /* Indicador de digitação */
  .typing-indicator p {
    display: flex;
    align-items: center;
  }
  
  .typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    background-color: var(--secondary-text, #666);
    border-radius: 50%;
    animation: typing 1s infinite ease-in-out;
  }
  
  .typing-indicator span:nth-child(1) {
    animation-delay: 0s;
  }
  
  .typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
    margin-right: 0;
  }
  
  @keyframes typing {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  /* ==== BACK TO TOP ==== */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color, #d4af37);
    color: var(--light-text, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top:hover {
    background-color: var(--primary-color-dark, #b89323);
    transform: translateY(-5px);
  }
  
  /* ==== RESPONSIVIDADE ==== */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    
    .chatbot-container {
      width: calc(100% - 60px);
      right: 30px;
      left: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .room-actions {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .room-actions .btn {
      width: 100%;
      text-align: center;
    }
    
    .form-row {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .gallery-filter {
      flex-direction: column;
      align-items: center;
    }
    
    .filter-btn {
      width: 100%;
      max-width: 250px;
    }
  }

  /* ==== MODERN SOCIAL ICONS ==== */
  .modern-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
  }

  .social-icon-container {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: transition-all duration-300 ease-out;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .social-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .social-icon-container:hover {
    transform: scale(1.1) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .social-icon-container:hover::before {
    opacity: 1;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
  }

  .social-icon-container:hover .social-icon {
    transform: scale(1.1);
  }

  /* Facebook Icon */
  .facebook-icon {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
  }

  .facebook-icon:hover {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  }

  /* Instagram Icon */
  .instagram-icon {
    background: linear-gradient(135deg, #e4405f, #c13584);
  }

  .instagram-icon:hover {
    background: linear-gradient(135deg, #c13584, #a02a6b);
  }

  /* WhatsApp Icon */
  .whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
  }

  .whatsapp-icon:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
  }

  /* Animation for social icons */
  .social-icon-container {
    animation: socialIconFloat 3s ease-in-out infinite;
  }

  .social-icon-container:nth-child(1) {
    animation-delay: 0s;
  }

  .social-icon-container:nth-child(2) {
    animation-delay: 0.5s;
  }

  .social-icon-container:nth-child(3) {
    animation-delay: 1s;
  }

  @keyframes socialIconFloat {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .modern-social-links {
      gap: 0.75rem;
    }
    
    .social-icon-container {
      width: 48px;
      height: 48px;
    }
    
    .social-icon {
      width: 28px;
      height: 28px;
    }
  }

  @media (max-width: 480px) {
    .modern-social-links {
      gap: 0.5rem;
    }
    
    .social-icon-container {
      width: 44px;
      height: 44px;
    }
    
    .social-icon {
      width: 24px;
      height: 24px;
    }
  }
  