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

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
    padding-bottom: 0;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-title {
    font-size: 18px;
    color: #000000;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000000;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    padding: 15px 20px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-link.highlight {
    color: #8B4513;
}

.sidebar-link .plus {
    color: #555;
}

/* Wrapper do header */
.site-header {
    position: relative;
}

/* Barra superior dourada */
.top-bar {
    background: #D4AF37;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.top-bar p {
    color: #000000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-bar-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.top-bar-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Cabeçalho principal */
.main-header {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Botão menu hamburguer */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    transition: background 0.2s;
}

.menu-btn:hover { background: rgba(255,255,255,0.08); }

.menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.2s;
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 42px;
    width: auto;
}

/* Ícones do header */
.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s;
    padding: 0;
}

.icon-btn:hover { background: rgba(255,255,255,0.08); }
.icon-btn:active { transform: scale(0.95); }

.icon-btn svg {
    width: 26px;
    height: 26px;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #ffffff;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botões de navegação */
.nav-buttons {
    display: flex;
    gap: 8px;
    padding: 10px 8px 14px;
    background: #fff;
}

.nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 86px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.15s ease;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.nav-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.nav-btn-primary {
    background-color: #000;
    color: #fff;
    border: none;
}

.nav-btn-primary:hover { background-color: #222; }

.nav-btn-secondary {
    background-color: #000;
    color: #fff;
    border: none;
}

.nav-btn-secondary:hover { background-color: #222; }

/* Escolha Por Dropdown */
.escolha-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    user-select: none;
}
.escolha-tab:hover { background: #fafafa; }
.escolha-tab-icon { font-size: 20px; color: #333; font-weight: 300; }
.escolha-tab-content { border-bottom: 1px solid #eee; }
.escolha-grupo { padding: 10px 20px 4px; font-size: 11px; font-weight: 700; color: #888; letter-spacing: 1px; text-transform: uppercase; }
.escolha-item { display: block; padding: 9px 28px; font-size: 13px; color: #111; text-decoration: none; }
.escolha-item:hover { background: #f5f5f5; }

/* Banner SEMANA DO CONSUMIDOR */
.banner-consumidor {
    width: 100%;
    overflow: hidden;
}

.banner-consumidor-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carrossel de Banners */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slides {
    position: relative;
    width: 100%;
}

.banner-slide {
    display: none;
    width: 100%;
    position: relative;
}

.banner-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-slide .banner-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D4AF37;
    color: #000000;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.banner-nav {
    display: none !important;
}

.banner-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 15px;
}

.banner-next {
    right: 15px;
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.banner-dot:hover {
    background: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .banner-nav {
        width: 36px;
        height: 36px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-slide .banner-tag {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 10px;
    }
}

/* Banner Section (antigo - manter para compatibilidade) */
.banner-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #2980b9 100%);
    display: flex;
    padding: 20px;
    min-height: 280px;
}

.banner-content {
flex: 1;
color: #fff;
padding: 10px;
}

.banner-tag {
background: var(--yellow);
color: var(--black);
padding: 5px 12px;
font-size: 11px;
font-weight: 700;
display: inline-block;
margin-bottom: 15px;
}

.banner-title {
font-family: 'Playfair Display', serif;
font-size: 32px;
font-weight: 700;
font-style: italic;
line-height: 1.1;
margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 10px;
}

.banner-code {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
}

.banner-desc {
    font-size: 14px;
    line-height: 1.4;
}

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

.banner-image img {
    max-height: 250px;
    object-fit: contain;
}

.banner-action {
    text-align: center;
    padding: 20px;
    background: #fff;
}

.btn-compre {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

/* ============================================
   FILTRO DE CATEGORIAS
   ============================================ */
.section-categorias {
    background: #fff;
    padding: 16px 0 0;
}

.categorias-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categorias-scroll::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    flex-shrink: 0;
    background: #f2f2f2;
    color: #333;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.cat-pill:hover {
    background: #e0e0e0;
}

.cat-pill.active {
    background: #000;
    color: #fff;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: #fff;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.dot.active {
    background: #000000;
}

/* Section Divider */
.section-divider {
    width: 50px;
    height: 2px;
    background: #000000;
    margin: 30px auto;
}

/* Section Dermocos */
.section-dermocos {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.5;
    margin: 25px auto;
    color: #000000;
    max-width: 600px;
    font-weight: 400;
}

.benefit-item {
    font-size: 15px;
    margin: 15px auto;
    color: #000000;
    max-width: 650px;
    line-height: 1.6;
    text-align: center;
}

.underline {
    text-decoration: underline;
}

/* Vogue Card */
.vogue-card {
    margin: 40px auto;
    max-width: 420px;
    padding: 0 20px;
}

.vogue-img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #000000;
}

.vogue-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 14px;
    font-style: italic;
}

/* Section Press */
.section-press {
    padding: 30px 20px;
    text-align: center;
}

.press-quote {
    font-size: 18px;
    font-style: italic;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.4;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.press-logo {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.press-logo.bazaar {
    font-family: 'Times New Roman', serif;
    font-size: 22px;
    letter-spacing: 2px;
}

.press-logo.marieclaire {
    font-family: 'Times New Roman', serif;
    font-style: italic;
}

.press-logo.buzzfeed {
    color: #e32;
    font-weight: 800;
}

/* Products Carousel */
.products-carousel {
    padding: 40px 0;
    background: #f9f9f9;
}

.products-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 24px 20px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Card de Produto Simples (Principia Style) */
.product-card-simple {
    min-width: 340px;
    max-width: 340px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    scroll-snap-align: start;
    text-align: center;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.product-name-simple {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.product-price-simple {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
    text-align: left;
}

.product-installment {
    font-size: 13px;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

/* Em Estoque */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.stock-status.in-stock {
    color: #2e7d32;
}

.stock-status.in-stock svg {
    stroke: #2e7d32;
    width: 18px;
    height: 18px;
}

/* Controle de Quantidade */
.quantity-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    font-weight: 400;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-input {
    width: 48px;
    height: 44px;
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.btn-adicione-simple {
    width: 100%;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 20px 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    margin-top: 4px;
}

.btn-adicione-simple:hover {
    background: #000000;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-link:hover .product-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Section Derma */
.section-derma {
    padding: 20px 0;
}

.derma-card {
    position: relative;
    background: url('https://via.placeholder.com/400x280/e8f4f8/333333?text=Lab') center/cover;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.derma-overlay {
    background: rgba(50,50,50,0.85);
    color: #fff;
    padding: 25px;
    max-width: 200px;
}

.derma-overlay p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.derma-banner {
    width: 100%;
    overflow: hidden;
}

.derma-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Kits Carousel */
.kits-carousel {
    padding: 20px;
}

.kits-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 0 20px 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.kit-card {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    background: #fff;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    scroll-snap-align: start;
    text-align: center;
}

.kit-image {
    width: 100%;
    position: relative;
    aspect-ratio: 3 / 4;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.kit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.kit-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.kit-price-old {
    font-size: 13px;
    color: #555;
    text-decoration: line-through;
}

.kit-price {
    font-size: 14px;
    color: #000000;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
}

.kit-installment {
    font-size: 12px;
    color: #333;
    margin: 5px 0 15px;
}

.btn-adicione {
    width: 100%;
    background: #000000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
}

.btn-adicione:hover {
    background: #000000;
}

/* Section Experimente */
.section-experimente {
    padding: 64px 24px;
    text-align: center;
    background: #fff;
}

.section-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #000000;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.experimente-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    margin: 20px auto;
    max-width: 540px;
    color: #222;
}

/* Section Reviews */
.section-reviews {
    padding: 30px 20px;
    text-align: center;
}

.review-card {
    padding: 20px;
}

.review-author {
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
}

.author-name {
    color: #8B4513;
}

.review-stars {
    color: #f5c518;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    color: #000000;
    font-style: italic;
}

.reviews-dots {
    margin-top: 15px;
}

/* Section Social */
.section-social {
    padding: 0;
    text-align: center;
    background: #fff;
    position: relative;
}

.section-social::before,
.section-social::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: #000000;
}

.section-social::before {
    top: 0;
}

.section-social::after {
    bottom: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
}

.social-icon {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 0.6;
}

/* Section Benefits */
.section-benefits {
    padding: 40px 30px;
    background: #fff;
}

.benefit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    gap: 20px;
}

.benefit-text {
    flex: 1;
    text-align: right;
}

.benefit-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
    letter-spacing: 0.5px;
}

.benefit-text p {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Newsletter */
.section-newsletter {
    padding: 50px 20px;
    background: #fff;
}

.newsletter-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #000000;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #555;
}

.newsletter-btn {
    background: #000000;
    color: #fff;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #000000;
}

/* Footer */
.footer {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-contact p {
    font-size: 13px;
    color: #000000;
    margin-bottom: 8px;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-links-row a {
    font-size: 12px;
    color: #000000;
    text-decoration: none;
}

.footer-info {
    margin: 20px 0;
}

.footer-info p {
    font-size: 11px;
    color: #333;
    margin-bottom: 5px;
}

.payment-flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.flag {
    background: #f5f5f5;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
    margin-top: 20px;
}

.footer-nav a {
    font-size: 11px;
    color: #000000;
    text-decoration: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
}

/* Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .fixed-cta {
        display: block;
    }
}

.btn-crie-rotina {
    display: inline-block;
    background: #000000;
    color: #fff;
    text-decoration: none;
    padding: 14px 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.2s;
    border-radius: 8px;
}

.btn-crie-rotina:hover {
    background: #000000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */


/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .banner-section {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-dermocos,
    .section-press,
    .section-experimente,
    .section-reviews {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .products-scroll,
    .kits-scroll {
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .more-products {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) {
    .main-header {
        padding: 15px 40px;
    }
    
    .logo {
        font-size: 32px;
    }
    
    .nav-buttons {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .banner-section {
        padding: 40px;
        min-height: 350px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-code {
        font-size: 28px;
    }
    
    .section-title-large {
        font-size: 32px;
    }
    
    .section-title-serif {
        font-size: 40px;
    }
    
    .products-scroll {
        gap: 25px;
    }
    
    .product-card {
        min-width: 200px;
    }
    
    .kit-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .section-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px;
    }
    
    .benefit-row {
        border-bottom: none;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 8px;
    }
    
    .footer-nav {
        gap: 20px 30px;
    }
    
    .sidebar {
        width: 350px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .main-header {
        padding: 15px 30px;
    }
    
    .logo {
        font-size: 30px;
    }
    
    .banner-section {
        padding: 30px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .products-scroll {
        gap: 20px;
    }
    
    .product-card {
        min-width: 180px;
    }
    
    .kit-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .more-products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .benefit-row {
        border-bottom: none;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 8px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .banner-section {
        padding: 25px;
    }
    
    .banner-title {
        font-size: 30px;
    }
    
    .banner-code {
        font-size: 22px;
    }
    
    .section-title-large {
        font-size: 24px;
    }
    
    .more-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile (até 575px) */
@media (max-width: 575px) {
    body {
        font-size: 15px;
    }

    .nav-buttons {
        margin-top: 0;
    }

    .top-bar p {
        font-size: 12px;
    }

    .main-header {
        padding: 14px 14px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .logo-img {
        height: 32px;
    }

    .menu-btn {
        width: 36px;
        height: 36px;
    }

    .menu-btn span {
        width: 20px;
    }

    .header-icons {
        gap: 4px;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }

    .nav-btn {
        height: 46px;
        font-size: 13px;
        padding: 0 14px;
        letter-spacing: 0.3px;
    }

    .nav-buttons {
        gap: 6px;
        padding: 8px 8px 10px;
    }
    
    .banner-section {
        padding: 15px;
        min-height: 240px;
        flex-direction: column;
    }
    
    .banner-content {
        padding: 5px;
        text-align: center;
    }
    
    .banner-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .banner-title {
        font-size: 26px;
    }
    
    .banner-code {
        font-size: 20px;
    }
    
    .banner-desc {
        font-size: 13px;
    }
    
    .banner-image img {
        max-height: 180px;
    }
    
    .btn-compre {
        padding: 12px 40px;
        font-size: 13px;
    }
    
    .section-divider {
        margin: 20px auto;
    }
    
    .section-dermocos {
        padding: 20px 15px;
    }
    
    .section-title-large {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .benefit-item {
        font-size: 14px;
    }
    
    .vogue-card img {
        max-width: 100%;
    }
    
    .section-press {
        padding: 20px 15px;
    }
    
    .press-quote {
        font-size: 16px;
    }
    
    .press-logos {
        gap: 15px;
    }
    
    .press-logo {
        font-size: 14px;
    }
    
    .press-logo.bazaar {
        font-size: 18px;
    }
    
    .products-scroll {
        padding: 10px 20px 20px;
        gap: 14px;
        scroll-padding-left: 20px;
    }

    .product-card-simple {
        min-width: calc(75vw);
        max-width: calc(75vw);
        padding: 20px;
    }

    .product-name-simple {
        font-size: 13px;
    }

    .product-price-simple {
        font-size: 22px;
    }

    .product-installment {
        font-size: 12px;
    }

    .btn-adicione-simple {
        padding: 17px;
        font-size: 14px;
    }

    .product-card {
        min-width: 160px;
    }

    .product-image img {
        height: 160px;
    }

    .product-name {
        font-size: 12px;
    }
    
    .section-derma {
        padding: 15px;
    }
    
    .derma-card {
        min-height: 200px;
    }
    
    .derma-overlay {
        padding: 15px;
        max-width: 180px;
    }
    
    .derma-overlay p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .kits-carousel {
        padding: 15px;
    }
    
    .kits-scroll {
        gap: 12px;
    }
    
    .kit-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        padding: 20px;
    }
    
    .kit-image img {
        height: 150px;
    }
    
    .kit-name {
        font-size: 12px;
    }
    
    .price-value {
        font-size: 24px;
    }
    
    .kit-installment {
        font-size: 11px;
    }
    
    .btn-adicione {
        padding: 10px;
        font-size: 12px;
    }
    
    .section-experimente {
        padding: 20px 15px;
    }
    
    .section-title-serif {
        font-size: 24px;
    }
    
    .experimente-text {
        font-size: 14px;
    }
    
    .section-reviews {
        padding: 20px 15px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .section-social {
        padding: 20px 15px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .section-benefits {
        padding: 15px;
    }
    
    .benefit-row {
        padding: 12px 0;
    }
    
    .benefit-text h4 {
        font-size: 13px;
    }
    
    .benefit-text p {
        font-size: 11px;
    }
    
    .benefit-icon {
        font-size: 20px;
    }
    
    .section-newsletter {
        padding: 20px 15px;
    }
    
    .newsletter-title {
        font-size: 16px;
    }
    
    .newsletter-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .footer-contact p {
        font-size: 12px;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-info p {
        font-size: 10px;
    }
    
    .payment-flags {
        gap: 8px;
    }
    
    .flag {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .footer-nav {
        gap: 8px 12px;
    }
    
    .footer-nav a {
        font-size: 10px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 80px;
        left: 15px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .fixed-cta {
        padding: 12px 15px;
    }
    
    .btn-crie-rotina {
        padding: 12px 40px;
        font-size: 13px;
    }
    
    .sidebar {
        width: 260px;
    }
    
    .sidebar-link {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .sidebar-title {
        font-size: 16px;
    }
}

/* Extra Small Mobile (até 360px) */
@media (max-width: 360px) {
    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .nav-btn {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .banner-title {
        font-size: 22px;
    }
    
    .banner-code {
        font-size: 18px;
    }
    
    .section-title-large {
        font-size: 20px;
    }
    
    .section-title-serif {
        font-size: 22px;
    }
    
    .product-card {
        min-width: 120px;
    }
    
    .kit-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .sidebar {
        width: 240px;
    }
}
