/* ============================================
   Natural Valle - Estilos gerais
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    background-color: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

/* --- Header --- */
.site-header {
    background-color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

/* --- Logo em vídeo (circular + máscara branca) --- */
.logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-video-mask {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffffff;
}

.logo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.4);
    display: block;
    vertical-align: middle;
}

/* --- Navegação --- */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(1rem, 2.5vw, 2.5rem);
}

.nav-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    padding: 0.35em 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #8bc24a;
}

.nav-link--active {
    color: #8bc24a;
}

.nav-link--active:hover,
.nav-link--active:focus {
    color: #7ab33d;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #8bc24a;
    display: block;
}


/* --- Responsivo --- */
@media (max-width: 900px) {

    .site-header {
        position: relative;
        z-index: 100;
    }

    .menu-toggle {
        display: flex;
        }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        padding: 1.5rem 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
    
    .main-nav.active {
        display: block;
        }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        }
    
    .nav-link {
        font-size: 1rem;
        }
    
    /* Remove o comportamento antigo */
    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        }
    }
    

/* ============================================
   Hero
   ============================================ */

/* Imagem de fundo: coloque "ChatGPT Image 5 de fev. de 2026, 15_01_46" em assets/images/hero-bg.png */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../assets/images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0.4;
    pointer-events: none;
}

.hero-title {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0 1rem;
    font-family: "Solway", serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.15;
    animation: hero-title-in 0.9s ease-out forwards;
}

@keyframes hero-title-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 50vh;
    }
  }

html {
    scroll-behavior: smooth;
  }  

/* ============================================
   Divisor
   ============================================ */

.divider-band {
    width: 100%;
    height: 30px;
    background-color: #f07f1f;
}

/* ============================================
   Counter
   ============================================ */

.counter-section {
    background-color: #f5f5dd;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-number {
    font-family: "Solway", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #8bc24a;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.counter-label {
    font-family: "Sora", sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 500;
    color: #673403;
    line-height: 1.4;
}

/* Responsivo Counter */
@media (max-width: 768px) {
    .counter-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .counter-item {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================
   About Us (Sobre Nós)
   ============================================ */

.about-section {
    background-color: #673403;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.about-container {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-content {
    flex: 1;
    color: #ffffff;
}

.about-title {
    font-family: "Solway", serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.about-text {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.about-text p {
    margin: 0 0 1.25rem 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsivo About */
@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-image-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .about-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
        text-align: center;
    }

    .about-text {
        text-align: left;
    }
}

/* ============================================
   Missão
   ============================================ */

.mission-section {
    position: relative;
    background-color: #f5f5dd;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    overflow: visible;
}

@media (max-width: 968px) {
    .mission-section {
        overflow-x: clip;
    }
}

/* Camada de castanhas: atrás do texto, sem interceptar cliques */
.mission-nuts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.mission-nut {
    position: absolute;
    height: auto;
    max-width: 50px;
    width: clamp(28px, 5vw, 50px);
    object-fit: contain;
    opacity: 0.95;
    will-change: transform;

}

#avela1 {
    height: auto;
    max-width: 70px!important;
    width: clamp(28px, 5vw, 70px)!important;
}

/* Posições das castanhas (rotação aplicada via JS para combinar com parallax) */
.mission-nuts .mission-nut:nth-child(1)  { top: -8%;  left: 5%; }
.mission-nuts .mission-nut:nth-child(2)  { top: 2%;   right: -3%; left: auto; }
.mission-nuts .mission-nut:nth-child(3)  { top: -12%; right: 25%; left: auto; } 
.mission-nuts .mission-nut:nth-child(4)  { top: -10%; left: 22%; }
.mission-nuts .mission-nut:nth-child(5)  { top: 5%;   right: 15%; left: auto; }
.mission-nuts .mission-nut:nth-child(6)  { top: -6%;  right: 8%;  left: auto; }
.mission-nuts .mission-nut:nth-child(7)  { top: -4%;  right: 3%;   left: auto; }
.mission-nuts .mission-nut:nth-child(8)  { top: -10%;  left: 12%; }
.mission-nuts .mission-nut:nth-child(9)  { top: 15%;   right: 10%;   left: auto; }
.mission-nuts .mission-nut:nth-child(10) { top: 2%;   left: 2%; }
.mission-nuts .mission-nut:nth-child(11) { top: 16%; left: 8%; }
.mission-nuts .mission-nut:nth-child(12) { top: 6%;   right: 28%;  left: auto; }
.mission-nuts .mission-nut:nth-child(13) { top: -3%; left: 28%; }
.mission-nuts .mission-nut:nth-child(14) { top: 10%; left: 18%; } 

.mission-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-family: "Solway", serif;
    font-size: 32px;
    font-weight: 700;
    color: #E26D3B;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.mission-text {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    color: #3D210B;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo Missão */
@media (max-width: 768px) {
    .mission-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .mission-text {
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }

    /* Castanhas mais afastadas do texto; algumas parcialmente fora da área */
    .mission-nut {
        max-width: 48px;
        width: clamp(24px, 8vw, 48px);
    }

    .mission-nuts .mission-nut:nth-child(1)  { top: -5%; left: 0; }
    .mission-nuts .mission-nut:nth-child(2)  { top: 2%;   right: -3%; left: auto; }
    .mission-nuts .mission-nut:nth-child(3)  { top: -5%;  left: -5%; }
    .mission-nuts .mission-nut:nth-child(4)  { top: 5%; left: 15%; }
    .mission-nuts .mission-nut:nth-child(5)  { top: 5%;   right: -8%; left: auto; }
    .mission-nuts .mission-nut:nth-child(6)  { top: -2%; right: -5%; left: auto; }
    .mission-nuts .mission-nut:nth-child(7)  { top: 2%;  right: -10%; left: auto; }
    .mission-nuts .mission-nut:nth-child(8)  { top: -12%; left: 5%; }
    .mission-nuts .mission-nut:nth-child(9)  { top: 12%;  right: -12%; left: auto; }
    .mission-nuts .mission-nut:nth-child(10) { top: -5%; right: 10%; left: auto; }
    .mission-nuts .mission-nut:nth-child(11) { top: 18%;  left: -8%; }
    .mission-nuts .mission-nut:nth-child(12) { top: 8%;   right: 15%; left: auto; }
    .mission-nuts .mission-nut:nth-child(13) { top: -2%;  left: 20%; }
    .mission-nuts .mission-nut:nth-child(14) { top: 10%;  left: 5%; }
}

#avela1 {
    display:none;
}

#avela24 {
    width: 38px;
}

