/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0E0E0E;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-image: url('fotos/logoheader.png');
    /*background-size: cover;*/
    background-size: 1200px;
   /* background-position: center;*/
    padding: 0 0 100px;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* NAV ajustada */
.main-nav {
    position: relative;
    z-index: 10;
    padding: 36px 0 8px;
    background: transparent;
    width: 100%;
}

/* Centralização dos itens */
.nav-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 90px;
    padding: 0;
    margin: 0;
    z-index: 20;
}

/* Linha branca mais curta e grossa */
.nav-list::before {
    content: "";
    position: absolute;
    bottom: -14px; /* distância entre o texto e a linha */
    height: 2px; /* espessura da linha */
    width: 840px; /* controla o comprimento total da linha */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%); /* centraliza a linha */
    pointer-events: none;
}

/* Links */
.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.02rem;
    letter-spacing: 0.6px;
    transition: color 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

/* Hover */
.nav-list a:hover {
    color: #f0c3ba;
}



/* ======== MENU HAMBÚRGUER CORRIGIDO ======== */

/* Ícone (3 barrinhas brancas menores e centralizadas) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 25px;
    top: 35px;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff; /* AGORA BRANCO */
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Overlay escurecido ao abrir */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(216, 170, 170, 0);
    display: none;
    z-index: 998;
}



@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        max-width: 300px;
        height: 100vh;
        background: rgb(255, 255, 255); /* fundo mais claro e limpo */
        backdrop-filter: blur(6px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -4px 0 15px rgba(0,0,0,0.15);
        padding: 25px;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list a {
        color: #000000; /* texto preto para melhor contraste */
        font-size: 1.15rem;
        font-weight: 400;
    }

    .nav-list a:hover {
        color: #d9b4ab;
    }

    .nav-list::before {
        display: none;
    }
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 0;
}

.logo {
    width: 500px;
    max-width: 90%;
    margin: 0 auto 40px;
    display: flex;
    filter: brightness(0) invert(1);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

/* Buttons */
.btn-primary,
.btn-green {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: rgba(217, 180, 171, 0.9);
    color: #fff;
}

.btn-primary:hover {
    background: rgba(217, 180, 171, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(217, 180, 171, 0.4);
}

.btn-green {
    background: rgba(217, 180, 171, 0.9);
    color: #fff;
}

.btn-green:hover {
    background: rgba(217, 180, 171, 1);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #0E0E0E;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #d9b4ab;
    font-weight: 400;
}

/* Porque Pilates - Cards com overlay */
.porque-pilates-section {
    background: #fff;
    padding: 80px 0;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-img {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.benefit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card-img:hover img {
    transform: scale(1.05);
}

.benefit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    color: white;
    padding: 105px 10px;
    text-align: center;
}

.benefit-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    white-space: nowrap; 
    margin-bottom: 10px;
    color: #000000;
}

.benefit-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #000000;
}

/* CTA Banner */
.cta-banner-green {
    background: #d9b4ab;
    padding: 60px 20px;
    text-align: center;
}


/* Button agende seu horario */ 
button {
  position: relative;
  padding: 15px 45px;
  background: #fec195;
  font-size: 17px;
  font-weight: 500;
  color: #181818;
  cursor: pointer;
  border: 1px solid #fec195;
  border-radius: 8px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

button:hover {
  border: 1px solid #f3b182;
  background: linear-gradient(
    85deg,
    #fec195,
    #fcc196,
    #fabd92,
    #fac097,
    #fac39c
  );
  animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
  0% {
    background-position: 0% 50%;
  }

  0% {
    background-position: 50% 100%;
  }

  0% {
    background-position: 0% 50%;
  }
}

.icon-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

button:hover .icon-1 {
  animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
  transform: rotate(10deg);
}

@keyframes slay-1 {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.icon-2 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  transform: rotate(10deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

button:hover .icon-2 {
  animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

.icon-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  transform: rotate(-5deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

button:hover .icon-3 {
  animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-3 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}




.cta-banner-green h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Além Disso - Grid 2x2 */
.alem-disso-section {
    background: #fff;
    padding: 80px 0;
}

.alem-disso-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #0E0E0E;
    margin-bottom: 60px;
    font-weight: 400;
}

.indicacoes-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.indicacao-box {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.bg-verde {
    background: #d9b4ab;
}

.bg-cinza {
    background: #666;
}

.indicacao-text {
    color: #fff;
}

.indicacao-text h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.indicacao-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
}

.indicacao-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Carrossel Coverflow */
.nosso-espaco-section {
    background: #F5F5F5;
    padding: 80px 0;
}

.carousel-container {
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 0 10%;
}

.carousel-track img {
    min-width: 33.33%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s ease;
}

.carousel-track img.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-track.testimonials img {
    height: 350px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots span.active {
    background: #d9b4ab;
}

/* Features List */
.features-list {
    list-style: none;
    max-width: 600px;
    margin: 50px auto 0;
    text-align: left;
}

.features-list li {
    font-size: 1rem;
    color: #0E0E0E;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet {
    color: #d9b4ab;
    font-size: 0.8rem;
}

/* Feedbacks */
.feedbacks-section {
    background: #fff;
    padding: 80px 0;
}

/* Sobre Pilates */
.sobre-pilates-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.sobre-pilates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text {
    text-align: left;
}

.sobre-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sobre-img {
    display: flex;
    justify-content: flex-end; /* padrão: direita no desktop */
}

.sobre-img video {
    width: 50%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Media query para telas pequenas (celular) */
@media (max-width: 768px) {
    .sobre-img {
        justify-content: center; /* centraliza no celular */
    }

    .sobre-img video {
        width: 90%; /* ocupa mais espaço no celular */
    }
}




/* Contato */
.contato-section {
    background: #fff;
    padding: 80px 0;
}

.contato-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 30px 0 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #F5F5F5;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: #d9b4ab;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #d9b4ab;
    margin-bottom: 25px;
    font-weight: 400;
}

.phone-number {
    font-size: 1.2rem;
    color: #d9b4ab;
    font-weight: 400;
}

/* Localização */
.localizacao-section {
    background: #F5F5F5;
    padding: 80px 0;
}

.localizacao-section .section-header h2 {
    color: #d9b4ab;
}

.localizacao-section .section-subtitle {
    color: #0E0E0E;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.7;
}

.map-wrapper {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    display: block;
}

/* Instagram */
.instagram-section {
    background: #fff;
    padding: 80px 0;
}

.instagram-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.instagram-text {
    flex: 1;
    min-width: 300px;
}

.instagram-text h2 {
    font-size: 2.2rem;
    color: #0E0E0E;
    margin-bottom: 30px;
    font-weight: 600;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #d9b4ab;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
}

.instagram-link svg {
    width: 40px;
    height: 40px;
    fill: #d9b4ab;
}

.instagram-mockup {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.instagram-mockup img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background: #F5F5F5;
    color: #d9b4ab;
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    font-size: 0.95rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-pilates-content {
        grid-template-columns: 1fr;
    }

    .carousel-track img {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    /* Menu hambúrguer */
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        justify-content: flex-start;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 80px 20px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .benefits-cards,
    .indicacoes-grid-2x2,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .carousel-track img {
        min-width: 80%;
        height: 300px;
    }

    .instagram-content {
        flex-direction: column;
        text-align: center;
    }

    .instagram-link {
        justify-content: center;
    }

    .sobre-text .section-header {
        text-align: center;
    }

    .cta-banner-green h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-green {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .logo {
        width: 500px;
    }

    .carousel-track img {
        min-width: 100%;
        height: 250px;
    }
}