:root {
    --terracota: #A65B42;
    --marrom: #41322A;
    --verde: #4b6043;
    --creme: #F2E7DA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--creme);
    color: var(--marrom);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Títulos usam Lora — elegância e presença espiritual */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(242, 231, 218, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--verde);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: .25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    width: 80px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link-catalog {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--marrom);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link-catalog::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracota);
    transition: width 0.3s ease;
}

.nav-link-catalog:hover {
    color: var(--terracota);
}

.nav-link-catalog:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--verde);
    color: var(--creme);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-cta:hover {
    background-color: var(--marrom);
    transform: translateY(-2px);
}

/* Main */
main {
    margin-top: 100px;
}

/* Hero Section */
.hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    padding: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    opacity: 1;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.eyebrow-bar {
    display: block;
    width: 36px;
    height: 1.5px;
    background-color: var(--terracota);
    flex-shrink: 0;
}

.eyebrow-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--terracota);
    font-weight: 400;
}

/* Brand name */
.hero-brand {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(5.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--marrom);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-brand-logo {
    width: 160px;
    height: auto;
    flex-shrink: 0;
}

.hero-brand-text {
    line-height: 1;
}

/* Phrase cycling stage */
.hero-phrase-stage {
    display: grid;
    min-height: 100px;
    align-items: center;
    margin-bottom: 1.2rem;
}

.hero-phrase {
    grid-area: 1 / 1;
    font-family: 'Josefin Sans', 'Raleway', 'serif';
    font-weight: 500;
    color: var(--marrom);
    line-height: 1.1;
    max-width: 95%;
    visibility: hidden;
    opacity: 0;
}

/* Size variants */
.phrase-xs { font-size: clamp(0.85rem, 1.1vw, 1rem); opacity: 0.65; }
.phrase-sm { font-size: clamp(1rem, 1.4vw, 1.2rem); }
.phrase-md { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 400; }
.phrase-lg { font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 400; }
.phrase-xl { font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 600; line-height: 1.0; }

/* Color variants */
.phrase-terracota { color: var(--terracota); }
.phrase-verde     { color: var(--verde); }
.phrase-italic    { font-style: italic; }

/* Progress bar */
.phrase-progress {
    width: 100%;
    max-width: 260px;
    height: 1px;
    background-color: rgba(65, 50, 42, 0.12);
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.phrase-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, var(--terracota), var(--verde));
    transform: scaleX(0);
    transform-origin: left center;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background-color: #25D366;
    color: white;
}

.cta-primary:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--marrom);
    border: 2px solid var(--marrom);
}

.cta-secondary:hover {
    background-color: var(--marrom);
    color: var(--creme);
    transform: translateY(-3px);
}

/* 3D Stage — right column for 3D model */
.hero-3d-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 640px;
}

.hero-3d-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(166, 91, 66, 0.18);
}

.hero-3d-ring--outer {
    width: 440px;
    height: 440px;
    border-color: rgba(166, 91, 66, 0.1);
    animation: ring-spin 50s linear infinite;
}

.hero-3d-ring--mid {
    width: 310px;
    height: 310px;
    border-color: rgba(75, 96, 67, 0.13);
    border-style: dashed;
    animation: ring-spin 30s linear infinite reverse;
}

.hero-3d-ring--inner {
    width: 190px;
    height: 190px;
    border-color: rgba(166, 91, 66, 0.1);
    animation: ring-pulse 5s ease-in-out infinite;
}

.hero-3d-glow {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 91, 66, 0.06) 0%, rgba(75, 96, 67, 0.04) 40%, transparent 70%);
    animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes glow-breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ─────────────────────────────────────
   Model Carousel (model-viewer)
───────────────────────────────────── */
.model-carousel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem 0.5rem;
}

.model-track {
    width: 100%;
    flex: 1;
    position: relative;
    min-height: 630px;
}

.model-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.model-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Frame ao redor do model-viewer — sem borda */
.model-viewer-frame {
    position: relative;
    width: 100%;
    border-radius: 14px;
    background: transparent;
    border: none;
    box-shadow:
        0 30px 80px rgba(65, 50, 42, 0.22),
        0 0 60px rgba(166, 91, 66, 0.1);
    animation: frame-breathe 5s ease-in-out infinite;
}