/* ============================================
   Visão
   ============================================ */

.vision-section {
    background-color: #f5f5dd;
    padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
}

.vision-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-family: "Solway", serif;
    font-size: 32px;
    font-weight: 700;
    color: #E26D3B;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.vision-text {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    color: #673403;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo Visão */
@media (max-width: 768px) {
    .vision-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .vision-text {
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }
}

/* ============================================
   Valores (Acordeão)
   ============================================ */

.values-section {
    background-color: #f5f5dd;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.values-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.values-title {
    font-family: "Solway", serif;
    font-size: 32px;
    font-weight: 700;
    color: #E26D3B;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    cursor: pointer;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    background-color: #8BC34A;
    color: #3D210B;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.accordion-trigger:hover {
    background-color: #7cb33d;
}

.accordion-item--open .accordion-trigger {
    background-color: #3D210B;
    color: #FFFFFF;
}

.accordion-item--open .accordion-trigger:hover {
    background-color: #2d1808;
}

.accordion-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease;
}

.accordion-item .accordion-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233D210B'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.accordion-item--open .accordion-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M7 14l5-5 5 5z'/%3E%3C/svg%3E");
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #f5f5dd;
    transition: max-height 0.3s ease;
}

.accordion-item--open .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    margin: 0;
    padding: 1.25rem 1.25rem 1.5rem;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
}

/* Responsivo Valores */
@media (max-width: 768px) {
    .values-title {
        font-size: clamp(1.75rem, 4vw, 2rem);
    }

    .accordion-trigger {
        padding: 0.875rem 1rem;
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }

    .accordion-content p {
        padding: 1rem 1rem 1.25rem;
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }
}

/* ============================================
   Trabalhe Conosco
   ============================================ */

.work-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../assets/images/trabalheconosco-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(4rem, 10vw, 6rem) 1.5rem;
}

.work-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    line-height: 0;
}

.work-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background-color: #E26D3B;
    opacity: 0.4;
    z-index: 1;
}

.work-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 720px;
    padding-top: clamp(4rem, 12vw, 7rem);
}

