@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('faq.css');
@import url('footer.css');
@import url('sobre.css');



:root {
    --color-primary-1: #FDEAF2;
    --color-primary-2: #FBD5E5;
    --color-primary-3: #F7BFD8;
    --color-primary-4: #F3AACB;
    --color-primary-5: #EB9AC0;
    --color-primary-6: #C594AA;

    --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;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.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: transparent;
    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;
} 

/* Estilos específicos para sobre.html */

.sobre-header {
    background-color: var(--color-primary-2);
    padding: 20px;
    text-align: center;
}

.sobre-main h1 {
    color: var(--color-primary-6);
    font-size: 2.5rem;
}

.sobre-main p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-neutral-1);
}

/* ====== CONTATO ====== */
#contato {
    padding: 80px 10%;
    background-color: #fff7fb;
    text-align: center;
}

#contato .section-title {
    color: #C594AA;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

#contact-form {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C594AA;
    box-shadow: 0 0 5px rgba(197, 148, 170, 0.5);
}

#contact-form .btn-default {
    width: 100%;
    background-color: #C594AA;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact-form .btn-default:hover {
    background-color: #a77991;
    transform: scale(1.02);
}

/* Informações de contato */
.contact-info {
    text-align: left;
    max-width: 300px;
}

.contact-info h3 {
    color: #C594AA;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}

.contact-info a {
    color: #C594AA;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info i {
    margin-right: 8px;
    color: #C594AA;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    #contact-form {
        width: 100%;
        max-width: 400px;
    }

    .contact-info {
        text-align: center;
    }
}

/* ===== ÍCONE FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  margin-top: 14px;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    margin-top: 12px;
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

@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); }
}

.location-btn {
    display: flex;
    align-items: center;
    background: var(--color-primary-6);
    color: #fff;
    padding: 15px 25px;
    border-radius: 40px;
    width: fit-content;
    gap: 15px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: .3s ease;
}

.location-btn:hover {
    background: var(--color-primary-3);
}

.location-btn .text {
    line-height: 1.2;
    font-size: 16px;
}

.location-btn .icon {
    background: var(--color-primary-1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-btn .icon i {
    font-size: 22px;
    animation: spin 3s linear infinite;
}

/* ANIMAÇÃO DO GLOBO */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#about {
    min-height: 100vh;            /* ocupa a tela inteira */
    display: flex;
    justify-content: center;      /* centraliza horizontalmente */
    align-items: center;          /* centraliza verticalmente */
    padding: 40px 20px;           /* espaçamento para mobile */
}

#cta {
    max-width: 800px;             /* limita a largura para ficar bonito */
    text-align: center;           /* texto centralizado */
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#cta .title {
    font-size: 3rem;
    font-weight: 700;
}

#cta .title span {
    color: var(--color-primary);
}

#cta .description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-media-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-media-buttons a {
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: 0.3s;
}

.social-media-buttons a:hover {
    transform: scale(1.2);
}
/* ====== LOGOS SLIDER (INFINITE SCROLL) ====== */
.logos {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 50px 0;
    background: transparent;
}

.logos-slide {
    display: flex;
    align-items: center;
    animation: scroll 22s linear infinite;
}

.logos-slide img {
    height: 60px;
    margin: 0 50px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: .3s ease;
}

.logos-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* animação */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .logos-slide img {
        height: 45px;
        margin: 0 35px;
    }
}

@media (max-width: 480px) {
    .logos-slide img {
        height: 32px;
        margin: 0 25px;
    }
}

/* Caixa do produto */
.dishyy {
    width: 260px;
    height: 260px;
    background: #fff;
    border-radius: 50%; /* deixa totalmente redondo */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease; /* animação suave */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Efeito ao passar o mouse */
.dishyy:hover {
    transform: scale(1.08); /* cresce levemente */
    background-color: #EB9AC0; /* muda o fundo */
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Ajuste da imagem para caber no círculo */
.dishyy-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Ajuste do título dentro do círculo */
.dishyy-title {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Estrelas */
.dishyy-rate i {
    color: gold;
    margin-top: 5px;
}

/* Botão */
.btn-default {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: #222;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn-default:hover {
    transform: scale(1.05);
}

/* Reduz espaço acima e abaixo das seções */
#menuu {
    margin: 20px 0; /* antes devia ser ~80px */
    padding: 10px 0;
}
#menuu {
    text-align: center;      /* Centraliza textos */
    display: flex;           /* Opcional: centraliza tudo */
    flex-direction: column;  /* Mantém um abaixo do outro */
    align-items: center;     /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente se tiver altura */
}
/* Reduz espaço acima e abaixo das seções */
#menuu2 {
    margin: 20px 0; /* antes devia ser ~80px */
    padding: 10px 0;
}
#menuu2 {
    text-align: center;      /* Centraliza textos */
    display: flex;           /* Opcional: centraliza tudo */
    flex-direction: column;  /* Mantém um abaixo do outro */
    align-items: center;     /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente se tiver altura */
}
