/* 
Theme Name: Hello Elementor Child - Destake
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child customizado para Destake Moda Íntima
Author: Elementor Team / Customizado
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ============================================
   DESTAKE MODA ÍNTIMA - CUSTOM STYLES
   ============================================ */

/* CSS - Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF0078;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6006c;
}

/* Animation Pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 120, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 120, 0);
    }
}

.animate-pulse-cta {
    animation: pulse 2s infinite;
}

/* Header */
.header-destake {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    padding: 15px 5%;
}

.header-destake.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-destake {
    font-size: 22px;
    font-weight: 700;
    color: #FF0078;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-destake span {
    color: #e6006c;
}

/* Navigation Desktop */
.nav-desktop {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Nav links: BRANCOS no header transparente */
.nav-link-destake {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link-destake:hover {
    color: #FF0078;
}

/* Nav links: ESCUROS quando header branco */
.header-destake.scrolled .nav-link-destake {
    color: #222;
    text-shadow: none;
}

.header-destake.scrolled .nav-link-destake:hover {
    color: #FF0078;
}

/* Header Icons: BRANCOS no transparente */
.header-icons-destake {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icons-destake button {
    padding: 8px;
    color: #fff;
    transition: color 0.3s ease, filter 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.header-icons-destake button:hover {
    color: #FF0078;
}

/* Ícones: ESCUROS quando header branco */
.header-destake.scrolled .header-icons-destake button {
    color: #333;
    filter: none;
}

.icon-destake {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.mobile-toggle-destake {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

/* Mobile Toggle: BRANCO no transparente */
.mobile-toggle-destake span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Mobile Toggle: ESCURO quando header branco */
.header-destake.scrolled .mobile-toggle-destake span {
    background: #333;
    box-shadow: none;
}

.mobile-toggle-destake.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle-destake.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle-destake.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu-destake {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 24px 5%;
    border-top: 1px solid #f3f4f6;
    z-index: 10001 !important;
    /* Maior que o header e o backdrop */
}

.mobile-menu-destake.active {
    display: block;
}

.mobile-menu-destake a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-destake a:hover {
    color: #FF0078;
    background: rgba(255, 0, 120, 0.05);
}

.menu-backdrop-destake {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9998;
}

.menu-backdrop-destake.active {
    display: block;
}

/* 
==================================================
   HERO SECTION (BANNER PRINCIPAL COM A LOGO)
================================================== 
Você pode alterar os valores numéricos abaixo para testar
onde a imagem de fundo (que tem o texto Destake) se posiciona! 
*/
.hero-destake {
    /* Altura mínima do banner (70% do tamanho total da tela) */
    min-height: 80vh;

    /* Configurações para alinhar o conteúdo interno (Texto "Sinta-se Poderosa") ao centro */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* Cor dos textos do banner */
    color: white;

    /* Espaçamento interno ajustado para centralizar o texto */
    padding: 180px 5% 100px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    position: relative;
    overflow: hidden;

    /* Imagem de Fundo (Ajustado para COVER para não sobrar fundo cinza) */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), 
                url('https://lingerie.destakemodaintima.com.br/wp-content/uploads/2026/03/blob.jpg') center center / cover no-repeat;
    
    background-attachment: scroll;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-destake h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-destake p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-destake {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF0078;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 0, 120, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button-destake:hover {
    background-color: #e6006c;
    transform: translateY(-2px);
    color: white;
}

/* Beneficios Section */
.beneficios-destake {
    padding: 20px 5% 80px;
    /* Voltei um pouco de padding para não ficar colado no texto, mas margem 0 */
    margin-top: 20px !important;
    /* Força margem zero no topo */
    background-color: #ffffff;
}

.section-title-destake {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.section-title-destake::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FF0078;
    margin: 15px auto 0;
}

.section-title-destake span {
    color: #FF0078;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 40px;
    color: #FF0078;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Sobre Section */
.sobre-destake {
    padding: 80px 5%;
    background: white;
}

.sobre-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-imagem {
    flex: 1 1 400px;
    min-width: 300px;
}

.sobre-imagem div {
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: url('https://lingerie.destakemodaintima.com.br/wp-content/uploads/2026/03/Loja-Destake-2.jpeg') center/cover;
}

.sobre-texto {
    flex: 1 1 400px;
    min-width: 300px;
}

.sobre-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.sobre-texto h2 span {
    color: #FF0078;
}

.sobre-texto p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.sobre-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #FF0078;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sobre-link:hover {
    color: #e6006c;
}

.sobre-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sobre-link:hover svg {
    transform: translateX(5px);
}

/* Produtos Section */
.produtos-destake {
    padding: 80px 5%;
    background-color: #fffafb;
}

.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.produto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 300px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.produto-card.destaque {
    transform: scale(1.05);
    border: 2px solid #FF0078;
    box-shadow: 0 10px 30px rgba(255, 0, 120, 0.2);
    z-index: 2;
}

.produto-card.destaque:hover {
    transform: scale(1.05) translateY(-10px);
}

.produto-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF0078;
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.produto-imagem {
    height: 280px;
    overflow: hidden;
    background: #f3f4f6;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.produto-content {
    padding: 24px;
    text-align: center;
}

.produto-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.produto-subtitulo {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
}

.produto-preco {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF0078;
    margin-bottom: 16px;
}

.produto-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.produto-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
}

.produto-features li svg {
    width: 16px;
    height: 16px;
    color: #FF0078;
}

.produto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.produto-btn-outline {
    background: transparent;
    border: 1px solid #FF0078;
    color: #FF0078;
}

.produto-btn-outline:hover {
    background: #FF0078;
    color: white;
}

.produto-btn-filled {
    background: #FF0078;
    border: 1px solid #FF0078;
    color: white;
}

.produto-btn-filled:hover {
    background: #e6006c;
    border-color: #e6006c;
}

/* Footer */
.footer-destake {
    background-color: #222;
    color: white;
    padding: 60px 5% 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF0078;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FF0078;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF0078;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    /* Mobile Header Adjustments */
    .header-destake {
        padding: 10px 15px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        /* Adiciona fundo leve no mobile para visibilidade */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .logo-destake {
        font-size: 18px !important;
        color: #FF0078 !important;
        flex: 1 !important;
    }

    .logo-destake span {
        display: none !important;
        /* Mantém apenas DESTAKE */
    }

    .header-icons-destake {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
    }

    .header-icons-destake button {
        color: #333 !important;
        /* Garante que os ícones apareçam */
        padding: 5px !important;
    }

    .mobile-toggle-destake {
        display: flex !important;
        /* FORÇA O APARECIMENTO DO MENU */
        flex-direction: column;
        gap: 4px;
    }

    .mobile-toggle-destake span {
        background: #333 !important;
        /* Cor do hambúrguer */
        width: 22px;
        height: 2px;
    }

    .icon-destake {
        width: 20px !important;
        height: 20px !important;
    }

    .hero-destake h1 {
        font-size: 2.2rem !important;
    }

    .section-title-destake {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-destake {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-destake {
        min-height: 60vh;
        padding-top: 100px;
    }

    .hero-destake h1 {
        font-size: 2.2rem;
    }

    .hero-destake p {
        font-size: 1rem;
    }

    .cta-button-destake {
        padding: 14px 32px;
        font-size: 16px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .sobre-container {
        flex-direction: column;
    }

    .sobre-imagem div {
        height: 280px;
    }

    .sobre-texto h2 {
        font-size: 2rem;
    }

    .produto-card.destaque {
        transform: scale(1);
    }

    .produto-card.destaque:hover {
        transform: translateY(-10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-destake {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hero-destake h1 {
        font-size: 1.8rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .produto-card {
        max-width: 100%;
    }
}

/* ============================================
   WOOCOMMERCE — PADDING TOP PARA HEADER FIXO
   ============================================ */

/* Todas as páginas comuns */
.site-content {
    padding-top: 80px;
}

/* Remove padding na landing page (hero vai atrás do header transparente) */
.destake-landing-page .site-content {
    padding-top: 0;
}

/* Produto individual — slug /produto/... */
.single-product .site-content {
    padding-top: 110px;
}

/* Página de categoria WooCommerce — slug /categoria-produto/... */
.tax-product_cat .site-content,
.post-type-archive-product .site-content,
.woocommerce-page .site-content {
    padding-top: 110px;
}

/* Fallback geral WooCommerce */
.woocommerce .site-content {
    padding-top: 110px;
}

/* ============================================
   CARRINHO — CONTADOR
   ============================================ */
.header-cart-link,
.header-account-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    transition: color 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.header-cart-link:hover,
.header-account-link:hover {
    color: #FF0078;
}

.header-destake.scrolled .header-cart-link,
.header-destake.scrolled .header-account-link {
    color: #333;
    filter: none;
}

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

/* ============================================
   ÍCONES DO HEADER — COR BRANCA / ESCURA
   ============================================ */
.header-icons-destake a {
    color: #fff;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
    transition: color 0.3s ease;
}

.header-icons-destake a:hover {
    color: #FF0078;
}

.header-destake.scrolled .header-icons-destake a {
    color: #333;
    filter: none;
}

/* ============================================
   WOOCOMMERCE — BOTÃO ADICIONAR AO CARRINHO
   ============================================ */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background: #FF0078 !important;
    color: #fff !important;
    border: 2px solid #FF0078 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 12px 30px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 0, 120, 0.4) !important;
    animation: pulse 2s infinite !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    cursor: pointer !important;
}

.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: #e6006c !important;
    border-color: #e6006c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 0, 120, 0.5) !important;
}

/* Preço do produto em rosa */
.woocommerce .price,
.woocommerce .woocommerce-Price-amount {
    color: #FF0078 !important;
    font-weight: 700 !important;
}

/* Abas do produto */
.woocommerce .woocommerce-tabs ul.tabs li.active a {
    color: #FF0078 !important;
    border-top: 3px solid #FF0078 !important;
}

.woocommerce .woocommerce-tabs ul.tabs li a:hover {
    color: #FF0078 !important;
}

/* ==================================================
   CORREÇÃO DA BARRA ADMIN DO WORDPRESS
   ================================================== 
   Como o header é "position: fixed", ele sobe para o top:0.
   Quando você está logado, a barra preta de Admin do WordPress
   (que tem 32px) cobre metade superior do Header.
   Este código desce o header automaticamente se você estiver logado.
*/
body.admin-bar .header-destake {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header-destake {
        top: 46px;
        /* Barra do wordpress no celular fica com 46px */
    }

    /* FIX: Quando rolar a página no mobile, o header sobe para o topo real (0) */
    body.admin-bar .header-destake.scrolled {
        top: 0 !important;
    }
}

/* ==================================================
   PÁGINAS INTERNAS (CARRINHO, CONTA, CHECKOUT)
   ================================================== 
   Garante que as páginas não fiquem escondidas sob o header
*/
.site-content-destake {
    padding-top: 100px;
    /* Largura do header + margem de segurança */
    min-height: 60vh;
    background-color: #fcfcfc;
}

.container-destake {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.entry-title-destake {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    text-align: center;
}

/* ==================================================
   CUSTOMIZAÇÃO DO WOOCOMMERCE PREMIUM
   ================================================= */

/* Botões Globais do WooCommerce (Rosa Destake) */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce-page button.button,
.woocommerce-page a.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #FF0078 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 14px 35px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 0, 120, 0.2) !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background-color: #d6005c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 0, 120, 0.4) !important;
}

/* Campos de Formulário Modernos */
.woocommerce-Input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 12px 18px !important;
    background: #fff !important;
    transition: border-color 0.3s ease !important;
}

.woocommerce-Input:focus {
    border-color: #FF0078 !important;
    outline: none !important;
}

/* Menu de Navegação da Conta (Sidebar) */
.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    background: #fff !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    border: 1px solid #f0f0f0 !important;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.woocommerce-MyAccount-navigation ul li a {
    padding: 18px 25px !important;
    display: block !important;
    color: #444 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #fffafc !important;
    color: #FF0078 !important;
    padding-left: 30px !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: #FF0078 !important;
    color: #fff !important;
}

/* Notificações do WooCommerce */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 3px solid #FF0078 !important;
    background-color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 30px !important;
}

.woocommerce-message::before {
    color: #FF0078 !important;
}

/* Tabela de Pedidos */
.woocommerce-orders-table__header {
    background: #fdfdfd !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
}

/* ============================================
   FIX DEFINITIVO: ESPAÇAMENTO HEADER FIXO
   ============================================ */

/* Alvos diretos no container de conteúdo do Elementor/Hello */
.woocommerce-page #main,
.woocommerce-page #content,
.archive.tax-product_cat #main,
.archive.tax-product_cat #content {
    margin-top: 0px !important;
    /* Força o conteúdo principal a descer */
    padding-top: 0px !important;
}

/* Ajuste específico para o Título da Categoria e Breadcrumbs */
.woocommerce-products-header,
.woocommerce-breadcrumb {
    margin-top: 0px !important;
    padding-left: 0px !important;
}

/* No mobile, o espaçamento pode ser menor */
@media (max-width: 768px) {

    .woocommerce-page #main,
    .woocommerce-page #content {
        margin-top: 100px !important;
    }
}

/* ============================================
   FIX: ESPAÇAMENTO PARA HEADER FIXO (WOOCOMMERCE)
   ============================================ */
/* Adiciona margem no topo para que os produtos não fiquem atrás do menu fixo */
body.woocommerce-page,
body.archive.tax-product_cat,
body.single-product {
    padding-top: 100px !important;
    /* Reduzido para 100px conforme solicitado */
}

/* Garante que o container principal também tenha o recuo */
.woocommerce-page #content,
.archive.tax-product_cat #content {
    padding-top: 40px !important;
}

/* No mobile, o header costuma ser mais compacto */
@media (max-width: 768px) {

    body.woocommerce-page,
    body.archive.tax-product_cat,
    body.single-product {
        padding-top: 110px !important;
    }
}