@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --color-primary-1: #fff9ea;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #f8d477;
    --color-primary-4: #ffe100;
    --color-primary-5: #ffcb45;
    --color-primary-6: #e9a209;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
      max-width: 100%;
        overflow-x: hidden;
}

body {
    background-color: fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
     max-width: 100%;

}

section {
    padding: 28px 8%;
}

.btn-default {
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #C9A86A; /* dourado premium */
        border-radius: 12px;
        padding: 10px 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color .3s ease;
        box-shadow: 0 0 25px 8px rgba(201, 168, 106, 0.42);
    }

.btn-default:hover {
    background-color: var(--color-primary-3);
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--color-primary-6);
    font-size: 1.563rem;
}

.section-subtitle {
    font-size: 2.1875rem;
}

.rosto-photo{
   width: 200px;
   height: 200px;
   border-radius: 50%;
   object-fit: cover;
}

#localizacao {

    padding: 120px 5%;

    background:
            linear-gradient(
                    180deg,
                    #fffaf5 0%,
                    #ffffff 100%
            );
}

.location-wrapper {

    width: 100%;

    max-width: 1600px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.4fr;

    gap: 50px;

    align-items: stretch;
}

.location-content {

    display: flex;

    flex-direction: column;

    gap: 28px;
}

.location-tag {

    font-size: .9rem;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-weight: 700;

    color: #C9A86A;
}

.location-content h2 {

    font-size:
            clamp(2.5rem, 4vw, 4.2rem);

    line-height: 1.05;

    color: #111;

    font-weight: 800;
}

.location-content h2 span {

    display: block;

    color: #C9A86A;
}

.location-description {

    font-size: 1.05rem;

    line-height: 1.9;

    color: #666;

    max-width: 560px;
}

.address-card {

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(14px);

    border-radius: 32px;

    padding: 34px;

    display: flex;

    flex-direction: column;

    gap: 28px;

    border: 1px solid rgba(0,0,0,0.04);

    box-shadow:
            0 10px 40px rgba(0,0,0,0.05);
}

.address-item {

    display: flex;

    gap: 18px;

    align-items: flex-start;
}

.address-item span {

    width: 54px;

    height: 54px;

    border-radius: 18px;

    background: #fff6e3;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.3rem;

    flex-shrink: 0;
}

.address-item strong {

    display: block;

    font-size: 1rem;

    color: #111;

    margin-bottom: 6px;
}

.address-item p {

    color: #666;

    line-height: 1.7;
}

.address-actions {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;
}

.btn-address {

    background:
            linear-gradient(
                    135deg,
                    #E9D7A5,
                    #C9A86A
            );

    color: #111;

    padding: 14px 24px;

    border-radius: 16px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;

    box-shadow:
            0 12px 24px rgba(201,168,106,0.18);
}

.btn-address:hover {

    transform: translateY(-4px);
}

.btn-address.outline {

    background: white;

    border: 1px solid rgba(0,0,0,0.08);

    box-shadow: none;
}

.map-container {

    width: 100%;

    min-height: 720px;

    border-radius: 40px;

    overflow: hidden;

    box-shadow:
            0 25px 60px rgba(0,0,0,0.10);

    border: 1px solid rgba(0,0,0,0.04);
}

.map-container iframe {

    width: 100%;

    height: 100%;

    filter:
            saturate(1.05)
            contrast(1.02);
}

@media screen and (max-width: 980px) {

    .location-wrapper {

        grid-template-columns: 1fr;
    }

    .location-content {

        text-align: center;

        align-items: center;
    }

    .location-description {

        max-width: 100%;
    }

    .address-card {

        width: 100%;
    }

    .map-container {

        height: 420px;
    }
}

@media screen and (max-width: 600px) {

    #localizacao {

        padding: 80px 20px;
    }

    .location-content h2 {

        font-size: 2.3rem;
    }

    .address-card {

        padding: 24px;

        border-radius: 28px;
    }

    .address-actions {

        flex-direction: column;
    }

    .btn-address {

        width: 100%;

        text-align: center;
    }

    .map-container {

        height: 320px;

        border-radius: 28px;
    }
}

.map-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

#ver-mais-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

#ver-mais-container.show {
    max-height: 3000px;
    opacity: 1;
}

#ver-mais-container #dishes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

#ver-mais-container .dish {
    width: calc(25% - 24px);
}

