/* ============================================================
   LYNCY JOIAS - Custom Styles
   ============================================================ */

/* --- CSS Custom Properties (Paleta do guia: #4C5131 + #FFFFFF | Tipografia: Roseritta / Alegreya Sans) --- */
:root {
    /* Paleta principal do guia */
    --verde-oliva: #4C5131;
    --branco: #FFFFFF;

    /* Cores complementares (mantidas para botões e destaques) */
    --verde-mata: #4C5131;
    --terracota: #C46A3A;
    --areia: #F4EFE8;
    --dourado: #C9A24B;
    --grafite: #2B2B2B;
    --verde-salvia: #A8B8A1;
    --creme-perola: #FAF8F4;
    --terracota-escuro: #A34E27;
    --bronze: #8B6A3E;

    /* Tipografia: Rosarivo (serif elegante, similar a Roseritta) + Alegreya Sans */
    --font-heading: 'Rosarivo', Georgia, serif;
    --font-body: 'Alegreya Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--grafite);
    background-color: var(--creme-perola);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--verde-mata);
    font-weight: 600;
}

a {
    color: var(--terracota);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--terracota-escuro);
}

img { max-width: 100%; height: auto; }

/* --- Utility Classes --- */
.bg-verde-mata { background-color: var(--verde-mata) !important; }
.bg-verde-oliva { background-color: var(--verde-oliva) !important; }
.bg-branco { background-color: var(--branco) !important; }
.bg-terracota { background-color: var(--terracota) !important; }
.bg-areia { background-color: var(--areia) !important; }
.bg-creme-perola { background-color: var(--creme-perola) !important; }
.bg-verde-salvia { background-color: var(--verde-salvia) !important; }

.text-verde-mata { color: var(--verde-mata) !important; }
.text-verde-oliva { color: var(--verde-oliva) !important; }
.text-terracota { color: var(--terracota) !important; }
.text-dourado { color: var(--dourado) !important; }
.text-grafite { color: var(--grafite) !important; }
.text-bronze { color: var(--bronze) !important; }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

