@charset "UTF-8";
/* ====== MOBILE (até 766px) ====== */
@charset "UTF-8";
/* ====== MOBILE (até 766px) ====== */
@media screen and (max-width: 766px) {

  :root {
    --cor1: #BDA899;
    /* Destaque */
    --cor2: #BFB7AE;
    /* Cinza claro */
    --cor3: #9C8F84;
    /* Marrom claro */
    --cor4: #262321;
    /* Texto geral */
    --cor5: #38302A;
    /* Títulos/headers */
    --cor6: #756A62;
    /* Parágrafos */
    --cor7: #F5F3EF;
    /* Fundo claro */

    --fonte-principal: "Poppins", sans-serif;
    --fonte-titulo: "Montserrat", sans-serif;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
  max-width: 100%;
  overflow-x: hidden;
}
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    font-family: var(--fonte-principal);
    background-color: var(--cor7);
    color: var(--cor6);
    line-height: 1.6;
  }

  h1, h2, h3, h4 {
    font-family: var(--fonte-titulo);
    color: var(--cor5);
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: var(--cor1);
    transition: color .3s ease;
  }

  a:hover {
    color: #a39287;
  }

  iframe{
 display: none;
}

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.8rem, 2vw, 1.5rem) 1%;
    background-color: var(--cor7);
    border-bottom: 1px solid var(--cor3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  }

  header.scrolled {
    padding: clamp(0.6rem, 1.5vw, 1rem) 5%;
    background-color: rgba(245, 243, 239, .98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  }

  .logo {
    text-decoration: none;
    text-align: left;
    position: relative;
  }

  .logo h1 {
    font-size: 1.2rem; /* ajustado para mobile */
    font-weight: 700;
    color: var(--cor5);
    margin: 0;
    line-height: 1;
    margin-right: 10px;
  }

  .logo .subtitulo {
    font-family: var(--fonte-principal);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--cor3);
    margin-top: .2rem;
  }

  /* === MENU HAMBÚRGUER === */

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--cor5);
    padding: .5rem;
    z-index: 1001;
  }

  .MenuNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* logo + header */
    left: 0;
    width: 100%;
    background-color: var(--cor6);
    padding: 0.5rem 0;
    border-top: 1px solid var(--cor3);
    z-index: 999;
  }

  .MenuNav.show {
    display: flex;
  }

  .MenuNav a, .dropbtn {
    padding: 1rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--cor2);
    color: var(--cor5);
    font-size: 1rem;
    background-color: transparent;
  }

  .dropbtn {
    cursor: pointer;
  }

  /* Submenu para "Fotos" */

  .dropdown-content {
    display: none;
    flex-direction: column;
    background-color: var(--cor7);
    padding-left: 1rem;
    border-top: 1px solid var(--cor2);
  }

  .dropdown-content.show-dropdown {
    display: block;
   
  }

  .dropdown-content a {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    color: var(--cor5);
    background-color: transparent;
  }

  .dropdown-content a:hover {
    background-color: var(--cor2);
    color: #fff;
  }

.nav-item .dropbtn:hover+.dropdown-content,
.nav-item .dropdown-content:hover {
  display: block;
}

/*
   ------------------------------------------------------
   BOTÃO CTA GERAL
   ------------------------------------------------------
*/


.hero-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 125px;
}

.hero-section input {
  width: 85%;
  padding: 3px;
  border: 1px solid var(--cor3);
  border-radius: 8px;
  font-family: var(--fonte-principal);
  font-size: 16px;
}

.hero-section > .hero-content > form > #hero_message {
  width: 85%;
  border: 1px solid var(--cor3);
  border-radius: 8px;
  font-family: var(--fonte-principal);
  font-size: 15px;
  height: 200px;
}

.contactHeroForm > button {
  background-color: var(--cor1);
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.hero-section button:hover {
  background-color: #a39287;
  transform: translateY(-3px);
}

.btn-cta{
  padding:10px;
  background-color: var(--cor4);
  border-radius: 10px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  top: -60px;
}

.btn-cta:hover{
  color: white ;
  box-shadow: 1px 1px 5px black;

}


/*
   ------------------------------------------------------
   SEÇÃO HERO
   ------------------------------------------------------
*/
#container {
  padding-top: 6rem;
}

.hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  text-align: left;
  padding: 1rem 3% 2rem;
  background-color: var(--cor7);
  min-height: calc(100vh - 6rem);
  position: relative;
  overflow: hidden;
  gap: 5px;
}

.hero-content {
  z-index: 10;
  width: 250px;
  margin-bottom: 8rem;
}

.hero-content > h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cor5);
}

.hero-content > p {
  font-size: 16px;
  margin-bottom: 2rem;
  color: var(--cor4);
}

.hero-image-carousel {
  position: relative;
  width: 100%;
  margin-top: -170px;
  max-width: 600px;
  height: 800px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.hero-image-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image-carousel img.active {
  opacity: 1;
}

/*
   ------------------------------------------------------
   SEÇÃO SOBRE
   ------------------------------------------------------
*/
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: clamp(2rem, 6vw, 4rem) 5%;
  background-color: #fff;
  gap: clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}

.about-image {
  flex: 1 1 300px;
  max-width: 420px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
  object-fit: cover;
}

.about-text {
  flex: 1 1 320px;
  max-width: 720px;
}

.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cor5);
}

.about-text p {
  font-size: clamp(.95rem, 1.3vw, 1rem);
  margin-bottom: .9rem;
  color: var(--cor6);
  margin-bottom: 40px;
}

/*
   ------------------------------------------------------
   SEÇÃO GALERIA (FOTOS)
   ------------------------------------------------------
*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  cursor: pointer;
  border-radius: 12px;
  
}

.gallery-grid img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.05);
}

/* legenda sobreposta no hover */
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: .75rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7));
  opacity: 0;
  transform: translateY(20%);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-grid figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-header {
  text-align: center;
  padding: 30px;
}

/*
   ------------------------------------------------------
   BOTÕES WHATSAPP / CTA (com <img>) — compactos e fluidos
   ------------------------------------------------------
*/
.btn-whatsapp,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 8px;
  padding: .55rem .9rem;
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
  cursor: pointer;
  flex: 0 0 auto;
  width: auto;
  box-shadow: none;
}

.btn-whatsapp {
  background: #25D366;
  color: #0b2917;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, .35);
}

.btn-whatsapp img,
.btn-outline img {
  width: 16px;
  height: 16px;
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
}

.btn-outline {
  background: #fff;
  color: #5b2a75;
  border: 2px solid #e6b7ff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.btn-outline:hover {
  background: #f9f2ff;
  border-color: #d996ff;
  transform: translateY(-1px);
}

.cta-group {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}

/*
   ------------------------------------------------------
   SEÇÃO SERVIÇOS (CTAs no rodapé do card)
   ------------------------------------------------------
*/
.services-section {
  padding: clamp(2rem, 6vw, 4rem) 5%;
  text-align: center;
  background-color: #fff;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.2rem, 3vw, 2.5rem);
  color: var(--cor5);
}

/* Grid fluido sem media queries */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.service-card {
  background-color: var(--cor7);
  border: 1px solid var(--cor3);
  padding: clamp(1.1rem, 2.5vw, 2.5rem);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.service-card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--cor5);
  margin-bottom: .8rem;
}

.service-card p {
  color: var(--cor6);
  font-size: clamp(.95rem, 1.3vw, 1rem);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style-type: none;
  padding-left: 0;
}

.service-card li {
  font-size: clamp(.92rem, 1.2vw, .95rem);
  color: var(--cor6);
  margin-bottom: .5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✦";
  color: var(--cor1);
  position: absolute;
  left: 0;
  top: 0;
}

/* Garante CTA no rodapé do card */
.service-card .btn-whatsapp,
.service-card .cta-group {
  margin-top: auto;
}

