
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
.menu-toggle {
    display: none;
    font-size: 28px;
    background: #D4AF37;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: 0.3s ease;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #D4AF37; /* mesma cor do cabeçalho */
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}


.menu-toggle:hover {
    background: #c99e2e;
}


        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1a1a1a;
            background: #ffffff;
            line-height: 1.6;
            font-size: 16px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* ===== HEADER MODERNO ===== */

.site-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Efeito ao rolar */
.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Layout */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== LOGO ===== */

.logo-section {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-section:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
}

.site-description {
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== MENU ===== */

.main-navigation {
    display: flex;
    gap: 32px;
}

.main-navigation a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.main-navigation a:last-child {
  border-bottom: none;
}



.main-navigation a::before {
  color: #D4AF37;
  margin-right: 8px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

/* Linha dourada animada */
.main-navigation a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #f3d98c);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-navigation a:hover {
    color: #D4AF37;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* ===== SOCIAL ICONS ===== */

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* ===== MENU MOBILE ===== */

.menu-toggle {
    display: none;
    font-size: 26px;
    background: #D4AF37;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: 0.3s ease;
}

.menu-toggle:hover {
    background: #c99e2e;
}



/* ===== HERO MODERNO ===== */

.hero-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: #D4AF37;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-subtitle .highlight {
    color: #D4AF37;
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.benefit-item {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item::before {
    content: "✓";
    background: #D4AF37;
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== RESPONSIVO ===== */



        /* ===== ACCESSIBILITY ===== */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ===== PRINT ===== */
        @media print {
            .site-header,
            .site-footer,
            .hero-cta {
                display: none;
            }
        }
        
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* ===== OZONIOTERAPIA MODERNA ===== */

.ozonio-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ozonio-intro {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

.ozonio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ozonio-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.ozonio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.ozonio-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.ozonio-card ul {
    list-style: none;
    padding: 0;
}

.ozonio-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.ozonio-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.ozonio-highlight {
    margin-top: 50px;
    background: rgba(212, 175, 55, 0.08);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.ozonio-cta {
    text-align: center;
    margin-top: 35px;
}
/* ===== TERAPIAS INJETÁVEIS MODERNA ===== */

.injetaveis-modern {
    background: #ffffff;
}

.injetaveis-intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

.injetaveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.injetaveis-card {
    background: #f9f7f4;
    padding: 35px;
    border-radius: 14px;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.injetaveis-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.injetaveis-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.injetaveis-card p {
    color: #555;
    line-height: 1.7;
}

.injetaveis-card ul {
    list-style: none;
    padding: 0;
}

.injetaveis-card li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #555;
}

.injetaveis-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 1.4rem;
    line-height: 1;
}

.injetaveis-highlight {
    margin-top: 50px;
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.injetaveis-cta {
    text-align: center;
    margin-top: 35px;
}

/* ===== MANIPULADOS MODERNA ===== */

.manipulados-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.manipulados-intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

.manipulados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.manipulados-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.manipulados-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.manipulados-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.manipulados-card ul {
    list-style: none;
    padding: 0;
}

.manipulados-card li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #555;
}

.manipulados-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.manipulados-highlight {
    margin-top: 50px;
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.manipulados-cta {
    text-align: center;
    margin-top: 35px;
}
/* ===== LASER MODERNA ===== */

.laser-modern {
    background: #ffffff;
}

.laser-intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

.laser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.laser-card {
    background: #f9f7f4;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.laser-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.section-title,
.profissional-nome,
.ozonio-card h3,
.injetaveis-card h3,
.manipulados-card h3,
.laser-card h3 {

    font-size: clamp(36px, 6vw, 72px);

    font-weight: 700;

    background: linear-gradient(90deg, #000000, #333333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.laser-card ul {
    list-style: none;
    padding: 0;
}

.laser-card li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #555;
}

.laser-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.laser-highlight {
    margin-top: 50px;
    background: rgba(212, 175, 55, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.laser-cta {
    text-align: center;
    margin-top: 35px;
}
/* ===== FAQ MODERNO ===== */

/* ===== FAQ MODERNO FUNCIONAL ===== */

.faq-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #D4AF37;
}

.faq-icon {
    font-size: 1.4rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}
/* ===== SOBRE MODERNO ===== */

.sobre-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.sobre-intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sobre-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.sobre-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.sobre-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.sobre-card ul {
    list-style: none;
    padding: 0;
}

.sobre-card li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #555;
}

.sobre-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.destaque-negativo {
    background: #fff;
    border-left: 4px solid #ccc;
}

.destaque-positivo {
    background: rgba(212,175,55,0.08);
    border-left: 4px solid #D4AF37;
}

.sobre-frase {
    margin-top: 60px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
}

/* ===== PROFISSIONAL MODERNO ===== */

.profissional-modern {
    background: #ffffff;
}

.profissional-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.profissional-image-box {
    position: relative;
}

.profissional-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.profissional-img:hover {
    transform: scale(1.02);
}

.profissional-content {
    display: flex;
    flex-direction: column;
}

.profissional-nome {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.profissional-texto {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.profissional-especialidades h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.profissional-especialidades ul {
    list-style: none;
    padding: 0;
}

.profissional-especialidades li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #555;
}

.profissional-especialidades li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.profissional-cta {
    margin-top: 35px;
}

/* ===== RESPONSIVO ===== */


        /* ===== FOOTER ===== */
        .site-footer {
            background: #1a1a1a;
            color: #ffffff;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #D4AF37;
        }

        .footer-section p,
        .footer-section a {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #D4AF37;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            color: #999999;
            font-size: 0.9rem;
        }
                .entry-content {
            color: #666666;
            line-height: 1.8;
        }
        
              /* ===== SECTIONS ===== */
        .section {
            padding: 50px 16px;
            background: #ffffff;
        }

        .section.alt {
            background: #f9f7f4;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #D4AF37;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .entry-content {
            color: #666666;
            line-height: 1.8;
        }



        .entry-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .entry-content p {
            margin-bottom: 15px;
        }

        .entry-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .entry-content li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background: rgba(212, 175, 55, 0.1);
            padding: 30px;
            border-left: 4px solid #D4AF37;
            border-radius: 4px;
            margin: 30px 0;
        }
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #D4AF37;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
    cursor: pointer;
    font-size: 1rem;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.6s;
}

.btn:hover::after {
  left: 125%;
}


.btn:hover {
    background: #c99e2e;
    border-color: #c99e2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.btn.secondary {
    background: transparent;
    color: #D4AF37;
}

.btn.secondary:hover {
    background: #D4AF37;
    color: #ffffff;
}
.loja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.ozonio-card,
.injetaveis-card,
.manipulados-card,
.laser-card,
.sobre-card,
.produto-card {
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.produto-card {
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  position:relative;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}

.produto-card h3{
  font-size:1rem;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.descricao-produto{
  font-size:0.85rem;
  min-height:50px;
  margin-bottom:8px;
}

.preco{
  margin-top:auto;
}


.produto-card img {
    width: 100%;
    aspect-ratio: 1 / 1;   /* força formato quadrado */
    object-fit: cover;     /* evita distorção */
    border-radius: 12px;
    display: block;
}

.badge-estoque {
    position:absolute;
    top:15px;
    right:15px;
    background:#c0392b;
    color:#fff;
    font-size:0.75rem;
    padding:5px 10px;
    border-radius:20px;
}

.preco {
    font-size:1.3rem;
    color:#D4AF37;
    font-weight:700;
    margin:10px 0;
}

.btn-add {
    background:linear-gradient(135deg,#D4AF37,#c99e2e);
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.btn-add:hover {
    transform:scale(1.05);
}

.carrinho-box {
    margin-top:60px;
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.btn-checkout {
    width:100%;
    margin-top:20px;
    padding:14px;
    background:#D4AF37;
    border:none;
    color:#fff;
    border-radius:8px;
    font-weight:600;
}
.carrinho-box {
  background: linear-gradient(135deg, #ffffff, #f9f7f4);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 40px auto;
}

.carrinho-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.carrinho-lista {
  margin-bottom: 20px;
}

.item-carrinho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.item-info {
  color: #333;
}

.item-subtotal {
  font-weight: 600;
  color: #D4AF37;
}

.cupom-area {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cupom-area input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.cupom-area button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.cupom-area button:hover {
  background: #333;
}

.carrinho-total {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.carrinho-total span {
  color: #D4AF37;
  font-size: 1.3rem;
}

.btn-finalizar {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #D4AF37, #e6c65a);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-finalizar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.4);
}
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  margin: 70px 0;
  opacity: 0.4;
}

.linha-endereco {
  display: flex;
  gap: 10px;
}

.linha-endereco input:first-child {
  flex: 2;
}

.linha-endereco input:last-child {
  flex: 1;
}

.modal-box input {
  width: 100%;
  margin-bottom: 12px;
}

.linha-cidade-bairro {
  display: flex;
  gap: 10px;
}

.linha-cidade-bairro input {
  width: 50%;
}

/* ===== ITEM CARRINHO PREMIUM ===== */

.item-carrinho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.nome-produto {
  font-weight: 600;
  margin-bottom: 8px;
}

.controle-qtd {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-qtd {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #D4AF37;
  background: transparent;
  color: #D4AF37;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-qtd:hover {
  background: #D4AF37;
  color: #fff;
  transform: scale(1.1);
}

.qtd-numero {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.item-lado-direito {
  text-align: right;
}

.item-subtotal {
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 6px;
}

.btn-remover {
  background: transparent;
  border: none;
  color: #c0392b;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-remover:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ===== Loja ativa ===== */

#loja {
  display: none;
}

body.loja-ativa .page-section,
body.loja-ativa .section-divider {
  display: none !important;
}

body.loja-ativa #loja {
  display: block !important;
}

.cupom-wrapper {
  margin-bottom: 20px;
}

.mensagem-cupom {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
}

.mensagem-cupom.erro {
  color: #d93025;
}

.mensagem-cupom.sucesso {
  color: #1a7f37;
}
:root {
  --header-height: 110px;
}

section {
  scroll-margin-top: var(--header-height);
}


.cart-float:hover {
  transform: scale(1.1);
}

.cart-float span {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #c0392b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-float.hidden {
  display: none;
}

.cart-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #D4AF37; /* mesma cor exata do WhatsApp */
  color: #ffffff; /* ícone branco */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s ease;
  animation: pulse 2s infinite; /* mesma animação do WhatsApp */
}

.cart-float {
  transition: transform 0.3s ease;
}

.cart-float:active {
  transform: scale(0.9);
}

@keyframes cartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.cart-float.pulse {
  animation: cartPop 0.3s ease;
}

/* ===== PARCELAMENTO PREMIUM ===== */

.parcelamento-wrapper {
  margin: 20px 0;
}

.parcelamento-titulo {
  font-weight: 600;
  margin-bottom: 12px;
}

.parcelamento-opcoes {
  display: flex;
  gap: 10px;
}

.parcela-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #eee;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.parcela-btn strong {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
}

.parcela-btn span {
  font-size: 0.8rem;
  color: #777;
}

.parcela-btn:hover {
  border-color: #D4AF37;
}

.parcela-btn.active {
  border-color: #D4AF37;
  background: rgba(212,175,55,0.08);
}

.parcelamento-info {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #D4AF37;
}

.frete-wrapper {
  margin: 20px 0;
}

.cep-area {
  display: flex;
  gap: 10px;
}

.cep-area input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.cep-area button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

#frete-resultado {
  margin-top: 10px;
  font-size: 0.9rem;
}

.frete-opcoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.frete-opcao {
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
  background: #fafafa;
}

.frete-opcao:hover {
  border-color: #d4af37;
  background: #fffaf0;
}

.frete-opcao.active {
  border-color: #d4af37;
  background: #fff7e6;
}

.frete-titulo {
  font-weight: 600;
  margin-bottom: 4px;
}

.frete-detalhes {
  font-size: 0.85rem;
  color: #555;
}

/* ===== FRETE GRÁTIS PROGRESSIVO ===== */

.frete-gratis-wrapper {
  margin: 20px 0;
}

.frete-gratis-texto {
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.frete-gratis-barra {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.frete-gratis-progresso {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37, #f3d98c);
  transition: width 0.4s ease;
}

/* ===== MODAL CONFIRMAÇÃO ===== */

.confirmacao-box {
  text-align: center;
  padding: 30px;
}

.confirmacao-botoes {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.btn-confirmacao {
  padding: 12px 26px;
  border-radius: 6px; /* levemente arredondado */
  border: none;
  cursor: pointer;
  font-family: inherit; /* usa a mesma fonte do site */
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* BOTÃO PRINCIPAL (dourado do site) */
.btn-wpp {
  background-color: #D4AF37;
  color: #fff;
}

.btn-wpp:hover {
  background-color: #b8962e;
}

/* BOTÃO SECUNDÁRIO */
.btn-secundario {
  background-color: #f1f1f1;
  color: #333;
}

.btn-secundario:hover {
  background-color: #e0e0e0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== MODAL PREMIUM ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: linear-gradient(135deg, #ffffff, #f9f7f4);
  padding: 28px;
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  animation: modalFade 0.3s ease;
  position: relative;
}

@keyframes modalFade {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.modal-box p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

.modal-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.modal-box input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
  outline: none;
}

.modal-botoes {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.modal-botoes button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.modal-botoes button:first-child {
  background: #eee;
}

.modal-botoes button:first-child:hover {
  background: #ddd;
}

.btn-confirmar {
  background: linear-gradient(90deg, #D4AF37, #e6c65a);
  color: #fff;
}

.btn-confirmar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.4);
}

/* ===== CONSENTIMENTO ORGANIZADO ===== */

.consentimento-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
}

.consentimento-box input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #D4AF37;
}

.consentimento-box label {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

.consentimento-info {
  font-size: 0.75rem;
  color: #777;
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== POLÍTICA ESTILO ===== */

.modal-politica-box {
  max-height: 80vh;
  overflow-y: auto;
}

.politica-content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.politica-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.politica-content p {
  margin-bottom: 10px;
}

.modal-overlay {
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.modal-overlay.active {
  display: flex;
}

.modal-descricao {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 18px;
}

  /* ===== HERO ===== */
  .hero-modern {
    padding: 50px 16px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.0;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  /* ===== SECTIONS ===== */
  .section {
    padding: 45px 16px;
  }

  .section-title {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }

  /* ===== CARDS GERAIS ===== */
  .ozonio-card,
  .injetaveis-card,
  .manipulados-card,
  .laser-card,
  .sobre-card {
    padding: 18px;
  }

  .ozonio-card h3,
  .injetaveis-card h3,
  .manipulados-card h3,
  .laser-card h3,
  .sobre-card h3 {
    font-size: 1.05rem;
  }
  
  .controle-produto{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:10px;
}

.btn-mais,
.btn-menos{
  width:32px;
  height:32px;
  border-radius:50%;
  border:1px solid #D4AF37;
  background:#fff;
  color:#D4AF37;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s ease;
}

.btn-mais:hover,
.btn-menos:hover{
  background:#D4AF37;
  color:#fff;
  transform:scale(1.1);
}

.qtd-produto{
  font-weight:600;
  min-width:20px;
  text-align:center;
}

.produto-esgotado{
  opacity:0.5;
  filter:grayscale(100%);
  transition:0.3s ease;
}

.badge-estoque{
  position:absolute;
  top:10px;
  right:10px;
  padding:6px 10px;
  border-radius:20px;
  font-size:0.7rem;
  font-weight:600;
  color:#fff;
}

.badge-estoque.esgotado{
  background:#c0392b;
}

.badge-estoque.ultimas{
  background:#D4AF37;
  animation:pulse 1.5s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

  .scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #f3d98c);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}

.carrinho-box.destacado {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1),
              0 15px 40px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}
/* ===== POLÍTICA ESTILO ===== */

.modal-politica-box {
  max-height: 80vh;
  overflow-y: auto;
}

.politica-content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.politica-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.politica-content p {
  margin-bottom: 10px;
}

.modal-overlay {
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-descricao {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 18px;
}

/* ===== ENDEREÇO AJUSTADO AO CARRINHO ===== */

/* ===== BLOCO FRETE LIMPO E MODERNO ===== */

.frete-box {
  margin: 25px 0;
}

.frete-label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: #1a1a1a;
}

.frete-linha {
  display: flex;
  gap: 10px;
}

.frete-linha input {
  flex: 1;
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  font-family: inherit;
}

.frete-linha button {
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.frete-linha button:hover {
  background: #333;
}

/* LOADING */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;            /* controlado via JS */
  align-items: center;
  justify-content: center;
  z-index: 99999;           /* acima de modal, header, etc */
}

.loader-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top: 4px solid #D4AF37;
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: spin 1s linear infinite;
   filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


  /* ======================================
   RESPONSIVO TABLET (até 992px)
====================================== */

@media (max-width: 992px) {

  /* HERO */
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-cta {
    justify-content: center;
  }

  .benefits-list {
    margin-top: 20px;
  }

  /* PROFISSIONAL */
  .profissional-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .profissional-content {
    align-items: center;
  }

  .profissional-especialidades ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  .social-icons {
    order: -1;
  }

}


/* ======================================
   RESPONSIVO MOBILE (até 768px)
====================================== */

@media (max-width: 768px) {

  /* ===== HEADER ===== */

  .site-header {
    padding: 12px 0;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .site-name {
    font-size: 1.2rem;
  }

  .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }

  .main-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-navigation.active {
  display: flex;
}

  .main-navigation a::after {
    display: none;
  }
  
  @media (max-width: 768px) {

  .modal-box {
    padding: 20px;
    max-width: 95%;
    border-radius: 14px;
  }

  .modal-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .modal-box input {
    padding: 12px;
    font-size: 0.9rem;
  }

  .modal-botoes button {
    padding: 10px;
    font-size: 0.85rem;
  }

}

  .social-icons {
    margin-top: 10px;
  }

  /* ===== HERO ===== */

  .hero-modern {
    padding: 60px 16px;
  }

  .hero-content {
    text-align: center;
    margin-left: 0;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-image {
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
  }

  .benefits-list {
    gap: 8px;
  }

  .benefit-item {
    font-size: 0.8rem;
  }

  /* ===== LOJA GRID PREMIUM 2 COLUNAS ===== */

  .loja-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .produto-card {
    padding: 12px;
    border-radius: 12px;
  }

  .produto-card img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .produto-card h3 {
    font-size: 0.85rem;
    line-height: 1.2;
    min-height: 32px;
  }

  .produto-card p {
    font-size: 0.75rem;
    min-height: 30px;
  }

  .preco {
    font-size: 0.95rem;
    margin: 6px 0;
  }

  .btn-add {
    padding: 6px;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .badge-estoque {
    font-size: 0.6rem;
    padding: 4px 6px;
  }

  /* ===== CARRINHO ===== */

  .carrinho-box {
    margin-top: 40px;
    padding: 20px;
  }

  .item-carrinho {
    padding: 10px 0;
  }

  .nome-produto,
  .item-subtotal {
    font-size: 0.9rem;
  }

  /* ===== PROFISSIONAL ===== */

  .profissional-wrapper {
    gap: 25px;
  }

  .profissional-nome {
    font-size: 1.4rem;
  }

  .profissional-texto {
    font-size: 0.9rem;
  }

  .profissional-img {
    max-width: 220px;
    margin: 0 auto;
  }

  /* ===== SERVIÇOS ===== */

  .ozonio-card,
  .injetaveis-card,
  .manipulados-card,
  .laser-card,
  .sobre-card {
    padding: 20px;
  }

  .ozonio-card h3,
  .injetaveis-card h3,
  .manipulados-card h3,
  .laser-card h3,
  .sobre-card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  /* ===== GRID PROFISSIONAIS ===== */

  .professional-grid {
    grid-template-columns: 1fr;
  }
  
   .btn {
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
  
    .endereco-linha {
    flex-direction: column;
  }

  .endereco-linha {
    grid-template-columns: 1fr;
  }
}

@media (min-width:1024px){
  body {
    cursor: default;
  }

  a, button {
    cursor: pointer;
  }
}



