/* ========================================
   BEMVIRÁ - ESTILOS PRINCIPAIS
   ======================================== */

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #762a85;
    --secondary-purple: #9854a3;
    --dark-purple: #5d1f69;
    --light-purple: #e8d5ec;
    --soft-white: #fafafa;
    --cream-white: #f8f8f8;
    --light-gray: #f5f5f5;
    --dark-text: #2d2d2d;
    --medium-gray: #6b6b6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(118, 42, 133, 0.1);
}

/* Sistema de escala responsiva para navbar */
@media (min-width: 1200px) {
    header {
        padding: 1.5rem 0;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    header {
        padding: 1.2rem 0;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    header {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.6rem 0;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Padding responsivo do nav */
@media (min-width: 1200px) {
    nav {
        padding: 0 2rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    nav {
        padding: 0 1.8rem;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    nav {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.2rem;
    }
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

/* Logo responsivo */
@media (min-width: 1200px) {
    .logo {
        font-size: 2rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .logo {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
}

.logo:hover {
    transform: scale(1.05);
}

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

/* Espaçamento responsivo dos links */
@media (min-width: 1200px) {
    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .nav-links {
        gap: 1.8rem;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .nav-links {
        gap: 1.5rem;
    }
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

/* Links de navegação responsivos */
@media (min-width: 1200px) {
    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .nav-links a {
        font-size: 0.9rem;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #4a4a4a 0%, 
        #5a5a5a 25%, 
        #6a6a6a 50%, 
        #7a7a7a 75%, 
        #8a8a8a 100%
    );
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos flutuantes */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(118, 42, 133, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* Ícones de joias flutuantes */
.hero-jewelry-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.jewelry-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.jewelry-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.jewelry-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.jewelry-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.jewelry-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

.jewelry-icon:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 3s;
}

.jewelry-icon:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 5s;
}

/* Responsividade para elementos decorativos */
@media (max-width: 768px) {
    .jewelry-icon {
        font-size: 1.5rem;
    }
    
    .jewelry-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .jewelry-icon:nth-child(2) {
        top: 20%;
        right: 10%;
    }
    
    .jewelry-icon:nth-child(3) {
        bottom: 25%;
        left: 15%;
    }
    
    .jewelry-icon:nth-child(4) {
        bottom: 15%;
        right: 5%;
    }
    
    .jewelry-icon:nth-child(5) {
        top: 45%;
        left: 2%;
    }
    
    .jewelry-icon:nth-child(6) {
        top: 55%;
        right: 2%;
    }
}

@media (max-width: 480px) {
    .jewelry-icon {
        font-size: 1.2rem;
    }
    
    .hero::before {
        background: 
            radial-gradient(circle at 30% 30%, rgba(118, 42, 133, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 70% 70%, rgba(152, 84, 163, 0.08) 0%, transparent 40%);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    min-height: 100vh;
}

/* Seções do hero */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagem da mulher para mobile - escondida por padrão */
.hero-woman-mobile {
    display: none;
}

/* Seção do logo e marca */
.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.hero-brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-brand-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    margin: 0;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Display das joias */
.hero-jewelry-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.jewelry-item {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: jewelryFloat 4s ease-in-out infinite;
}

.jewelry-ring-1 {
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.jewelry-ring-2 {
    animation-delay: 1s;
    transform: rotate(10deg);
}

.jewelry-earring {
    animation-delay: 2s;
    transform: rotate(-5deg);
}

/* Container da imagem da mulher */
.hero-woman-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    padding: 20px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.hero-woman-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(118, 42, 133, 0.1), rgba(152, 84, 163, 0.1), rgba(118, 42, 133, 0.1));
    border-radius: 30px;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-woman-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
    animation: lightSweep 8s ease-in-out infinite;
}

@keyframes lightSweep {
    0%, 100% {
        background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    }
    25% {
        background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    }
    50% {
        background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    }
    75% {
        background: radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    }
}

/* Otimizações para alta resolução */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-woman-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-quality;
        image-rendering: high-quality;
    }
}

/* Otimizações para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
    .hero-woman-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-quality;
        image-rendering: high-quality;
    }
}

.hero-woman-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-quality;
    image-rendering: high-quality;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    animation: womanFloat 6s ease-in-out infinite;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-woman-img:hover {
    transform: scale(1.02) translateY(-5px) translateZ(0);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* Animação para a imagem da mulher */
@keyframes womanFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-10px);
    }
}

/* Estilos antigos removidos - substituídos pelos novos estilos do hero */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(118, 42, 133, 0.2),
        inset 0 0 30px rgba(118, 42, 133, 0.1);
    animation: pulseGlow 3s ease-in-out infinite;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(118, 42, 133, 0.1);
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(232, 213, 236, 0.8) 0%,
        rgba(152, 84, 163, 0.2) 50%,
        transparent 70%
    );
    animation: rotate 15s linear infinite;
}

/* ===== ANIMAÇÕES ===== */
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { transform: translate(-30%, -30%) scale(1.2); opacity: 1; }
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
        opacity: 1;
    }
}

@keyframes jewelryFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% { 
        transform: translateY(-10px) rotate(calc(var(--rotation, 0deg) + 5deg));
    }
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* ===== SEÇÕES ===== */
.about {
    padding: 5rem 0;
    background: var(--soft-white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-purple);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(118, 42, 133, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(118, 42, 133, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(118, 42, 133, 0.2);
}

.value-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ===== PRODUTOS ===== */
.products {
    padding: 5rem 0;
    background: var(--soft-white);
}

.products-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.product-card {
    background: var(--soft-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(118, 42, 133, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(118, 42, 133, 0.2);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--light-purple), var(--cream-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary-purple);
    position: relative;
    overflow: hidden;
}

.product-image img{
    max-width: 80%;
    width: 100%;
    height: 100%;
    max-height: 80%;
    object-fit: contain;
    transform: rotate(30deg);
    display: flex;
}

/* Fallback para imagens que não carregam */
.product-image img:not([src]),
.product-image img[src=""] {
    display: none;
}

.product-image::after {
    content: attr(data-emoji);
    font-size: 4rem;
    color: var(--secondary-purple);
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-image:has(img:not([src]))::after,
.product-image:has(img[src=""])::after {
    display: block;
}

/* Quando a imagem não carrega, esconder a imagem e mostrar emoji */
.product-image img[style*="display: none"] {
    display: none !important;
}

.product-image:has(img[style*="display: none"])::after {
    display: block !important;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 0;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(118, 42, 133, 0.3);
}

/* ===== CUIDADOS ===== */
#cuidados{
    padding: 56px 16px;
    background: linear-gradient(180deg, rgba(242,238,246,0.6), rgba(255,255,255,0));
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #2b2b2b;
}

.cuidados-container{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
    padding: 0 16px;
}

/* .cuidados-left - estilos específicos podem ser adicionados aqui se necessário */

.cuidados-title{
    font-size: 30px;
    line-height: 1.05;
    color: #5b2a7a;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.cuidados-intro{
    margin: 0 0 18px 0;
    color: #505050;
    font-size: 16px;
    line-height: 1.6;
}

/* Card com lista de cuidados */
.cuidados-card{
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 18px 36px rgba(88,34,122,0.06);
    border: 1px solid rgba(88,34,122,0.05);
}

.cuidados-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cuidados-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    font-size:15px;
    color:#2f2f2f;
    line-height:1.6;
}

.cuidados-item .badge{
    min-width:40px;
    height:40px;
    border-radius:10px;
    display:inline-grid;
    place-items:center;
    font-weight:700;
    background: linear-gradient(180deg, rgba(149,86,159,0.12), rgba(149,86,159,0.04));
    color:#6b2a7a;
    box-shadow: inset 0 -6px 12px rgba(107,42,120,0.03);
}

/* Visual decorativo lateral */
.cuidados-visual {
    display:flex;
    align-items:center;
    justify-content:center;
}

.cuidados-visual-card{
    width:100%;
    border-radius:14px;
    padding:18px;
    background: linear-gradient(135deg,#fff8ff, #fbfbff);
    border:1px solid rgba(107,42,120,0.04);
    box-shadow: 0 14px 30px rgba(107,42,120,0.06);
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
    text-align:center;
}

.cuidados-ring{
    width:140px;
    height:140px;
    display:block;
    margin-bottom:6px;
}

.cuidados-note{
    margin:0;
    font-size:13px;
    color:#616161;
}

/* Tag decorativa */
.cuidados-tag{
    margin-top:8px;
    display:inline-block;
    padding:8px 12px;
    border-radius:999px;
    background:linear-gradient(90deg,#7a3290,#5e2a7a);
    color:#fff;
    font-weight:600;
    text-align: center;
    font-size:13px;
}

/* ===== SEÇÃO INTERATIVA DE LIMPEZA ===== */
.limpeza-interactive-wrapper {
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 0 16px;
}

.limpeza-interactive-card {
    background: linear-gradient(180deg, #fff, #fbf8ff);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(118, 42, 133, 0.08);
    border: 1px solid rgba(118, 42, 133, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.limpeza-interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(118, 42, 133, 0.12);
}

.limpeza-header {
    text-align: center;
    margin-bottom: 2rem;
}

.limpeza-title {
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.limpeza-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Controles de Navegação */
.cleaning-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(118, 42, 133, 0.05);
    border-radius: 15px;
}

/* Setas Laterais para Mobile */
.mobile-arrows {
    display: none;
    position: relative;
    margin-bottom: 1rem;
}

.arrow-left, .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 42, 133, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.arrow-left:disabled, .arrow-right:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: translateY(-50%) scale(0.8);
    opacity: 0.5;
}

.arrow-left:hover:not(:disabled), .arrow-right:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(118, 42, 133, 0.4);
}

.arrow-left:active:not(:disabled), .arrow-right:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.mobile-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-purple);
    box-shadow: 0 2px 10px rgba(118, 42, 133, 0.1);
    font-size: 0.9rem;
    z-index: 5;
}

.btn-prev, .btn-next {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(118, 42, 133, 0.3);
}

.btn-prev:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-prev:hover:not(:disabled), .btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 42, 133, 0.4);
}

.step-indicator {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-purple);
    box-shadow: 0 2px 10px rgba(118, 42, 133, 0.1);
}

/* Container dos Passos */
.cleaning-steps-container {
    position: relative;
    min-height: 400px;
    margin-bottom: 2rem;
}

.cleaning-step {
    display: none;
    animation: fadeInSlide 0.5s ease;
}

.cleaning-step.active {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.step-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(118, 42, 133, 0.05), rgba(152, 84, 163, 0.05));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.step-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    flex: 1;
    padding: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-tip {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #856404;
}

.step-tip i {
    color: #f39c12;
}

/* Animações dos Passos */
.water-drops {
    position: relative;
    width: 100px;
    height: 100px;
}

.drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    animation: waterDrop 2s infinite;
}

.drop:nth-child(1) { left: 20px; animation-delay: 0s; }
.drop:nth-child(2) { left: 50px; animation-delay: 0.5s; }
.drop:nth-child(3) { left: 80px; animation-delay: 1s; }

.polishing-motion {
    position: relative;
    width: 80px;
    height: 80px;
}

.cloth {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    border-radius: 5px;
    animation: polish 2s infinite;
}

.sparkle-effect {
    position: relative;
    width: 100px;
    height: 100px;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f1c40f;
    border-radius: 50%;
    animation: sparkle 1.5s infinite;
}

.sparkle:nth-child(1) { top: 20px; left: 30px; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 50px; left: 60px; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 70px; left: 20px; animation-delay: 1s; }

.timer-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.timer-circle {
    width: 60px;
    height: 60px;
    border: 4px solid #e74c3c;
    border-radius: 50%;
    border-top-color: transparent;
    animation: timer 3s infinite;
}

.gem-shine {
    position: relative;
    width: 80px;
    height: 80px;
}

.shine {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f1c40f, #e67e22);
    border-radius: 50%;
    animation: gemShine 2s infinite;
}

/* Resultado Final */
.cleaning-result {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 20px;
    border: 2px solid #28a745;
    animation: fadeInSlide 0.5s ease;
}

.result-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-animation {
    position: relative;
}

.checkmark {
    font-size: 3rem;
    color: #28a745;
    animation: checkmarkPop 0.6s ease;
}

.result-content h3 {
    font-size: 1.8rem;
    color: #155724;
    margin-bottom: 1rem;
    font-weight: 600;
}

.result-content p {
    font-size: 1.1rem;
    color: #155724;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-restart {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-restart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Observações */
.limpeza-observations {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
    margin-top: 1rem;
}

.observations-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.observations-header i {
    color: #f39c12;
    font-size: 1.2rem;
}

.observations-header h4 {
    color: #856404;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.limpeza-observations p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Animações Keyframes */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes waterDrop {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(20px) scale(0.8); opacity: 0.7; }
}

@keyframes polish {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(20px) rotate(180deg); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes timer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gemShine {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes checkmarkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 768px) {
    .limpeza-interactive-wrapper {
        padding: 0 12px;
        margin: 20px auto 0;
    }
    
    .limpeza-interactive-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .limpeza-header {
        margin-bottom: 1.5rem;
    }
    
    .limpeza-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .limpeza-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Esconder controles tradicionais em mobile */
    .cleaning-controls {
        display: none;
    }
    
    /* Mostrar setas laterais em mobile */
    .mobile-arrows {
        display: block;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .arrow-left, .arrow-right {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .arrow-left {
        left: 5px;
    }
    
    .arrow-right {
        right: 5px;
    }
    
    .mobile-progress {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .cleaning-steps-container {
        min-height: 350px;
        margin-bottom: 1.5rem;
    }
    
    .cleaning-step.active {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-visual {
        min-height: 180px;
        border-radius: 15px;
        padding: 1rem;
    }
    
    .step-icon {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content {
        padding: 0.5rem;
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .step-tip {
        padding: 0.8rem;
        font-size: 0.85rem;
        text-align: left;
    }
    
    .cleaning-result {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .result-icon {
        font-size: 3rem;
    }
    
    .result-content h3 {
        font-size: 1.5rem;
    }
    
    .result-content p {
        font-size: 1rem;
    }
    
    .btn-restart {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .limpeza-observations {
        padding: 1.2rem;
        border-radius: 12px;
        margin-top: 1rem;
    }
    
    .observations-header h4 {
        font-size: 1rem;
    }
    
    .limpeza-observations p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .limpeza-interactive-wrapper {
        padding: 0 8px;
        margin: 15px auto 0;
    }
    
    .limpeza-interactive-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .limpeza-header {
        margin-bottom: 1.2rem;
    }
    
    .limpeza-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .limpeza-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Ajustar setas para mobile pequeno */
    .mobile-arrows {
        height: 50px;
        margin-bottom: 1.2rem;
    }
    
    .arrow-left, .arrow-right {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .arrow-left {
        left: 3px;
    }
    
    .arrow-right {
        right: 3px;
    }
    
    .mobile-progress {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .cleaning-steps-container {
        min-height: 300px;
        margin-bottom: 1.2rem;
    }
    
    .cleaning-step.active {
        gap: 1.2rem;
    }
    
    .step-visual {
        min-height: 150px;
        border-radius: 12px;
        padding: 0.8rem;
    }
    
    .step-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }
    
    .step-content {
        padding: 0.3rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .step-tip {
        padding: 0.6rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .step-tip i {
        font-size: 0.8rem;
    }
    
    .cleaning-result {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .result-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .checkmark {
        font-size: 2.2rem;
    }
    
    .result-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .result-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .btn-restart {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .limpeza-observations {
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.8rem;
    }
    
    .observations-header {
        margin-bottom: 0.8rem;
    }
    
    .observations-header i {
        font-size: 1rem;
    }
    
    .observations-header h4 {
        font-size: 0.9rem;
    }
    
    .limpeza-observations p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Dica de swipe para mobile - removida pois agora temos setas visuais */

/* Ajustes específicos para animações em mobile */
@media (max-width: 768px) {
    /* Otimizações de performance para mobile */
    .cleaning-step {
        will-change: transform, opacity;
    }
    
    .step-animation * {
        will-change: transform;
    }
    
    .water-drops {
        width: 80px;
        height: 80px;
    }
    
    .drop {
        width: 6px;
        height: 6px;
    }
    
    .drop:nth-child(1) { left: 15px; }
    .drop:nth-child(2) { left: 40px; }
    .drop:nth-child(3) { left: 65px; }
    
    .polishing-motion {
        width: 60px;
        height: 60px;
    }
    
    .cloth {
        width: 30px;
        height: 30px;
    }
    
    .sparkle-effect {
        width: 80px;
        height: 80px;
    }
    
    .sparkle {
        width: 5px;
        height: 5px;
    }
    
    .sparkle:nth-child(1) { top: 15px; left: 25px; }
    .sparkle:nth-child(2) { top: 40px; left: 50px; }
    .sparkle:nth-child(3) { top: 60px; left: 15px; }
    
    .timer-animation {
        width: 60px;
        height: 60px;
    }
    
    .timer-circle {
        width: 45px;
        height: 45px;
        border-width: 3px;
    }
    
    .gem-shine {
        width: 60px;
        height: 60px;
    }
    
    .shine {
        width: 45px;
        height: 45px;
    }
    
    /* Reduzir animações em dispositivos com preferência por movimento reduzido */
    @media (prefers-reduced-motion: reduce) {
        .cleaning-step {
            animation: none;
        }
        
        .step-animation * {
            animation: none;
        }
        
        .water-drops, .polishing-motion, .sparkle-effect, 
        .timer-animation, .gem-shine {
            animation: none;
        }
    }
}

@media (max-width: 480px) {
    .water-drops {
        width: 60px;
        height: 60px;
    }
    
    .drop {
        width: 5px;
        height: 5px;
    }
    
    .drop:nth-child(1) { left: 10px; }
    .drop:nth-child(2) { left: 30px; }
    .drop:nth-child(3) { left: 50px; }
    
    .polishing-motion {
        width: 50px;
        height: 50px;
    }
    
    .cloth {
        width: 25px;
        height: 25px;
    }
    
    .sparkle-effect {
        width: 60px;
        height: 60px;
    }
    
    .sparkle {
        width: 4px;
        height: 4px;
    }
    
    .sparkle:nth-child(1) { top: 10px; left: 20px; }
    .sparkle:nth-child(2) { top: 30px; left: 40px; }
    .sparkle:nth-child(3) { top: 50px; left: 10px; }
    
    .timer-animation {
        width: 50px;
        height: 50px;
    }
    
    .timer-circle {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
    
    .gem-shine {
        width: 50px;
        height: 50px;
    }
    
    .shine {
        width: 35px;
        height: 35px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--secondary-purple);
}

.footer-section p, 
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-itens{
    display: flex !important;
    align-items: center !important;
    gap: 1em;
}

/* ===== MENU MOBILE ===== */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-button.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-button.active span:third-child {
    transform: rotate(-45deg);
}

/* Menu mobile */
.nav-links-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(118, 42, 133, 0.1);
    list-style: none;
}

.nav-links-mobile.active {
    right: 0;
}

.nav-links-mobile li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.nav-links-mobile.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-links-mobile.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-links-mobile.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-links-mobile.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-links-mobile.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-links-mobile.active li:nth-child(5) { transition-delay: 0.5s; }

.nav-links-mobile a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.nav-links-mobile a:hover {
    background: var(--light-purple);
    color: var(--primary-purple);
    transform: translateX(-5px);
}

.nav-links-mobile a::after {
    display: none;
}

/* Overlay para fechar menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== POPUP DE CONFIRMAÇÃO ===== */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2500;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

/* ===== MODAL DE VISUALIZAÇÃO DE PRODUTO ===== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.product-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.product-modal-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.product-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.product-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

/* Galeria de Imagens */
.product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-purple), var(--cream-white));
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(118, 42, 133, 0.2);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-main-image:hover .image-zoom-overlay {
    opacity: 1;
}

.zoom-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-main-image:hover .zoom-icon {
    transform: scale(1);
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--primary-purple);
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--secondary-purple);
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--primary-purple);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Detalhes do Produto */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-details h4 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 600;
}

.product-details .product-price {
    font-size: 2rem;
    color: var(--primary-purple);
    font-weight: bold;
}

.product-description {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.btn-add-cart-modal,
.btn-whatsapp-modal {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart-modal {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    box-shadow: 0 4px 15px rgba(118, 42, 133, 0.3);
}

.btn-add-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(118, 42, 133, 0.4);
}

.btn-whatsapp-modal {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== MODAL DE ZOOM DA IMAGEM ===== */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 4000;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.image-zoom-modal.active {
    display: flex;
    opacity: 1;
}

.zoom-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
}

.zoom-modal-content img:active {
    cursor: grabbing;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-purple);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background: white;
    transform: rotate(90deg);
}

.zoom-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.zoom-btn {
    background: var(--primary-purple);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.zoom-btn:hover {
    background: var(--secondary-purple);
    transform: scale(1.1);
}

.confirmation-modal.active {
    display: flex;
    opacity: 1;
}

.confirmation-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.confirmation-modal.active .confirmation-content {
    transform: scale(1);
}

.confirmation-header {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.confirmation-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.confirmation-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.confirmation-body {
    padding: 2rem;
    text-align: center;
}

.confirmation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.confirmation-body p {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.5;
}

.confirmation-footer {
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: var(--soft-white);
}

.btn-cancel, .btn-confirm {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-cancel {
    background: var(--light-gray);
    color: var(--medium-gray);
}

.btn-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-confirm {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsividade do popup */
@media (max-width: 480px) {
    .confirmation-content {
        width: 95%;
        margin: 10px;
    }
    
    .confirmation-header {
        padding: 1rem 1.5rem;
    }
    
    .confirmation-header h3 {
        font-size: 1.1rem;
    }
    
    .confirmation-body {
        padding: 1.5rem;
    }
    
    .confirmation-icon {
        font-size: 2.5rem;
    }
    
    .confirmation-body p {
        font-size: 1rem;
    }
    
    .confirmation-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .btn-cancel, .btn-confirm {
        width: 100%;
    }
}

/* Responsividade do modal de produto */
@media (max-width: 768px) {
    .product-modal {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10px;
    }
    
    .product-modal-content {
        max-height: 98vh;
        border-radius: 15px;
        width: 100%;
        margin: 0;
    }
    
    .product-modal-header {
        padding: 1rem 1.2rem;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .product-modal-header h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.2rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .product-gallery {
        order: 1;
    }
    
    .product-main-image {
        height: 280px;
        border-radius: 12px;
    }
    
    .product-thumbnails {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.5rem 0;
        gap: 0.8rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-purple) transparent;
    }
    
    .product-thumbnails::-webkit-scrollbar {
        height: 4px;
    }
    
    .product-thumbnails::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .product-thumbnails::-webkit-scrollbar-thumb {
        background: var(--primary-purple);
        border-radius: 2px;
    }
    
    .product-thumbnails::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-purple);
    }
    
    .thumbnail {
        width: 55px;
        height: 55px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .gallery-navigation {
        display: none; /* Esconder setas em mobile, usar swipe */
    }
    
    /* Indicador de swipe para mobile */
    .product-main-image::after {
        content: "← Deslize para navegar →";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 0.7rem;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .product-main-image:hover::after {
        opacity: 1;
    }
    
    .product-details {
        order: 2;
        gap: 1rem;
    }
    
    .product-details h4 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .product-details .product-price {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .product-actions {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .btn-add-cart-modal,
    .btn-whatsapp-modal {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .product-modal {
        padding: 2px;
        align-items: flex-start;
        padding-top: 5px;
    }
    
    .product-modal-content {
        border-radius: 10px;
        max-height: 99vh;
        width: 100%;
    }
    
    .product-modal-header {
        padding: 0.8rem 1rem;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .product-modal-header h3 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .product-modal-close {
        width: 25px;
        height: 25px;
        font-size: 1.4rem;
    }
    
    .product-modal-body {
        padding: 0.8rem;
        gap: 0.8rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .product-main-image {
        height: 220px;
        border-radius: 10px;
    }
    
    .product-thumbnails {
        gap: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .thumbnail {
        width: 45px;
        height: 45px;
        border-radius: 6px;
    }
    
    .gallery-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .product-details {
        gap: 0.8rem;
    }
    
    .product-details h4 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .product-details .product-price {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .product-actions {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .btn-add-cart-modal,
    .btn-whatsapp-modal {
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 18px;
    }
}

/* Responsividade do modal de zoom */
@media (max-width: 768px) {
    .image-zoom-modal {
        padding: 10px;
    }
    
    .zoom-modal-content {
        max-width: 95vw;
        max-height: 85vh;
        width: 100%;
    }
    
    .zoom-close {
        top: -45px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .zoom-controls {
        bottom: -55px;
        padding: 0.8rem;
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .image-zoom-modal {
        padding: 5px;
    }
    
    .zoom-modal-content {
        max-width: 98vw;
        max-height: 75vh;
        width: 100%;
    }
    
    .zoom-close {
        top: -40px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .zoom-controls {
        bottom: -50px;
        padding: 0.6rem;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== PÁGINA DE CATEGORIA ===== */
.category-page {
    display: none;
    min-height: 100vh;
    background: var(--soft-white);
    padding-top: 80px; /* Espaço para navbar fixa */
}

.category-page.active {
    display: block;
}

.category-header {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 20px rgba(118, 42, 133, 0.1);
    margin-bottom: 2rem;
}

.category-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.btn-back {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(118, 42, 133, 0.3);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 42, 133, 0.4);
}

.category-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin: 0;
    font-weight: 700;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 15px;
    color: var(--medium-gray);
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--light-purple);
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(118, 42, 133, 0.1);
}

.price-filter, .sort-filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-filter label, .sort-filter label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.price-filter select, .sort-filter select {
    padding: 12px 15px;
    border: 2px solid var(--light-purple);
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-filter select:focus, .sort-filter select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(118, 42, 133, 0.1);
}

.category-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

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

.product-card-category {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(118, 42, 133, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(118, 42, 133, 0.1);
}

.product-card-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(118, 42, 133, 0.2);
}

.product-image-category {
    height: 250px;
    background: linear-gradient(135deg, var(--light-purple), var(--cream-white));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image-category:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(118, 42, 133, 0.2);
}

.product-image-category img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-image-category:hover .product-view-overlay {
    opacity: 1;
}

.view-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.product-image-category:hover .view-icon {
    transform: scale(1);
}

.product-info-category {
    padding: 2rem;
}

.product-name-category {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-price-category {
    font-size: 1.6rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-actions-category {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-view-category {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    order: 1;
}

.btn-view-category:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

.btn-add-cart-category {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    order: 2;
}

.btn-add-cart-category:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(118, 42, 133, 0.3);
}

.btn-whatsapp-category {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    order: 3;
}

.btn-whatsapp-category:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(118, 42, 133, 0.1);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-clear-filters {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 42, 133, 0.4);
}

/* ===== CARRINHO DE COMPRAS ===== */
.cart-icon {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(118, 42, 133, 0.3);
    transition: all 0.3s ease;
    z-index: 1500;
}

.cart-icon:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(118, 42, 133, 0.4);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 25px;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height para mobile */
    max-height: 100vh;
    max-height: 100dvh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.cart-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; /* Não permite que encolha */
}

.cart-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    min-height: 0; /* Permite que o flex funcione corretamente */
    max-height: calc(100vh - 200px); /* Altura máxima considerando header e footer */
    max-height: calc(100dvh - 200px); /* Dynamic viewport height para mobile */
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid var(--light-gray);
    background: white;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 8px rgba(118, 42, 133, 0.08);
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(118, 42, 133, 0.15);
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-purple), var(--cream-white));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-purple);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.cart-item-price .unit-price {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-price .total-price {
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 1.1rem;
}

.cart-item-quantity {
    background: var(--light-purple);
    color: var(--primary-purple);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-quantity-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(118, 42, 133, 0.3);
}

.cart-quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(118, 42, 133, 0.4);
}

.cart-quantity-btn:disabled {
    background: var(--light-gray);
    color: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cart-quantity-display {
    background: white;
    border: 2px solid var(--light-purple);
    color: var(--primary-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

.cart-item-remove:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.cart-item-remove i {
    font-size: 0.9rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    background: linear-gradient(135deg, var(--soft-white), #f8f9fa);
    border-radius: 20px 20px 0 0;
    margin-top: auto; /* Empurra para baixo */
    flex-shrink: 0; /* Não permite que encolha */
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-text);
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(118, 42, 133, 0.1);
}

.cart-total-price {
    color: var(--primary-purple);
    font-size: 1.4rem;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-checkout i {
    font-size: 1.2rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--medium-gray);
    background: linear-gradient(135deg, var(--soft-white), #f8f9fa);
    border-radius: 20px;
    margin: 1rem;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--light-purple);
    animation: bounce 2s infinite;
}

.cart-empty p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== RESPONSIVIDADE DA PÁGINA DE CATEGORIA ===== */
@media (max-width: 768px) {
    .category-page {
        padding-top: 70px;
    }
    
    .category-nav {
        padding: 0 1rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-back {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .filters-container {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .search-box input {
        padding: 10px 12px 10px 40px;
        font-size: 0.9rem;
    }
    
    .price-filter select, .sort-filter select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .category-content {
        padding: 0 1rem 1rem;
    }
    
    .products-grid-category {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-info-category {
        padding: 1.5rem;
    }
    
    .product-name-category {
        font-size: 1.2rem;
    }
    
    .product-price-category {
        font-size: 1.4rem;
    }
    
    .product-actions-category {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-view-category,
    .btn-add-cart-category,
    .btn-whatsapp-category {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }
    
    .cart-body {
        max-height: calc(100vh - 180px); /* Ajuste para mobile */
        max-height: calc(100dvh - 180px); /* Dynamic viewport height para mobile */
    }
    
    .cart-icon {
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cart-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        gap: 0.2rem;
        margin-bottom: 0.3rem;
    }
    
    .cart-item-price .unit-price {
        font-size: 0.8rem;
    }
    
    .cart-item-price .total-price {
        font-size: 1rem;
    }
    
    .cart-item-remove {
        width: 35px;
        height: 35px;
    }
    
    .cart-quantity-controls {
        gap: 0.3rem;
        margin-top: 0.3rem;
    }
    
    .cart-quantity-btn {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .cart-quantity-display {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .category-page {
        padding-top: 60px;
    }
    
    .category-nav {
        padding: 0 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .filters-container {
        padding: 0 0.8rem;
        gap: 1rem;
    }
    
    .products-grid-category {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card-category {
        margin: 0;
    }
    
    .product-info-category {
        padding: 1.2rem;
    }
    
    .product-name-category {
        font-size: 1.1rem;
    }
    
    .product-price-category {
        font-size: 1.3rem;
    }
    
    .no-results {
        padding: 2rem 1rem;
    }
    
    .no-results-icon {
        font-size: 3rem;
    }
    
    .no-results h3 {
        font-size: 1.3rem;
    }
    
    .no-results p {
        font-size: 1rem;
    }
}

/* ===== UTILITÁRIOS ===== */
#logo-image {
    width: 2em;
    padding-bottom: 0.5em;
    transition: all 0.3s ease;
}

/* Logo image responsivo */
@media (min-width: 1200px) {
    #logo-image {
        width: 2em;
        padding-bottom: 0.5em;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    #logo-image {
        width: 1.8em;
        padding-bottom: 0.4em;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    #logo-image {
        width: 1.6em;
        padding-bottom: 0.3em;
    }
}

@media (max-width: 768px) {
    #logo-image {
        width: 1.4em;
        padding-bottom: 0.3em;
    }
}

@media (max-width: 480px) {
    #logo-image {
        width: 1.2em;
        padding-bottom: 0.2em;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animações para notificações */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

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

/* ===== RESPONSIVIDADE ===== */

/* Update responsive styles for footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-section {
        padding: 0;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    /* Esconder imagem do lado direito em mobile */
    .hero-right {
        display: none;
    }
    
    /* Mostrar imagem entre logo e tagline em mobile */
    .hero-woman-mobile {
        display: flex;
        justify-content: center;
        margin: 1rem 0 1.5rem 0;
    }
    
    .hero-woman-mobile .hero-woman-container {
        max-width: 250px;
        height: 320px;
        padding: 15px;
    }
    
    .hero-woman-mobile .hero-woman-container::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 25px;
    }
    
    .hero-logo-img {
        width: 90px;
        height: 90px;
    }
    
    .hero-brand-name {
        font-size: 3rem;
    }
    
    .hero-brand-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-jewelry-display {
        gap: 1.5rem;
    }
    
    .jewelry-item {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        margin: 0 auto;
        max-width: 350px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        padding: 0 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsivo para cuidados */
@media (max-width: 980px){
    .cuidados-container{
        grid-template-columns: 1fr;
    }
    .cuidados-visual { order:-1; margin-bottom:12px; }
}

@media (max-width:480px){
    .cuidados-title{ font-size:20px; }
    .cuidados-ring{ width:120px; height:120px; }
    .cuidados-item .badge{ min-width:34px; height:34px; border-radius:8px; }
    .hero-content{
        padding: 1em !important;
        gap: 1rem;
    }
    
    .hero-woman-mobile {
        margin: 0.8rem 0 1.2rem 0;
    }
    
    .hero-woman-mobile .hero-woman-container {
        max-width: 200px;
        height: 280px;
        padding: 12px;
    }
    
    .hero-woman-mobile .hero-woman-container::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-radius: 20px;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .hero-brand-name {
        font-size: 2.5rem;
    }
    
    .hero-brand-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-jewelry-display {
        gap: 1rem;
    }
    
    .jewelry-item {
        font-size: 2rem;
    }
    .hero-image-container{
        width: 300px;
        height: 300px;
    }
    #inicio{
        margin-top: 4em;
    }
    
    /* Melhorias para mobile pequeno */
    .product-card {
        max-width: 100%;
        margin: 0;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.25rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .footer-itens {
        flex-direction: row;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem;
    }
    
    .footer-itens svg {
        width: 20px;
        height: 20px;
    }
}