/* --- Buttons --- */
.btn-terracota {
    background-color: var(--terracota);
    color: #fff;
    border: 2px solid var(--terracota);
    padding: 0.625rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.btn-terracota:hover, .btn-terracota:focus {
    background-color: var(--terracota-escuro);
    border-color: var(--terracota-escuro);
    color: #fff;
}

.btn-outline-terracota {
    background-color: transparent;
    color: var(--terracota);
    border: 2px solid var(--terracota);
    padding: 0.625rem 1.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-terracota:hover {
    background-color: var(--terracota);
    color: #fff;
}

.btn-verde {
    background-color: var(--verde-mata);
    color: #fff;
    border: 2px solid var(--verde-mata);
    padding: 0.625rem 1.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-verde:hover {
    background-color: #243D36;
    border-color: #243D36;
    color: #fff;
}

.btn-outline-verde {
    background-color: transparent;
    color: var(--verde-mata);
    border: 2px solid var(--verde-mata);
    padding: 0.625rem 1.75rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-verde:hover {
    background-color: var(--verde-mata);
    color: #fff;
}

.btn-dourado {
    background-color: var(--dourado);
    color: #fff;
    border: 2px solid var(--dourado);
    font-weight: 500;
    transition: var(--transition);
}

.btn-dourado:hover {
    background-color: var(--bronze);
    border-color: var(--bronze);
    color: #fff;
}

/* --- Navbar --- */
.navbar-lyncy {
    background-color: var(--verde-mata);
    padding: 0 0;
    min-height: 72px;
    transition: var(--transition);
    border: none;
    border-bottom: none;
    box-shadow: none;
}

.navbar-lyncy .container {
    min-height: 72px;
    align-items: stretch;
}

.navbar-lyncy.scrolled {
    background-color: var(--verde-mata);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Espaçador igual à altura da navbar: evita espaço/linha entre navbar e hero */
.navbar-spacer {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.navbar-lyncy .navbar-brand {
    display: flex;
    align-items: center;
    height: 72px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-lyncy .navbar-brand img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
}

.navbar-lyncy .navbar-brand img.navbar-logo,
.navbar-lyncy .navbar-brand img.navbar-logo-rect {
    width: auto;
    height: 100%;
    max-height: none;
    border-radius: 0;
    object-fit: contain;
    margin-right: 0;
}

.navbar-lyncy .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.navbar-lyncy .nav-link:hover,
.navbar-lyncy .nav-link.active {
    color: #fff;
}

.navbar-lyncy .nav-icon {
    font-size: 1.2rem;
    position: relative;
    color: #fff !important;
}

.navbar-lyncy .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(47, 79, 70, 0.1);
}
.navbar-lyncy .dropdown-item {
    color: var(--grafite);
}
.navbar-lyncy .dropdown-item:hover {
    background: var(--areia);
    color: var(--verde-mata);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--terracota);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* --- Search Bar --- */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.search-overlay.active { display: flex; }

.search-box {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
}

.search-box input {
    border: 2px solid var(--areia);
    border-radius: 6px;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
}

.search-box input:focus {
    border-color: var(--terracota);
    box-shadow: 0 0 0 3px rgba(196, 106, 58, 0.15);
}

.search-results { max-height: 300px; overflow-y: auto; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--areia);
    color: var(--grafite);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-item:hover { background-color: var(--areia); }

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

/* Hero com carrossel — proporção fixa 1024×500, altura sem distorção */
.hero-carousel-section {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: calc(500 / 1024 * 100%);
    min-height: 0 !important;
    max-height: none;
    margin-top: 0;
    position: relative;
}
.hero-carousel-section #heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-carousel-section .carousel-item {
    background-color: var(--grafite);
}
.hero-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    z-index: 3;
    width: 4%;
    opacity: 0.8;
}
.hero-carousel-section .carousel-control-prev:hover,
.hero-carousel-section .carousel-control-next:hover {
    opacity: 1;
}
.hero-carousel-section .carousel-indicators {
    z-index: 3;
    margin-bottom: 1.5rem;
}
.hero-carousel-section .hero-content-wrapper {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

/* Logo no hero: centro, acima dos indicadores do carrossel */
.hero-logo-corner {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: block;
    line-height: 0;
}
.hero-logo-corner img {
    width: auto;
    max-height: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(47, 79, 70, 0.75) 0%, rgba(43, 43, 43, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-content .hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dourado);
    margin-bottom: 1rem;
}

.hero-content .hero-text {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 2rem;
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--verde-mata);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--bronze);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--dourado);
    margin: 1rem auto 2.5rem;
}

/* --- Story / About Section --- */
.story-section { background-color: #fff; }

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.story-text .lead-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--verde-mata);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--dourado);
    padding-left: 1.25rem;
}

.legal-content h2 {
    font-family: var(--font-heading);
    color: var(--verde-mata);
    font-size: 1.45rem;
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
}

.legal-content h2:first-of-type {
    margin-top: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.legal-content li {
    margin-bottom: 0.45rem;
}

.legal-content a {
    color: var(--terracota);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--verde-mata);
}

/* --- Collection Cards --- */
.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

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

.collection-card:hover img { transform: scale(1.08); }

.collection-card .card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(43, 43, 43, 0.8) 0%, rgba(43, 43, 43, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.collection-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(47, 79, 70, 0.9) 0%, rgba(47, 79, 70, 0.2) 60%);
}

.collection-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.collection-card .card-link {
    color: var(--dourado);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.collection-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

/* --- Product Cards --- */
.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.product-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: var(--areia);
}

.product-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card .card-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card .card-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition);
    color: var(--grafite);
}

.product-card .card-action-btn:hover {
    background: var(--terracota);
    color: #fff;
}

.product-card .card-action-btn.in-wishlist {
    color: var(--terracota);
}

.product-card .badge-sustainable {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--verde-mata);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.product-card .badge-sale {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--terracota);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .card-category {
    font-size: 0.75rem;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.product-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--grafite);
    margin-bottom: 0.5rem;
}

.product-card .card-title a {
    color: var(--grafite);
}

.product-card .card-title a:hover { color: var(--terracota); }

.product-card .price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--verde-mata);
}

.product-card .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

/* --- Process Section --- */
.process-section {
    background: var(--verde-mata);
    position: relative;
    overflow: hidden;
}