/* responsivo */
@media (max-width: 1024px) {
    #ver-mais-container .dish {
        width: calc(33.333% - 24px);
    }
}

@media (max-width: 600px) {
    #ver-mais-container .dish {
        width: calc(50% - 24px); /* 2 por linha */
    }
}
.ver-mais {
      padding: 14px 40px;
        font-size: 16px;
        border-radius: 30px;
        margin: 35px auto 0;
        display: block;
        cursor: pointer;
        transition: all 0.3s ease;
}
#cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 998;
}

#cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right .4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
}

#cart.active {
    right: 0;
}

#cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

#close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

#cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

#cart.active {
    right: 0;
}
@media (max-width: 768px) {

    #cart {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        background: #fff;
        z-index: 999;
    }

    #cart.active {
        right: 0;
        transition: right 0.3s ease;
    }

    #cart-items {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    footer.cart-footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom)); /* respeita notch */
        border-top: 1px solid #eee;
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cart-footer .cart-checkout {
        width: 100%;
        padding: 15px;
        background-color: #25D366;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
    }

}

#mostrar-mais{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

#mostrar-mais.show {
    max-height: 3000px;
    opacity: 1;
}

.qty-btn {
  background-color: #f0f0f0;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.qty-btn:hover {
  background-color: #d0d0d0;
}

.remove-btn {
  background-color: #ff4d4d;
  border: none;
  border-radius: 50%;
  padding: 6px 10px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 10px;
}

.remove-btn:hover {
  background-color: #e60000;
}

.cart-checkout {
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-checkout:hover {
  background-color: #1ebe5d;
}

.linha-categoria {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.linha {
  width: 200px;
      height: 4px;
      margin: 25px auto;
      border-radius: 10px;
      background: #e8aeb7;
      box-shadow: 0 0 8px rgba(232, 174, 183, 0.6);
}

.categoria-texto {
    margin: 0 15px;
    font-weight: bold;
}

.linha-categoriam {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.linham {
  width: 200px;
      height: 4px;
      margin: 25px auto;
      border-radius: 10px;
      background: #6fa8dc;
      box-shadow: 0 0 6px rgba(91, 143, 217, 0.5);
}

.categoria-textom {
    margin: 0 15px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .linha {
        width: 50px;
    }
    .linham {
            width: 50px;
        }
    .titulo-depilacao h3 {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

.dishes-grid{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;

  overflow: visible;
}


.dishes-grid .dish{
  width: calc(25% - 24px);
}

.extra-container{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .6s ease, opacity .3s ease, transform .3s ease;
}

.extra-container.show{
  max-height: 6000px;
  opacity: 1;
  transform: translateY(0);
}

.ver-mais-wrapper{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 1024px){
  .dishes-grid .dish{ width: calc(33.333% - 24px); }
}
@media (max-width: 600px){
  .dishes-grid .dish{ width: calc(50% - 14px); }
  .dishes-grid{ gap: 14px; }
}

:root{
  --pink:#DB2777;
  --blue:#1D4ED8;
  --text:#0f172a;
  --stroke: rgba(29,78,216,.18);
}

.combo-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  padding:10px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:#fff;
  width:fit-content;
  margin: 10px auto 22px;
}

.filter-btn{
  border:0;
  background:transparent;
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.filter-btn:hover{
  transform: translateY(-1px);
  background: rgba(29,78,216,.08);
}

.filter-btn.active{
  color:#fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.dish-badge{
  position:absolute;
  top:12px;
  left:12px;
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  color:#fff;
}

.dish-badge.feminino{ background:#DB2777; }
.dish-badge.masculino{ background:#1D4ED8; }

.cart-icon{
position:fixed;
top:20px;
right:20px;
background:#000;
color:white;
padding:10px 15px;
border-radius:30px;
font-size:18px;
z-index:999;
}

.cart-icon a{
color:white;
text-decoration:none;
}

#dishes-masculino{
  min-height: 1px;
}

#dishes-masculino.expanded{
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.dish.hidden-card{
  display: none !important;
  }

#faq {
    padding: 80px 20px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.faq-question i {
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    text-align: left;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    transition: 0.4s ease;
}


.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active i {
    transform: rotate(180deg);
}
#chat-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 66px;
    height: 66px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
            135deg,
            #E9D7A5,
            #C8A96B
    );

    color: #1d1d1d;
    font-size: 24px;

    cursor: pointer;

    z-index: 9999;

    box-shadow:
            0 12px 30px rgba(201,169,107,0.35),
            inset 0 1px 1px rgba(255,255,255,0.7);

    transition: all .35s ease;
}

#chat-btn:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
            0 18px 40px rgba(201,169,107,0.45),
            inset 0 1px 1px rgba(255,255,255,0.8);
}

#chat-btn:active {
    transform: scale(0.96);
}

#chat-btn::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
            linear-gradient(
                    120deg,
                    transparent,
                    rgba(255,255,255,0.4),
                    transparent
            );

    transform: translateX(-120%);
    transition: .8s;
}

#chat-btn:hover::before {
    transform: translateX(120%);
}

