 
 
 
 
 
 /* AREA DE SLIDER*/
 :root {
     --gold-light: #d79d39;
     --gold-dark: #d79d39;
      --bs-primary: #cc912c;
 }

 html {
    scroll-behavior: smooth;
}
 /* Container do Slider */
 .slider-container {
     position: relative;
     width: 100%;
     height: 650px;
     overflow: hidden;
 }

 .swiper {
     width: 100%;
     height: 100%;
 }

 .swiper-slide {
     position: relative;
     display: flex;
     align-items: center;
     background-color: #000;
 }

 .slide-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.8;
 }

 /* Conteúdo do Texto */
 .content {
     position: absolute;
     left: 10%;
     top: 40%;
     color: white;
     z-index: 99;
 }

 .content span {
     display: block;
     text-transform: uppercase;
     letter-spacing: 5px;
     font-size: 14px;
     margin-bottom: 15px;
     animation: fadeInUp 1s ease forwards;
 }

 .content h2 {
     font-family: 'Playfair Display', serif;
     font-size: clamp(3rem, 8vw, 5rem);
     margin: 0;
     animation: fadeInUp 1.2s ease forwards;
 }

 /* Controles Customizados (Igual ao Salone) */
 .custom-navigation {
     position: absolute;
     bottom: 0;
     right: 0;
     display: flex;
     z-index: 10;
 }

 .nav-btn {
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background 0.3s ease;
     border: none;
     outline: none;
 }

 .prev-btn {
     background-color: var(--gold-dark);
 }

 .next-btn {
     background-color: var(--gold-light);
 }

 .nav-btn:hover {
     filter: brightness(1.1);
 }

 .nav-btn svg {
     width: 30px;
     stroke: white;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* FIM AREA DE SLIDER*/




 /* AREA DE VIDEO*/


 .video-box {
     width: 100%; 
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 video {
     width: 100%; 
     display: block;
 }


 /* FIM AREA DE VIDEO*/



 .imagem-container{
    position: relative;
    display: inline-block;
}

.imagem-container img{
    display: block;
    width: 100%; 
}

.imagem-container::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(158, 92, 0, 0.44); /* vermelho transparente */
}

.Centralizado{
    margin: 0;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


 /* SLIDER TESTEMUNHO*/
 
    

        /* Card de Testemunho */
        .testimonial-card { 
             background-color: #f3f3f3;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            /* Transição suave para a troca de cores do card */
            transition: all 0.6s ease-in-out; 
            box-sizing: border-box;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Transição suave para todos os elementos internos do card (texto, aspas, etc) */
        .testimonial-card *, .testimonial-card::before {
            transition: all 0.6s ease-in-out;
        }

        /* Ícone de Aspas Fixo no Topo */
        .quote-icon {
            font-family: 'Cormorant Garamond', serif;
            font-size: 80px;
            line-height: 1;
            color: #333;
            margin-bottom: -10px;
        }

        /* Aspas Gigantes em Marca de Água no Fundo */
        .testimonial-card::before {
            content: "“";
            font-family: 'Cormorant Garamond', serif;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 250px;
            color: rgba(0, 0, 0, 0.03);
            line-height: 1;
            pointer-events: none;
            z-index: 0;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 30px;
            z-index: 1;
            position: relative;
        }

        /* Imagem do Cliente */
        .client-img-container {
            width: 90px;
            height: 90px;
            border: 1px solid #dcdcdc;
            padding: 4px;
            background: #fff;
            margin-bottom: 20px;
            z-index: 1;
        }

        .client-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 5px 0;
            z-index: 1;
        }

        .client-profession {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin: 0;
            z-index: 1;
        }

        /* --- CARD ATIVO (Slide Central Destacado) --- */
        .swiper-slide-active .testimonial-card {
            background-color: var(--bs-primary);
            color: #ffffff;
        }

        .swiper-slide-active .testimonial-card::before {
            color: rgba(255, 255, 255, 0.1);
        }

        .swiper-slide-active .quote-icon {
            color: #ffffff;
        }

        .swiper-slide-active .testimonial-text,
        .swiper-slide-active .client-name,
        .swiper-slide-active .client-profession {
            color: #ffffff;
        }

        .swiper-slide-active .client-img-container {
            border-color: rgba(255, 255, 255, 0.5);
            background: transparent;
        }

        /* --- BOTÕES DE NAVEGAÇÃO --- */
        .navigation-wrapper {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .nav-btn2 {
            width: 45px;
            height: 45px; 
            color: #ffffff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }

        .nav-btn2:hover {
            background-color: #b0884b;
        }

        .swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
   


  /* FIM SLIDER TESTEMUNHO*/



     /* --- CONFIGURAÇÕES GERAIS --- */
  
 

    .hero-section {
      position: relative;
      min-height: 100vh;
      background-color: #2b2521;
      background-image: url('../img/marcacao2.jpeg'); 
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
      animation: imageScale 2.5s ease-out forwards;
    }

    /* Película escura de contraste */
    .hero-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 35%, rgba(0, 0, 0, 0.2) 100%);
      z-index: 1;
    }

    /* Ajuste de Z-Index para ficar acima do overlay do Bootstrap */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 540px;
    }

    /* Estilização da Tipografia */
    .subtitle {
      font-size: 0.75rem;
      letter-spacing: 2px;

    }

    .title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 3.8rem;
      line-height: 1.15;
            color: #fff;
    }

    /* Animações de Entrada (Cascata) */
    .animate-item {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    }
    .anim-1 { animation-delay: 0.2s; }
    .anim-2 { animation-delay: 0.4s; }
    .anim-3 { animation-delay: 0.6s; }
    .anim-4 { animation-delay: 0.8s; }

    /* Efeitos Customizados nos Botões do Bootstrap */
    .btn-custom {
      padding: 0.85rem 2rem;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }
    .btn-custom:active {
      transform: scale(0.98) translateY(0) !important;
    }

    /* Keyframes */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes imageScale {
      from { background-size: 105%; }
      to { background-size: 100%; }
    }

    /* Responsividade extra para telas pequenas */
    @media (max-width: 768px) {
      .hero-section {
        background-position: 70% center;
        animation: none;
      }
      .title {
        font-size: 2.8rem;
      }
    }

         /* --- FIM CONFIGURAÇÕES GERAIS --- */ 

           /* --- REDES SOCIAIS --- */ 

  
      

        .social-title {
            color: #d79d39;
            font-weight: 700; 
            letter-spacing: 1px;
        }

        .social-text {
            color: #444444; 
        }

        /* Quadrados dos Botões - Ajustados para preencher melhor em telas grandes */
        .social-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 224px;
            height: 200px;
            transition: transform 0.2s ease;
            text-decoration: none;
        }

        .social-box:hover {
            transform: scale(1.09);
        }

        .social-box i {
            color: #ffffff;
            font-size: 3.5rem;
        }

        /* Cores de fundo */
        .bg-facebook { background-color: #415e9b; }
        .bg-instagram { background-color: #e56969; }
        .bg-youtube { background-color: #000000; }
        .bg-linkedin { background-color: #0c82be; }

        .bg-youtube i { font-size: 4rem; }
    

             /* --- FIM REDES SOCIAIS --- */ 


             
    /* -----------MENU DAS FOTO ------------ */
     .fotos_galeria {
      width: 100%; 
      display: flex;
      flex-direction: column;
      align-items: center; /* Centraliza horizontalmente o menu e o conteúdo */
    }

    /* Container do Menu (Centralizado) */
    .nav-container {
      background-color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      display: inline-block; /* Faz o container abraçar apenas o tamanho dos menus */
    }
 

    .fotos_galeria .nav-item {
   display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
    padding: .375rem .75rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    /* Estado Ativo (Vermelho) */
    .fotos_galeria .nav-item.active {
      background-color: #d79d39;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(78, 73, 0, 0.3);
    }

    .nav-item:not(.active):hover {
      background-color: rgba(250, 213, 4, 0.07);
    }
 
    /* ----------- FIM MENU DAS FOTO ------------ */



    /* --- SEÇÃO 1: AGENDAMENTO (HERO) --- */
.hero-section2 {
    position: relative;

    min-height: 100vh;
    background-image: url('../img/marcacao2.jpeg');
    /* Imagem de fundo realista de massagem */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Escurecimento do fundo para dar contraste */
.hero-section2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.appointment-container {
    position: relative;
    z-index: 2;
    background-color: rgba(33, 30, 28, 0.75);
    /* Fundo translúcido escuro */
    padding: 50px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.appointment-container h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 35px;
    font-weight: 600;
}

.appointment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    border-color: #d79d39;
}

/* Customização do Select */
.form-group select option {
    background-color: #211e1c;
    color: #fff;
}

select.form-controlxx {
    appearance: none;
    cursor: pointer;
 background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0id2hpdGUiIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZD0iTTcuMjQ3IDExLjE0IDIuNDUxIDUuNjU4QzEuODg1IDUuMDEzIDIuMzQ1IDQgMy4yMDQgNGg5LjU5MmExIDEgMCAwIDEgLjc1MyAxLjY1OWwtNC43OTYgNS40ODFhMSAxIDAgMCAxLTEuNTA2IDB6Ii8+PC9zdmc+");background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

/* Botão de Envio */
.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #d79d39;
    /* Tom salmão/coral do layout */
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #9e6d18;
}


/* --- SEÇÃO 2: HORÁRIO DE FUNCIONAMENTO --- */
.info-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.info-container {
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
}

.image-block {
    width: 55%;
    height: 550px;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Rosa sobreposto */
.content-card {
    position: absolute;
    right: 0;
    width: 55%;
    background-color: #ffe4b6;
    /* Fundo rosa bem claro */
    padding: 50px 60px;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.05);
}

.badge {
    background-color: #d79d39;
    color: white;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.content-card h2 {
    color: #232323;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    color: #666666; 
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Lista de Horários */
.hours-list {
    list-style: none;
    margin-bottom: 35px;
}

.hours-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #232323;
}

.circle-icon {
    width: 8px;
    height: 8px;
    border: 2px solid #d79d39;
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
}

.hours-list .day {
    font-weight: 600;
    margin-right: 5px;
}

.hours-list .time {
    font-weight: 400;
}

/* Botão Book Now */
.btn-book {
    display: inline-block;
    background-color: #d79d39;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color: #9b6810;
}


/* --- RESPONSIVIDADE (MOBILE-FRIENDLY) --- */
@media (max-width: 768px) {

    /* Ajustes Seção 1 */
    .appointment-form {
        grid-template-columns: 1fr;
    }

    .appointment-container {
        padding: 30px 20px;
        margin: 1px;
    }

    /* Ajustes Seção 2 */
    .info-container {
        flex-direction: column;
    }

    .image-block {
        width: 100%;
        height: 350px;
    }

    .content-card {
        position: relative;
        width: 100%;
        margin-top: -50px;
        /* Mantém um charme de sobreposição no mobile */
        padding: 40px 25px;
    }
}