.process-section-bg-accent {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse at center, rgba(201,162,75,0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* Cabeçalho da seção */
.process-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--dourado);
    margin-bottom: 0.5rem;
    display: block;
}

.process-title { color: #fff !important; }

.process-subtitle {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.95rem;
    max-width: 480px;
    margin-inline: auto;
}

.process-divider {
    background: var(--dourado) !important;
    opacity: 0.7;
}

/* Linha de trilha conectora */
.process-track {
    position: relative;
    height: 0;
    margin-bottom: -1.5rem;
}

.process-track-line {
    position: absolute;
    top: 54px; /* alinha ao centro dos ícones */
    left: calc(12.5% + 40px);
    right: calc(12.5% + 40px);
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(201,162,75,0.35) 15%,
        rgba(201,162,75,0.35) 85%,
        transparent 100%
    );
    z-index: 0;
}

/* Cards de etapa */
.process-step {
    text-align: center;
    padding: 2.25rem 1.5rem 2rem;
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,162,75,0.18);
    border-radius: 18px;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.process-step:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(201,162,75,0.55);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Número decorativo de fundo */
.process-step-bg-num {
    position: absolute;
    bottom: -0.5rem;
    right: 0.75rem;
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(201,162,75,0.07);
    pointer-events: none;
    user-select: none;
    transition: color 0.35s ease;
}

.process-step:hover .process-step-bg-num {
    color: rgba(201,162,75,0.13);
}

/* Variant highlight (última etapa) */
.process-step--highlight {
    border-color: rgba(201,162,75,0.4);
    background: rgba(201,162,75,0.06);
}

.process-step--highlight:hover {
    background: rgba(201,162,75,0.12);
}

/* Topo do card: ícone + badge */
.process-step-top {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.process-step .step-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(201,162,75,0.5);
    color: var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-icon {
    background: var(--dourado);
    border-color: var(--dourado);
    color: var(--verde-mata);
    box-shadow: 0 0 30px rgba(201,162,75,0.35);
}

/* Badge numérico no topo do ícone */
.step-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dourado);
    color: var(--verde-mata);
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    z-index: 2;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0;
}

/* Rodapé da seção */
.process-footer-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.btn-outline-process {
    background: transparent;
    color: var(--dourado);
    border: 1px solid rgba(201,162,75,0.55);
    padding: 0.6rem 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-process:hover {
    background: var(--dourado);
    border-color: var(--dourado);
    color: var(--verde-mata);
}

/* Seta legada — mantida por compatibilidade, oculta por padrão */
.process-arrow {
    display: none;
}

/* --- Features / Diferenciais --- */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: #fff;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--areia);
    color: var(--verde-mata);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #777;
    margin: 0;
}

/* --- Instagram Section --- */
.instagram-section { background: #fff; }

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-item:hover img { transform: scale(1.1); }

.instagram-item .ig-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(47, 79, 70, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .ig-overlay { opacity: 1; }

.instagram-item .ig-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--verde-mata);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-family: var(--font-heading);
    color: var(--dourado);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer a:hover { color: var(--dourado); }

.footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* --- WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* --- Product Detail Page --- */
.product-gallery .main-image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--areia);
    aspect-ratio: 1;
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-gallery .thumb-list {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-gallery .thumb-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery .thumb-item.active,
.product-gallery .thumb-item:hover {
    border-color: var(--terracota);
}

.product-gallery .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail .product-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--verde-mata);
}

.product-detail .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-mata);
}

.product-detail .product-price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-detail .sustainable-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--areia);
    color: var(--verde-mata);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-detail .certificate {
    font-size: 0.85rem;
    color: var(--bronze);
    border: 1px dashed var(--bronze);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

/* --- Breadcrumb --- */
.breadcrumb-lyncy {
    background: none;
    padding: 1.5rem 0 0.5rem;
}

.breadcrumb-lyncy .breadcrumb-item a { color: var(--bronze); }
.breadcrumb-lyncy .breadcrumb-item.active { color: var(--grafite); }

/* --- Filter Sidebar --- */
.filter-section h6 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--verde-mata);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--areia);
}

.filter-section .form-check-label {
    font-size: 0.9rem;
    color: #555;
}