/* CHATBOX */

#chatbox {
    position: fixed;

    right: 22px;
    bottom: 100px;

    width: 340px;
    height: 520px;

    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(18px);

    border-radius: 28px;

    display: none;
    flex-direction: column;

    overflow: hidden;

    z-index: 9999;

    border: 1px solid rgba(201,169,107,0.25);

    box-shadow:
            0 30px 80px rgba(0,0,0,0.12);
}

/* HEADER */

.chat-header {
    background: linear-gradient(
            135deg,
            #E9D7A5,
            #C8A96B
    );

    color: #1d1d1d;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-weight: 700;
    letter-spacing: .3px;
}

.chat-header button {
    background: transparent;
    border: none;
    cursor: pointer;

    font-size: 18px;
    color: #1d1d1d;
}

/* CONTENT */

#chat-content {
    flex: 1;

    overflow-y: auto;

    padding: 18px;

    font-size: 14px;

    background:
            linear-gradient(
                    to bottom,
                    #ffffff,
                    #faf7f1
            );
}

/* MENSAGENS */

.bot-msg {
    background: #f7f3ea;

    color: #2b2b2b;

    padding: 14px 16px;

    border-radius: 18px;

    margin-bottom: 12px;

    width: fit-content;
    max-width: 85%;

    line-height: 1.5;
}

.user-msg {
    background: linear-gradient(
            135deg,
            #C8A96B,
            #E9D7A5
    );

    color: #1d1d1d;

    padding: 14px 16px;

    border-radius: 18px;

    margin-bottom: 12px;

    margin-left: auto;

    width: fit-content;
    max-width: 85%;

    text-align: right;

    font-weight: 500;
}

/* BOTÕES RÁPIDOS */

.quick-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 12px;
}

.quick-buttons button {
    background: white;

    border: 1px solid rgba(201,169,107,0.35);

    color: #6f5b37;

    padding: 10px 14px;

    border-radius: 999px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;

    transition: .25s;
}

.quick-buttons button:hover {
    background: #E9D7A5;
    color: #1d1d1d;

    transform: translateY(-2px);
}

/* INPUT */

.chat-input {
    display: flex;

    padding: 14px;

    gap: 10px;

    background: white;

    border-top: 1px solid rgba(0,0,0,0.06);
}

.chat-input input {
    flex: 1;

    border: none;

    background: #f5f5f5;

    padding: 14px 16px;

    border-radius: 999px;

    outline: none;

    font-size: 14px;
}

.chat-input button {
    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: linear-gradient(
            135deg,
            #E9D7A5,
            #C8A96B
    );

    color: #1d1d1d;

    cursor: pointer;

    font-size: 18px;
    font-weight: bold;

    transition: .3s;
}

.chat-input button:hover {
    transform: scale(1.05);
}


@media(max-width:768px) {

    #chatbox {
        width: calc(100vw - 24px);

        right: 12px;
        left: 12px;

        bottom: 90px;

        height: 72vh;
    }

    #chat-btn {
        width: 58px;
        height: 58px;

        font-size: 22px;

        right: 18px;
        bottom: 18px;
    }
}

header {
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding-top: 10px;
    padding-bottom: 10px;
}
.site-footer{
    background: #f8f5ef;
    padding: 50px 30px 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-wave{
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.footer-inner{
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    flex-wrap: wrap;
}

.footer-left img{
    width: 120px;
    opacity: 0.7;
}

.footer-right{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-credit{
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    opacity: 0.55;
    transition: 0.3s;
}

.footer-credit:hover{
    opacity: 1;
    transform: translateY(-2px);
}

.footer-credit span{
    font-size: 12px;
    letter-spacing: 1.5px;
}

.footer-credit img{
    height: 30px;
    object-fit: contain;
}

.footer-credit{
    gap: 14px;
}

