/* ==========================================
   STUDIO EM CAMADAS 3D - PALETA ARTESANAL E QUENTE
   ========================================== */

/* 1. VARIÁVEIS DO SISTEMA DE DESIGN (Inspirado no Perfil do Instagram) */
:root {
    --bg-primary: #fcfbf8;
    --bg-secondary: #f6efe9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(104, 86, 72, 0.08);
    
    /* Cores Quentes e Artesanais */
    --accent-terracotta: #c86d56;
    --accent-peach: #e2af9f;
    --accent-gradient: linear-gradient(135deg, #c86d56 0%, #e2af9f 100%);
    
    --text-primary: #322b27;
    --text-secondary: #7a6a60;
    --text-light: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glow-warm: 0 8px 25px rgba(200, 109, 86, 0.25);
    --shadow-soft: 0 10px 30px rgba(104, 86, 72, 0.08);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. RESET E ESTILOS GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* 3. BOTÕES E COMPONENTES COMUNS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-light);
    box-shadow: var(--glow-warm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 109, 86, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 1px solid rgba(104, 86, 72, 0.15);
}

.btn-secondary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    border-color: var(--accent-terracotta);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-terracotta);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-link:hover {
    color: var(--accent-peach);
    transform: translateX(5px);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(200, 109, 86, 0.08);
    border: 1px solid rgba(200, 109, 86, 0.2);
    color: var(--accent-terracotta);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

/* Títulos de Seção */
.section-subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.05rem;
}

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

/* 4. HEADER (NAVEGAÇÃO) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 251, 248, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.header.scrolled {
    padding: 0.85rem 0;
    box-shadow: 0 5px 25px rgba(104, 86, 72, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-terracotta);
}

.logo-3d {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-smooth);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* 5. HERO SECTION */
.hero-section {
    padding: 10rem 0 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(200, 109, 86, 0.12) 0%, rgba(226, 175, 159, 0.05) 50%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(104, 86, 72, 0.12);
    border: 1px solid rgba(104, 86, 72, 0.08);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
    max-width: 100%;
}

.hero-image-wrapper:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* 6. SOBRE / QUEM SOMOS */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(200, 109, 86, 0.15) 0%, rgba(226, 175, 159, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.about-info .section-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(104, 86, 72, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--accent-terracotta);
    background: #ffffff;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 7. VITRINE DE PRODUTOS */
.products-section {
    padding: 8rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-terracotta);
    box-shadow: 0 15px 35px rgba(104, 86, 72, 0.12);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fdfdfd;
    border-bottom: 1px solid var(--border-color);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(104, 86, 72, 0.05);
    border: 1px solid rgba(104, 86, 72, 0.08);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    align-self: flex-start;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* 8. O PROCESSO DE COMPRA */
.process-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(104, 86, 72, 0.06);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    background: #ffffff;
    border-color: var(--accent-terracotta);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 9. SEÇÃO ORÇAMENTO (FORMULÁRIO) */
.budget-section {
    padding: 8rem 0;
}

.budget-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.budget-info .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.budget-info .section-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.info-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-badge .icon {
    font-size: 1.75rem;
    padding: 0.5rem;
    background: rgba(104, 86, 72, 0.05);
    border-radius: 12px;
    line-height: 1;
}

.info-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-badge p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Formulário Card */
.budget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.budget-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(200, 109, 86, 0.1) 0%, rgba(226, 175, 159, 0.02) 100%);
    z-index: -1;
    pointer-events: none;
}

.budget-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(104, 86, 72, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-terracotta);
    box-shadow: 0 0 10px rgba(200, 109, 86, 0.15);
    background: #ffffff;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: var(--accent-terracotta);
    width: 16px;
    height: 16px;
}

/* 10. RODAPÉ (FOOTER) */
.footer {
    background-color: #28221f;
    border-top: 1px solid rgba(104, 86, 72, 0.1);
    padding: 5rem 0 2rem 0;
    color: #e8e2de;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.footer-brand p {
    color: #bfaea5;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    color: #bfaea5;
}

.social-link:hover {
    background: var(--accent-gradient);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--glow-warm);
    border-color: transparent;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #ffffff;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #bfaea5;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact p {
    color: #bfaea5;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* 11. BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 12. ANIMAÇÕES SCROLL REVEAL (JS) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 12a. ÍCONES SVG (substituindo emojis por SVGs, checklist ui-ux-pro-max) */
.icon-svg {
    display: inline-block;
    vertical-align: -2px;
    color: var(--accent-terracotta);
}

.badge .icon-svg {
    vertical-align: -1px;
    margin-right: 2px;
}

.feature-icon svg,
.info-badge .icon svg {
    color: var(--accent-terracotta);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .icon-svg {
    color: #bfaea5;
    flex-shrink: 0;
}

/* 12b. ACESSIBILIDADE: CURSOR E FOCO VISÍVEL (checklist ui-ux-pro-max) */
.btn,
.btn-link,
.nav-link,
.product-card,
.feature-card,
.step-card,
.social-link,
.whatsapp-float,
.menu-toggle,
.radio-label,
.btn-product-action {
    cursor: pointer;
}

.btn:focus-visible,
.btn-link:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible,
.whatsapp-float:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid var(--accent-terracotta);
    outline-offset: 3px;
    border-radius: 4px;
}

.form-group input[type="radio"]:focus-visible {
    outline: 2px solid var(--accent-terracotta);
    outline-offset: 2px;
}

/* 12c. RESPEITAR PREFERÊNCIA DE MOVIMENTO REDUZIDO */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .hero-image {
        transform: none;
    }

    #interactiveOctopus {
        animation: none !important;
    }
}

/* 13. RESPONSIVIDADE (MEDIA QUERIES) */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-color);
        padding: 6rem 3rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .btn-header {
        display: none;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    /* Layouts Gerais */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
        order: 2;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-visual {
        order: 2;
    }
    
    .visual-box {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .budget-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .budget-card {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* --- ESTILOS DA SEÇÃO INTERATIVA (POLVO ARTICULADO) --- */
.interactive-section {
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-primary);
}

.interactive-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interactive-info .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.interactive-info .section-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.interactive-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
    width: 100%;
    background: rgba(104, 86, 72, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.octopus-path-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-octopus-wrapper {
    position: relative;
    z-index: 10;
    width: 260px;
    height: 260px;
}

.interactive-octopus {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 45px rgba(200, 109, 86, 0.2);
    border: 4px solid #ffffff;
    pointer-events: none;
}

/* Efeito de Bolhas */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 109, 86, 0.12);
    border: 1px solid rgba(200, 109, 86, 0.2);
    bottom: -50px;
    pointer-events: none;
    z-index: 1;
}

.bubble-1 {
    width: 40px;
    height: 40px;
    left: 20%;
    animation: floatUp 8s infinite ease-in-out;
}

.bubble-2 {
    width: 25px;
    height: 25px;
    left: 70%;
    animation: floatUp 6s infinite ease-in-out 2s;
}

.bubble-3 {
    width: 15px;
    height: 15px;
    left: 45%;
    animation: floatUp 10s infinite ease-in-out 1s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-550px) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Ajustes na vitrine de produtos */
.product-tag-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-terracotta);
    font-size: 1.1rem;
    white-space: nowrap;
}

.product-info h3 {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .interactive-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .interactive-visual {
        height: 350px;
    }
}