/* --- Pagination --- */
.pagination .page-link {
    color: var(--verde-mata);
    border-color: var(--areia);
}

.pagination .page-item.active .page-link {
    background-color: var(--verde-mata);
    border-color: var(--verde-mata);
    color: #fff;
}

/* --- Cart / Checkout --- */
.cart-table th {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--verde-mata);
    border-bottom: 2px solid var(--areia);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-summary {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* --- Auth Pages --- */
.auth-wrapper {
    max-width: 480px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.auth-wrapper h2 {
    font-family: var(--font-heading);
    color: var(--verde-mata);
    margin-bottom: 2rem;
}

/* --- Account Pages --- */
.account-sidebar .list-group-item {
    border: none;
    padding: 0.75rem 1.25rem;
    color: var(--grafite);
    font-size: 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.account-sidebar .list-group-item:hover,
.account-sidebar .list-group-item.active {
    background-color: var(--areia);
    color: var(--verde-mata);
    font-weight: 500;
}

/* --- Alerts --- */
.alert-lyncy {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

/* --- Scroll Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Cart Sidebar --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open { right: 0; }

.cart-sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.cart-sidebar-overlay.open { display: block; }

.cart-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--areia);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--areia);
}

.cart-sidebar-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--areia);
}

.cart-sidebar-item img {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
}

/* --- Image Zoom Modal --- */
.zoom-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.zoom-modal.active { display: flex; }

.zoom-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .collection-card { height: 250px; }
}

@media (max-width: 767.98px) {
    .hero-section { min-height: 85vh; }
    .hero-carousel-section { min-height: unset; }
    .hero-content h1 { font-size: 2.2rem; letter-spacing: 0.1em; }
    .hero-content .hero-subtitle { font-size: 1rem; }
    .hero-logo-corner { bottom: 2.5rem; }
    .hero-logo-corner img { max-height: 152px; }
    .section-padding { padding: 3.5rem 0; }
    .section-title { font-size: 1.75rem; }
    .story-image img { height: 300px; }
    .process-arrow { display: none; }
}

@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 1.8rem; }
    .navbar-lyncy .navbar-brand { font-size: 1.25rem; }
    .collection-card { height: 200px; }
}

/* ============================================================
   QUEM SOMOS — About Page
   ============================================================ */

/* --- Hero --- */
.about-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: url('../images/about-hero-bg.jpg') center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(47, 79, 70, 0.88) 0%, rgba(43, 43, 43, 0.65) 100%);
}

.about-hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(201, 162, 75, 0.4);
    border-radius: 20px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    line-height: 1.8;
}

.about-hero-divider {
    width: 60px;
    height: 2px;
    background: var(--dourado);
    margin-top: 2rem;
}

/* --- Labels --- */
.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracota);
    margin-bottom: 0.75rem;
}

/* --- Story Section --- */
.about-story-section {
    background: #fff;
}

.about-image-frame {
    position: relative;
    padding: 1.5rem;
}

.about-image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border: 2px solid var(--dourado);
    border-radius: 12px;
    opacity: 0.4;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(47, 79, 70, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: -12px;
    right: 2rem;
    background: var(--verde-mata);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2;
}

.about-image-badge i { color: var(--dourado); }

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.about-lead-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--verde-mata);
    line-height: 1.5;
    margin-bottom: 1.75rem;
    position: relative;
    padding-left: 0;
}

.about-quote-mark {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dourado);
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 0.15rem;
    opacity: 0.6;
}

.about-text-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1rem;
}

/* Signature */
.about-signature {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-signature-line {
    width: 40px;
    height: 1px;
    background: var(--dourado);
}

.about-signature span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--verde-mata);
}

.about-signature small {
    font-size: 0.8rem;
    color: var(--bronze);
    letter-spacing: 0.04em;
}

/* --- Timeline --- */
.about-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.about-timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--dourado), var(--verde-salvia));
}

.about-timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 2.5rem;
}

.about-timeline-item:last-child { padding-bottom: 0; }

.about-timeline-dot {
    position: absolute;
    left: 11px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid var(--dourado);
    border-radius: 50%;
    z-index: 1;
}

.about-timeline-dot.active {
    background: var(--dourado);
    box-shadow: 0 0 0 6px rgba(201, 162, 75, 0.2);
}