/* Glow suave externo (blur no pseudo-elemento) */
.model-viewer-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 28px;
    background: radial-gradient(ellipse at 40% 60%,
        rgba(166, 91, 66, 0.22),
        rgba(75, 96, 67, 0.14) 50%,
        rgba(65, 50, 42, 0.06) 80%,
        transparent 100%
    );
    filter: blur(18px);
    z-index: -1;
    animation: frame-breathe 5s ease-in-out infinite alternate;
}

/* Vinheta interna — sombreamento que valoriza os traços do modelo */
.model-vignette {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background:
        radial-gradient(
            ellipse 90% 90% at 50% 50%,
            transparent 42%,
            rgba(41, 28, 20, 0.28) 72%,
            rgba(41, 28, 20, 0.52) 100%
        );
    pointer-events: none;
    z-index: 1;
}

/* Cantos ornamentais — colchetes sagrados */
.frame-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 2;
    opacity: 0.9;
}

.frame-corner--tl {
    top: -8px; left: -8px;
    border-top: 2.5px solid var(--terracota);
    border-left: 2.5px solid var(--terracota);
    border-radius: 5px 0 0 0;
}
.frame-corner--tr {
    top: -8px; right: -8px;
    border-top: 2.5px solid var(--terracota);
    border-right: 2.5px solid var(--terracota);
    border-radius: 0 5px 0 0;
}
.frame-corner--bl {
    bottom: -8px; left: -8px;
    border-bottom: 2.5px solid var(--verde);
    border-left: 2.5px solid var(--verde);
    border-radius: 0 0 0 5px;
}
.frame-corner--br {
    bottom: -8px; right: -8px;
    border-bottom: 2.5px solid var(--verde);
    border-right: 2.5px solid var(--verde);
    border-radius: 0 0 5px 0;
}

@keyframes frame-breathe {
    0%, 100% {
        box-shadow:
            0 0 0 5px rgba(166, 91, 66, 0.05),
            0 30px 70px rgba(65, 50, 42, 0.16),
            0 0 40px rgba(166, 91, 66, 0.06);
    }
    50% {
        box-shadow:
            0 0 0 7px rgba(166, 91, 66, 0.09),
            0 34px 80px rgba(65, 50, 42, 0.24),
            0 0 65px rgba(166, 91, 66, 0.13);
    }
}

/* Loading overlay — logo Ayê com animação de pulso espiritual */
.model-loading-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(242, 231, 218, 0.55);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}

.model-loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.model-loading-logo {
    width: 90px;
    height: auto;
    animation: aye-loading-pulse 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(166, 91, 66, 0.5));
}

@keyframes aye-loading-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(166, 91, 66, 0.4));
        opacity: 0.85;
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 22px rgba(166, 91, 66, 0.75));
        opacity: 1;
    }
}

/* O elemento model-viewer */
.model-viewer-el {
    width: 100%;
    height: 580px;
    background: transparent;
    --poster-color: transparent;
    display: block;
    border-radius: 12px;
}

.model-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--verde);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 0.6rem;
    opacity: 0.8;
}

/* Rodapé: prev · dots · next */
.model-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
}

.model-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(166, 91, 66, 0.25);
    background: rgba(242, 231, 218, 0.85);
    color: var(--marrom);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.model-nav:hover {
    background: var(--terracota);
    border-color: var(--terracota);
    color: var(--creme);
    transform: scale(1.1);
}