/* Destaque suave para o card do Curso */
.service-card.highlight {
  border-color: #e6b7ff;
  box-shadow: 0 10px 24px rgba(230, 183, 255, .18);
}

/*
   ------------------------------------------------------
   SEÇÃO AVALIAÇÕES
   ------------------------------------------------------
*/
.testimonials-section {
  padding: clamp(2rem, 6vw, 4rem) 5%;
  text-align: center;
  background-color: var(--cor7);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.testimonial-card {
  background-color: #fff;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  text-align: left;
  border: 1px solid var(--cor2);
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  width: 56px;
  height: 56px;
  background-color: var(--cor3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: .9rem;
  flex-shrink: 0;
}

.info h4 {
  font-weight: 600;
  margin: 0;
  color: var(--cor5);
  font-size: 1rem;
}

.stars span {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--cor6);
  font-size: .95rem;
}

/*
   ------------------------------------------------------
   SEÇÃO CONTATO
   ------------------------------------------------------
*/
.contact-section {
  padding: clamp(2rem, 6vw, 4rem) 5%;
  text-align: center;
  background-color: #fff;
}

.contact-content-wrapper {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
}

.contact-form-card,
.contact-info-card {
  background-color: var(--cor7);
  padding: clamp(1.1rem, 2.5vw, 2.5rem);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  text-align: left;
  border: 1px solid var(--cor2);
}

.contact-form-card h3,
.contact-info-card h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cor5);
  display: flex;
  align-items: center;
  gap: .8rem;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.contact-form-card label {
  font-weight: 600;
  color: var(--cor5);
  margin-bottom: .3rem;
  display: block;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: .9rem;
  border: 1px solid var(--cor3);
  border-radius: 8px;
  font-family: var(--fonte-principal);
  font-size: 1rem;
  color: var(--cor4);
  background-color: #fff;
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card button {
  background-color: var(--cor1);
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all .3s ease;
  margin-top: 1rem;
}

.contact-form-card button:hover {
  background-color: #a39287;
  transform: translateY(-3px);
}

.contact-info-card p {
  margin-bottom: .8rem;
  color: var(--cor6);
}

.contact-info-card p strong {
  color: var(--cor5);
}

.contact-info-card h4 {
  font-size: 1.15rem;
  margin-top: 1.4rem;
  margin-bottom: .8rem;
  color: var(--cor5);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icons img {
  width: 42px;
  height: 42px;
  transition: transform .3s ease;
  border-radius: 10px;
}

.social-icons img:hover {
  transform: scale(1.06);
}

/*
   ------------------------------------------------------
   RODAPÉ
   ------------------------------------------------------
*/
footer {
  background-color: var(--cor5);
  color: #fff;
  padding: clamp(1.6rem, 4vw, 2.5rem) 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer-logo h1 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin: 0;
  color: #fff;
}

.footer-logo .material-symbols-outlined {
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: var(--cor1);
}

.desktop-footer-text {
  display: none;
  font-size: .95rem;
  color: var(--cor2);
}

.mobile-footer-text {
  font-size: .9rem;
  color: var(--cor2);
}

/*
   ------------------------------------------------------
   BOTÕES FLUTUANTES
   ------------------------------------------------------
*/
.whatsapp-float-button {
  position: fixed;
  bottom: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  border-radius: 50%;
  transition: transform .3s ease;
}

.whatsapp-float-button img {
  width: clamp(48px, 6vw, 60px);
  height: clamp(48px, 6vw, 60px);
  display: block;
}

.whatsapp-float-button:hover {
  transform: scale(1.06);
}

.back-to-top {
  position: fixed;
  bottom: calc(clamp(1rem, 3vw, 2rem) + clamp(54px, 6.5vw, 76px));
  right: clamp(1rem, 3vw, 2rem);
  z-index: 998;
  background-color: var(--cor1);
  color: #fff;
  width: clamp(42px, 5vw, 50px);
  height: clamp(42px, 5vw, 50px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  transition: all .3s ease;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.back-to-top:hover {
  background-color: #a39287;
  transform: translateY(-3px);
}

}