.work-title {
    font-family: "Solway", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.work-text {
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 2rem 0;
}

.work-button {
    display: inline-block;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #E26D3B;
    border: 2px solid #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.work-button:hover {
    background-color: transparent;
}

/* Responsivo Trabalhe Conosco */
@media (max-width: 768px) {
    .work-section {
        min-height: 60vh;
        padding: 3rem 1rem;
    }

    .work-wave {
        height: 70px;
    }

    .work-inner {
        padding-top: 3.5rem;
    }

    .work-button {
        padding: 0.75rem 1.5rem;
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }
}

/* ============================================
   Footer (Parte 1)
   ============================================ */

.site-footer {
    width: 100%;
    background-color: #f5f5dd;
    padding: clamp(1.25rem, 3vw, 2rem) 1.5rem; 
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col--social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-social-label {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    color: #673403;
    margin: 0;
}

.footer-social-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #673403;
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.footer-social-btn:hover {
    background-color: #8bc24a;
    color: #ffffff;
}

.footer-social-icon {
    width: 22px;
    height: 22px;
}

.footer-col--logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 40%;
    max-width: 140px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-col--nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav-list {
    list-style: none;
    margin-bottom: 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.footer-nav-link {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    color: #673403;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: #8bc24a;
}

.footer-nav-link--active {
    color: #8bc24a;
}

/* Responsivo Footer */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-col--social {
        align-items: center;
    }

    .footer-col--logo {
        order: -1;
    }

    .footer-logo {
        width: 35%;
        max-width: 120px;
    }

    .footer-col--nav {
        justify-content: center;
    }

    .footer-nav-list {
        align-items: center;
    }
}

/* Linha marrom ocupando 100% da largura */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #673403;
  }
  
  /* Container pequeno com fundo decor */
  .footer-bottom {
    background-color: #f5f5dd;
    text-align: center;
    padding: 5px 0; /* 5px acima e abaixo do texto */
  }
  
  /* Texto do rodapé */
  .footer-bottom p {
    margin: 10px 0 0 0;
    font-size: 14px; /* ajuste se quiser */
    font-family: Roboto, sans-serif;
    color: #673403;
  }

  /* lojas */
  
  .lojas {
    background-color: #ffffff;
    padding: 3rem 1.5rem;
  }
  
  .lojas-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
  }
  
  .loja-card h3 {
    font-family: 'Solway', serif;
    color: #673403;
    margin-bottom: 1rem;
  }
  
  .loja-card img {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 4px;
  }
  
  .loja-card p {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    color: #673403;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  /* lojas outras cidades */
  .outras-cidades {
    background-color: #673403;
    padding: 4rem 2rem;
    color: #ffffff;
  }
  
  .outras-cidades h2 {
    text-align: center;
    font-family: "Solway", serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  
  /* GRID */
  .cidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* CARD */
  .cidade-card {
    text-align: center;
    font-family: "Sora", sans-serif;
  }
  
  .cidade-card h3 {
    font-family: "Solway", serif;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  .cidade-card .subtitulo {
    display: block;
    color: #8bc24a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .cidade-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  /* CENTRALIZA ITEM ÍMPAR NA ÚLTIMA LINHA */
  .cidade-card:last-child:nth-child(odd) {
    grid-column: 2;
  }

  /* em breve */
  .em-breve {
    background-color: #f5f5dd;
    text-align: center;
    padding: 4rem 1.5rem;
  }
  
  .em-breve h2 {
    font-family: "Solway", serif;
    font-size: 3rem;
    color: #f07f1f;
    margin-bottom: 1rem;
  }
  
  .em-breve h2 span {
    letter-spacing: 1px;
  }
  
  .em-breve .cidade {
    font-family: "Solway", sans-serif;
    font-size: 2rem;
    color: #f07f1f;
    font-weight: 600;
  }

  .titulo-cidade {
    background-color: #ffffff;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  
  .titulo-cidade h2 {
    font-family: "Solway", serif;
    font-size: 3rem;
    color: #673403;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
  }

  .phone-link {
    color: inherit;
    text-decoration: none;
  }
  
  .phone-link:hover {
    color: #8bc24a;
  }
  

  @media (max-width: 768px) {
    .lojas-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .loja-card img {
      max-width: 250px;
    }
    .cidades-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    
      /* remove o "truque" de centralizar item ímpar */
      .cidade-card:last-child:nth-child(odd) {
        grid-column: auto;
      }

      .titulo-cidade h2 {
        font-size: 2.2rem;
      }
    
      .outras-cidades h2 {
        font-size: 2rem;
      }
    
      .cidade-card h3 {
        font-size: 1.5rem;
      }
    }
  
  
  