.model-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.model-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(166, 91, 66, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.model-dot.active {
    background: var(--terracota);
    transform: scale(1.4);
}

/* ─────────────────────────────────────
   Seção Instagram
───────────────────────────────────── */
.instagram-section {
    padding: 6rem 2rem;
    background: var(--marrom);
    position: relative;
    overflow: hidden;
}

/* Textura de fundo sutil */
.instagram-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(166, 91, 66, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(75, 96, 67, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Cabeçalho */
.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-section .section-title {
    color: var(--creme);
    margin-bottom: 0.8rem;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--terracota);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ig-logo-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.instagram-subtitle {
    font-family: 'Raleway', sans-serif;
    color: rgba(242, 231, 218, 0.65);
    font-size: 1rem;
    font-style: italic;
}

/* Grid de posts */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

/* Post individual */
.ig-post {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    background: rgba(65, 50, 42, 0.6);
    border: 1px solid rgba(166, 91, 66, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ig-post:hover {
    transform: translateY(-4px);
    border-color: rgba(166, 91, 66, 0.4);
}

.ig-post-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.ig-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ig-post:hover .ig-post-img {
    transform: scale(1.07);
}

/* Overlay com gradiente e caption */
.ig-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 35%,
        rgba(41, 32, 26, 0.92) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.ig-post:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post-caption {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--creme);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.ig-post-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    color: rgba(242, 231, 218, 0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Barra de tipo (foto/carrossel) */
.ig-post-type {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    color: rgba(242, 231, 218, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-post:hover .ig-post-type {
    opacity: 1;
}

/* Estado de carregamento (skeleton) */
.ig-skeleton {
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(
        90deg,
        rgba(166, 91, 66, 0.08) 0%,
        rgba(75, 96, 67, 0.12) 40%,
        rgba(166, 91, 66, 0.08) 80%
    );
    background-size: 200% 100%;
    animation: ig-shimmer 1.6s ease-in-out infinite;
}

@keyframes ig-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}

/* Estado de erro */
.instagram-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(242, 231, 218, 0.5);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}

/* Rodapé — botão seguir */
.instagram-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.instagram-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--terracota) 0%, #C4714F 100%);
    color: var(--creme);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(166, 91, 66, 0.3);
}

.instagram-cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(166, 91, 66, 0.45);
}

/* Responsivo Instagram */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .ig-post-overlay { padding: 0.7rem; }
    .ig-post-caption { font-size: 0.75rem; -webkit-line-clamp: 2; }
}

/* Responsivo — model carousel */
@media (max-width: 968px) {
    .model-viewer-el {
        height: 340px;
    }

    .model-track {
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .model-viewer-el {
        height: 280px;
    }

    .model-track {
        min-height: 300px;
    }

    .hero-3d-stage {
        min-height: 320px;
    }

    .frame-corner {
        display: none; /* cantos muito pequenos em tela muito pequena */
    }
}

/* Carousel Section */
.carousel-section {
    padding: 3rem 2rem;
    background-color: white;
}

.carousel-container {
    max-width: 1300px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--creme) 0%, white 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.carousel-slide p {
    font-size: 1.5rem;
    color: var(--marrom);
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(75, 96, 67, 0.8);
    color: var(--creme);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background-color: var(--verde);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    background-color: var(--creme);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--verde);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--terracota);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--verde) 0%, var(--marrom) 100%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--marrom);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.about .section-title {
    color: var(--creme);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: rgba(242, 231, 218, 0.95);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--marrom);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: var(--verde);
    font-size: 1.1rem;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--terracota), var(--verde));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--marrom);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--verde);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--verde) 0%, var(--terracota) 100%);
    padding: 6rem 2rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-title-light {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--creme);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    color: var(--creme);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 1;
}

.lead-form input {
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    background-color: var(--creme);
    color: var(--marrom);
    font-family: inherit;
}

.lead-form input:focus {
    outline: 3px solid var(--marrom);
}

.lead-form button {
    background-color: var(--marrom);
    color: var(--creme);
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
}

.lead-form button:hover {
    background-color: var(--creme);
    color: var(--marrom);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Story Section */
.story {
    padding: 6rem 2rem;
    background-color: var(--creme);
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    opacity: 1;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--marrom);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.story-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--verde), var(--terracota));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-icon {
    font-size: 8rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.story-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--verde);
    margin: -2rem auto 3rem;
    max-width: 700px;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background-color: white;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    background: linear-gradient(135deg, var(--creme) 0%, white 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--verde);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--terracota);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--terracota), var(--marrom));
    color: var(--creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(166, 91, 66, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--marrom);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--verde);
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

/* Benefits Section */
.benefits {
    padding: 6rem 2rem;
    background-color: white;
}

.benefits-content {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--creme);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--terracota);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--marrom);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--verde);
    font-size: 1rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background-color: var(--creme);
    border-top: 2px solid var(--verde);
    border-bottom: 2px solid var(--verde);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--verde);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.lead-form {
    opacity: 1;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1.5fr minmax(200px, auto);
    gap: 1rem;
    align-items: center;
}

