@import url("footer.css");
@import url("header.css");
@import url("botoes.css");
@font-face {
    font-family: 'Agdasima';
    src: url('fonts/Agdasima-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Afacad';
    src: url('fonts/Afacad-VariableFont_wght.ttf');
}

:root {
    --bg: #F6F8FC;
    --primary: #ca633c;
    --secondary: #e36f58;
    --h2-color: #5B5D72;
    --text: white;
    --cube-side: 2.75rem;
    --cube-side-half: calc(var(--cube-side) / 2);
    --border-radius: 2rem;
    --btn-bg: #2ebfb08b;
}

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

html {
    /* background: linear-gradient(to bottom, rgba(212, 233, 226, 0.4) 0%, rgba(138, 197, 176, 0.4) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh; */
}

body {
    font-family: 'Afacad', Arial, sans-serif;
    min-height: 100vh;
    width: 100%;   
    position: relative;
    background-color: transparent; /*Removemos a cor sólida para não cobrir a imagem*/
    overflow-x: hidden;
}

/* Background Mask */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: url('../imagens/bamboo2.jpeg'), url('../imagens/circle.avif');
    background-size: cover;
    background-position: center;
    
    /* Aumentamos a opacidade e removemos blend mode para mais nitidez */
    opacity: 1; 
    background-blend-mode: normal;
    
    /* Removendo a máscara antiga e aplicando nitidez com filtro */
    filter: brightness(1.2) contrast(1.1);
}

.main-banner{
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

#slider {
    margin: 0 auto;
    width: 80%;
    max-width: 100%;
    text-align: center;
 }

 #slider img{
    width: 61.25rem;
    height: 25rem;
    border-radius: 20px;
 }
 #slider input[type=radio] {
    display: none;
 }
 #slider label {
    cursor:pointer;
    text-decoration: none;
 }
 #slides {
    padding: 2px;
    border: 3px solid #ccc;
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 25rem;
    z-index: 1;
 }
 #overflow {
    width: 100%;
    overflow: hidden;
 }
 #slide1:checked ~ #slides .inner {
    margin-left: 0;
 }
 #slide2:checked ~ #slides .inner {
    margin-left: -99%;
 }
 #slide3:checked ~ #slides .inner {
    margin-left: -198%;
 }

 #slides .inner {
    transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    width: 300%;
    line-height: 0;
    height: 25rem;
 }
 #slides .slide {
    width: 33%;
    float:left;
    height: 100%;
    color: #fff;
 }


 #controls label:hover {
    opacity: 1;
 }

 #bullets {
    margin: 10px auto 0;
    text-align: center;
    backdrop-filter: blur(16px);
    width: fit-content;
    padding: 7px;
    border-radius: 10px;
 }
 #bullets label {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius:100%;
    background: #fa3419;
    margin: 0 10px;
 }
 #slide1:checked ~ #bullets label:nth-child(1),
 #slide2:checked ~ #bullets label:nth-child(2),
 #slide3:checked ~ #bullets label:nth-child(3) {
    background: #f3e1b6;
 }

.container-principal {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: #39856753;
    backdrop-filter: blur(1px);
    border-radius: 20px;
}

h1 {
    font-family: 'Afacad';
    color: #1d5e69;
    text-align: center;
    margin-top: 20px; /* Ajuste opcional para espaçamento */
    font-weight: lighter;
    background-color: white;
    border-radius: 20px;
}

h2 {
    font-family: 'Afacad';
    color: #32756C;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tratamentos{
    font-family: 'Afacad';
    font-size: 1.5rem;
    padding: 15px 20px;
    background: linear-gradient(90deg, #30b6a6, #5beab2);
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    height: 6rem;
    transition: 1s;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 8rem; 
    transition: 1s;
}

.dropdown {
    margin-bottom: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 1s;
}


.tratamentos:hover {
    background: linear-gradient(90deg, #23998e, #f3e1b6);
    transition: 1s;
}

.tratamentos h2{
    text-align: center;
    font-size: 30px;
    margin-top: 10px;
    color: #f3e1b6;
    font-weight: lighter;
    transition: 1s;
}

.tratamentos h2:hover {
    color: #1d5e69;
   
}

.dropdown-content {
    padding: 20px;
    font-size: 1rem;
    color: #333;
    display: none;
    transition: all 0.3s ease;
}

details[open] .dropdown-content {
    display: block;
}


h3 {
    color: #32756C;
   
    font-size: 1.3rem;
}

.dropdown-content ul {
    padding-left: 20px;
    list-style: disc;
    color: #32756C;
}

.dropdown-content p,.dropdown-content li {
    font-family: 'Afacad';
    margin-bottom: 10px;
} 

@media (max-width: 768px) {
    .container-principal {
        width: 95%;
    }

    summary {
        font-size: 1.3rem;
    }

    p, li {
        font-size: 0.9rem;
    }
    .fisioicon{
        height: 4rem;
        width: 4rem;
        
    }
    #slider img{
        width: 99%;
    }
    #slides .slide {
        width: 33%;
        float:left;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        color: #fff;
     }
     #slides .inner {
        transition: margin-left 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
        width: 300%;
        line-height: 0;
        height: 25rem;
        display: flex;
        flex-direction: row;
     }
}

.fisioicon{
    height: 4rem;
    width: 4rem;
}

.fisioimg{
    height: 20rem;
    width: 20rem;
} 

/* From Uiverse.io by codebykay101 */ 
.container-imgs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .container-imgs .glass {
    position: relative;
    width: 180px;
    height: 200px;
    background: linear-gradient(#fff2, transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 10px;
    margin: 0 -45px;
    backdrop-filter: blur(10px);
    transform: rotate(calc(var(--r) * 1deg));
  }
  
  .container-imgs:hover .glass {
    transform: rotate(0deg);
    
  }
  
  .container-imgs .glass::before {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
   .container-imgs .glass svg {
    font-size: 2.5em;
    fill: #fff;
  }
  
.carroimage{
    height: 15rem;
    width: 15rem;
} 

  
  .container-imgs .carroimage {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px; 
  }
  
  .container-imgs .carroimage:hover {
    transform: scale(1.1); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
    border: 2px solid #fa3419; 
  }
   
  /* Estilo para a div glass */
  .container-imgs .glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .container-imgs .glass:hover {
    transform: scale(1.05); 
  }
  
  .container-imgs .glass svg {
    fill: #333;
    transition: fill 0.3s ease;
  }
  
  .container-imgs .glass:hover svg {
    fill: #00BFFF;
  }
  
  @keyframes slider {
    0%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100%{
        -webkit-transform: translateX(calc(-1800px * 3));
        transform: translateX(calc(-1800px * 3));
    }
}