.about-timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.about-timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.about-timeline-year {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracota);
    display: inline-block;
    margin-bottom: 0.35rem;
}

.about-timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-timeline-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

/* --- Process Cards --- */
.about-process-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.about-process-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.about-process-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--areia);
    line-height: 1;
}

.about-process-icon {
    margin-bottom: 1.25rem;
}

.about-process-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--verde-mata);
    margin-bottom: 0.75rem;
}

.about-process-card p {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* --- Values (dark section) --- */
.about-values-section {
    background: var(--verde-mata);
}

.about-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    height: 100%;
    transition: var(--transition);
}

.about-value-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(201, 162, 75, 0.3);
    transform: translateY(-3px);
}

.about-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 162, 75, 0.15);
    color: var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.about-value-card h5 {
    font-family: var(--font-heading);
    color: #fff !important;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.about-value-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.7;
}

/* --- Paraty Section --- */
.about-paraty-gallery {
    position: relative;
    padding: 1.5rem;
    min-height: 400px;
}

.about-paraty-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-paraty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-paraty-img-1 {
    width: 70%;
    height: 340px;
    position: relative;
    z-index: 2;
}

.about-paraty-img-2 {
    width: 55%;
    height: 240px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    border: 4px solid #fff;
}

.about-paraty-accent {
    position: absolute;
    top: 0;
    right: 1.5rem;
    width: 120px;
    height: 120px;
    border: 2px solid var(--verde-salvia);
    border-radius: 50%;
    opacity: 0.3;
}

.about-paraty-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--areia);
}

.about-paraty-stat { text-align: center; }

.about-paraty-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-mata);
}

.about-paraty-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--bronze);
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

.about-paraty-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--areia);
}

/* --- Certificate Section --- */
.about-certificate-visual {
    display: flex;
    justify-content: center;
}

.about-certificate-frame {
    width: 280px;
    height: 360px;
    border: 2px solid var(--dourado);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.about-certificate-frame::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(201, 162, 75, 0.25);
    border-radius: 12px;
}

.about-certificate-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-certificate-inner i {
    font-size: 2.5rem;
    color: var(--dourado);
    margin-bottom: 1rem;
}

.about-certificate-inner h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--verde-mata);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-certificate-line {
    width: 50px;
    height: 1px;
    background: var(--dourado);
    margin-bottom: 1rem;
}

.about-certificate-inner p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--verde-mata);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.about-certificate-inner small {
    font-size: 0.75rem;
    color: var(--bronze);
}

.about-cert-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
}

.about-cert-item i { font-size: 1rem; }

/* --- CTA Section --- */
.about-cta-section {
    position: relative;
    padding: 5rem 0;
    background: url('../images/cta-bg.jpg') center/cover no-repeat;
}

.about-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(47, 79, 70, 0.9) 0%, rgba(43, 43, 43, 0.75) 100%);
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff !important;
    margin-bottom: 1rem;
}

.about-cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto;
}

/* --- About Responsive --- */
@media (max-width: 991.98px) {
    .about-hero-title { font-size: 2.5rem; }
    .about-image-wrapper img { height: 400px; }
    .about-paraty-stats { flex-wrap: wrap; gap: 1rem; }
    .about-paraty-img-1 { width: 100%; height: 280px; }
    .about-paraty-img-2 { position: relative; width: 70%; margin-top: -2rem; margin-left: auto; }
    .about-paraty-accent { display: none; }
}

@media (max-width: 767.98px) {
    .about-hero { padding: 4rem 0 3rem; min-height: 320px; }
    .about-hero-title { font-size: 2rem; }
    .about-hero-text { font-size: 0.95rem; }
    .about-image-wrapper img { height: 320px; }
    .about-image-accent { display: none; }
    .about-lead-quote { font-size: 1.3rem; }
    .about-timeline-item { padding-left: 50px; }
    .about-certificate-frame { width: 240px; height: 300px; }
    .about-cta-title { font-size: 2rem; }
    .about-paraty-stats { justify-content: center; }
}

@media (max-width: 575.98px) {
    .about-hero-title { font-size: 1.65rem; }
    .about-signature { flex-wrap: wrap; gap: 0.5rem; }
}