.lead-form input {
    padding: 1.2rem;
    border: 2px solid var(--verde);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: var(--marrom);
    font-family: inherit;
    transition: all 0.3s ease;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--terracota);
    box-shadow: 0 0 0 3px rgba(166, 91, 66, 0.1);
}

.lead-form button {
    background-color: var(--verde);
    color: var(--creme);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: 200px;
}

.lead-form button:hover {
    background-color: var(--terracota);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(166, 91, 66, 0.3);
}

.lead-form button svg {
    transition: transform 0.3s ease;
}

.lead-form button:hover svg {
    transform: scale(1.2);
}

.newsletter-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--verde);
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--terracota) 0%, var(--marrom) 100%);
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--creme);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(242, 231, 218, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonial-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--marrom);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--verde);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Form - Updated */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 1;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--creme);
    color: var(--marrom);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--creme);
    background-color: rgba(242, 231, 218, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background-color: var(--marrom);
    color: var(--creme);
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.contact-form button:hover {
    background-color: var(--creme);
    color: var(--marrom);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-form button svg {
    transition: transform 0.3s ease;
}

.contact-form button:hover svg {
    transform: translateX(5px);
}

/* WhatsApp Contact Form — seção simplificada */
.whatsapp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 560px;
    margin: 0 auto;
}

.whatsapp-contact-form textarea {
    padding: 1.2rem;
    border: 2px solid rgba(242, 231, 218, 0.4);
    border-radius: 10px;
    background-color: rgba(242, 231, 218, 0.15);
    color: var(--creme);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 130px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.whatsapp-contact-form textarea::placeholder {
    color: rgba(242, 231, 218, 0.6);
}

.whatsapp-contact-form textarea:focus {
    outline: none;
    border-color: var(--creme);
    background-color: rgba(242, 231, 218, 0.25);
}

.cta-whatsapp-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-whatsapp-contact:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* Footer */
/* ═══════════════════════════════════════════
   BG-EARTH-WRAP — tiled bg across sections
   ═══════════════════════════════════════════ */
.bg-earth-wrap {
    position: relative;
}

.bg-earth-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Img/bgimg.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.02;
    pointer-events: none;
    z-index: 2;
}

.bg-earth-wrap > * {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   FOOTER — Earthy, spiritual, warm
   ═══════════════════════════════════════════ */
.footer {
    background: linear-gradient(175deg, rgba(53, 40, 32, 0.92) 0%, rgba(65, 50, 42, 0.90) 40%, rgba(42, 31, 24, 0.92) 100%);
    position: relative;
    overflow: hidden;
}

/* bg image now on .bg-earth-wrap */

/* Warm glow at top */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terracota), rgba(184, 134, 90, 0.6), var(--terracota), transparent);
    box-shadow: 0 0 20px rgba(166, 91, 66, 0.3), 0 0 60px rgba(166, 91, 66, 0.1);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* ── Sacred decorative border ── */
.footer-sacred-border {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.footer-border-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terracota);
    opacity: 0.5;
}

.footer-border-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(166, 91, 66, 0.1), rgba(166, 91, 66, 0.4), rgba(166, 91, 66, 0.1));
}

.footer-border-symbol {
    color: var(--terracota);
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 0.2em;
}

/* ── Brand section ── */
.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo {
    width: 14em;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(242, 231, 218, 0.9);
    letter-spacing: 0.04em;
    line-height: 1.6;
    max-width: 360px;
}

/* ── Social / Contact links ── */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(242, 231, 218, 0.08);
    background: rgba(242, 231, 218, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.footer-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-link-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

/* Instagram variant */
.footer-link--instagram {
    color: rgba(242, 231, 218, 0.55);
}

.footer-link--instagram::before {
    background: linear-gradient(135deg, rgba(166, 91, 66, 0.2), rgba(194, 114, 79, 0.15));
}

.footer-link--instagram:hover {
    color: var(--creme);
    border-color: rgba(166, 91, 66, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(166, 91, 66, 0.15);
}

.footer-link--instagram:hover::before {
    opacity: 1;
}

.footer-link--instagram:hover svg {
    transform: rotate(-8deg) scale(1.1);
}

/* WhatsApp variant */
.footer-link--whatsapp {
    color: rgba(242, 231, 218, 0.55);
}

.footer-link--whatsapp::before {
    background: linear-gradient(135deg, rgba(75, 96, 67, 0.25), rgba(98, 122, 88, 0.15));
}

.footer-link--whatsapp:hover {
    color: var(--creme);
    border-color: rgba(75, 96, 67, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(75, 96, 67, 0.15);
}

.footer-link--whatsapp:hover::before {
    opacity: 1;
}

.footer-link--whatsapp:hover svg {
    transform: scale(1.15);
}

/* Email variant */
.footer-link--email {
    color: rgba(242, 231, 218, 0.55);
}

.footer-link--email::before {
    background: linear-gradient(135deg, rgba(184, 134, 90, 0.2), rgba(166, 91, 66, 0.1));
}

.footer-link--email:hover {
    color: var(--creme);
    border-color: rgba(184, 134, 90, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 134, 90, 0.12);
}

.footer-link--email:hover::before {
    opacity: 1;
}

.footer-link--email:hover svg {
    transform: translateX(2px);
}

/* ── Bottom bar ── */
.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(242, 231, 218, 0.06);
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(242, 231, 218, 0.9);
    letter-spacing: 0.04em;
}

.footer-values {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.footer-values span {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.65rem;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 231, 218, 0.9);
    position: relative;
}

.footer-values span:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(166, 91, 66, 0.35);
    font-style: normal;
}

/* ── Footer responsive ── */
@media (max-width: 768px) {
    .footer-container {
        padding: 2.5rem 1.5rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .footer-link {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    .footer-border-line {
        width: 40px;
    }

    .footer-logo {
        width: 11em;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    z-index: 10;
}

.scroll-indicator-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracota), transparent);
    border-radius: 2px;
}

.scroll-indicator-text {
    font-size: 0.85rem;
    color: var(--verde);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Efeitos de ondas sutis no background */
.about,
.contact {
    background-size: 200% 200%;
    background-position: 50% 0%;
    position: relative;
    overflow: hidden;
}

.about::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(242, 231, 218, 0.1) 0%, transparent 50%);
    animation: waves 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waves {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Melhorias de performance */
.hero-logo,
.about-card,
.product-card,
.card-icon {
    will-change: transform;
}

/* Responsive */
@media (max-width: 968px) {

    .hero-brand-logo{
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 3rem 1.5rem 2rem;
        gap: 3rem;           /* era 0 — este era o problema */
    }

    .hero-content {
        padding-bottom: 0;   /* garante que não empilhe mal */
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-brand {
        text-align: center;
        justify-content: center;
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-3d-stage {
        min-height: 380px;
        overflow: hidden;    /* impede que frame/cantos transbordem */
        border-radius: 16px;
    }

    /* Esconde anéis no mobile — poluem com o modelo visível */
    .hero-3d-ring,
    .hero-3d-glow {
        display: none;
    }

    .model-carousel {
        padding: 0.5rem 1rem;
    }

    .model-viewer-frame {
        border-radius: 10px;
    }

    /* Frases rotativas — tamanhos reduzidos e bem organizados no mobile */
    .hero-phrase-stage {
        min-height: 56px;
    }

    .hero-phrase {
        text-align: center;
    }

    .hero-phrase.phrase-xs .hero-phrase { font-size: 0.78rem; }

    .phrase-xs  { font-size: 0.78rem; }
    .phrase-sm  { font-size: 0.92rem; line-height: 1.4; }
    .phrase-md  { font-size: 1.1rem;  line-height: 1.3; }
    .phrase-lg  { font-size: 1.3rem;  line-height: 1.2; font-weight: 500; }
    .phrase-xl  { font-size: clamp(1.3rem, 5.5vw, 1.7rem); line-height: 1.15; }

    .phrase-progress {
        margin-left: auto;
        margin-right: auto;
        max-width: 180px;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-paragraph {
        text-align: center;
    }

    .about-grid,
    .products-grid,
    .process-steps,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-step p {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .lead-form button {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .nav {
        padding: 1rem;
    }

    .hero-brand-logo {
        width: 100px;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    main {
        margin-top: 80px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .carousel-slide img {
        max-width: 250px;
    }

    .carousel-slide p {
        font-size: 1.2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}


