/* SISTEMA DE DESIGN & ESTILOS PREMIUM - TREXION 3D */

:root {
    --bg: #09090b;
    --bg-card: #141416;
    --bg-card-hover: #1c1c1f;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(244, 132, 95, 0.4);
    
    --primary: #F4845F;
    --primary-dark: #e06840;
    --primary-glow: rgba(244, 132, 95, 0.15);
    
    --text: #fafafa;
    --text-muted: #a1a1aa;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

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

/* DESTAQUES DE TEXTO */
.highlight-orange {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(244, 132, 95, 0.2);
}

.highlight-white {
    color: #fff;
}

/* NAVBAR (GLASSMORPHISM) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

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

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.6rem;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.claire-link {
    color: #89A3B2; /* Azul da paleta Claire */
}

.nav-link.claire-link:hover {
    background: rgba(137, 163, 178, 0.1);
}

.nav-btn {
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(244, 132, 95, 0.3);
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 132, 95, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(9, 9, 11, 0.75) 0%, rgba(9, 9, 11, 0.95) 100%), url('uploads/hero_bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244,132,95,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: 
        linear-gradient(var(--text) 1px, transparent 1px),
        linear-gradient(90deg, var(--text) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(244, 132, 95, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 132, 95, 0.5);
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

.icon-arrow {
    transition: var(--transition);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
    transform: translateY(-2px);
}

/* CAROUSEL */
.carousel-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.carousel-slider {
    position: relative;
    height: 380px;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    padding: 3rem;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    width: 100%;
    align-items: center;
    gap: 3rem;
}

.slide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.slide-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

.slide-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.slide-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.slide-visual img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.carousel-ctrl:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-ctrl.prev { left: 1.5rem; }
.carousel-ctrl.next { right: 1.5rem; }

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* SEÇÃO PRODUTOS (3x3 Grid) */
.products-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    background: var(--primary-glow);
    border: 1px solid rgba(244, 132, 95, 0.2);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(244, 132, 95, 0.08);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1/1; /* Quadrado conforme requisitado */
    overflow: hidden;
}

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

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

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #fff;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    gap: 0.6rem;
}

.btn-buy {
    background-color: #25D366;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-buy:hover {
    background-color: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-share {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-share:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-color: var(--text-muted);
}

/* CARDS DE CATEGORIA */
.category-section {
    padding: 4rem 0;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.02), transparent 70%);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card.casa:hover { border-color: #2471A3; box-shadow: 0 10px 30px rgba(36, 113, 163, 0.15); }
.category-card.pet:hover { border-color: #25D366; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15); }
.category-card.claire:hover { border-color: #89A3B2; box-shadow: 0 10px 30px rgba(137, 163, 178, 0.15); }

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.category-card-images {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.category-card-images img {
    flex: 1;
    min-width: 0;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.category-card:hover .category-card-images img {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-view-all {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-all i {
    transition: var(--transition);
}

.category-card:hover .btn-view-all i {
    transform: translateX(4px);
}

/* ORÇAMENTO & FORMULÁRIO */
.quote-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.quote-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: var(--primary-glow);
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(244, 132, 95, 0.2);
}

.quote-info h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.quote-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.features-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.quote-card-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(244, 132, 95, 0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* DROPZONE FILE */
.file-dropzone {
    border: 2px dashed var(--border);
    background: rgba(255, 255, 255, 0.01);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.file-dropzone:hover, .file-dropzone.highlight {
    border-color: var(--primary);
    background: var(--primary-glow);
}

.file-dropzone i {
    font-size: 2rem;
    color: var(--primary);
}

.file-dropzone p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.file-dropzone p span {
    color: var(--primary);
    font-weight: 600;
}

.file-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    word-break: break-all;
    max-width: 100%;
}

.file-dropzone.loading {
    opacity: 0.7;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.02);
}

.file-dropzone.loading i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(244, 132, 95, 0.3);
    margin-top: 0.8rem;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 132, 95, 0.4);
}

/* NOTÍCIAS (Mundo 3D) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.news-img {
    aspect-ratio: 16/10;
    width: 100%;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.news-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem 0;
    background: rgba(9, 9, 11, 0.95);
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-brand h3 span { color: #fff; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; }

.footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links ul a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float-btn:hover {
    background-color: #1da851;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.2rem;
        transform: translateY(-120%);
        transition: var(--transition);
        pointer-events: none;
        z-index: 9999 !important;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-link {
        text-align: center;
        padding: 0.8rem;
    }
    
    .nav-btn {
        text-align: center;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem !important;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .carousel-slider {
        height: auto;
    }
    
    .carousel-slide {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-slide:not(.active) {
        display: none;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slide-text {
        align-items: center;
        text-align: center;
    }

    .slide-text h2 {
        font-size: 1.6rem !important;
    }

    .slide-text p {
        font-size: 0.9rem !important;
    }
    
    .carousel-ctrl {
        display: none;
    }
    
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .quote-info h2 {
        font-size: 1.6rem;
    }

    .quote-card-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }

    .form-group select {
        width: 100% !important;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid, .category-cards-grid, .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .products-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

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

    .carousel-section {
        padding: 2rem 0;
    }

    .carousel-container {
        border-radius: 12px;
    }

    .category-section {
        padding: 2.5rem 0;
    }

    .category-card {
        padding: 1.8rem 1.5rem;
    }

    .category-card h3 {
        font-size: 1.4rem;
    }

    .category-card-images img {
        width: 60px;
        height: 60px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.85rem;
    }

    .product-info {
        padding: 1.2rem;
    }

    .news-content {
        padding: 1.2rem;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }

    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 18px;
        right: 18px;
    }

    .file-dropzone {
        padding: 1rem;
    }

    .file-dropzone p {
        font-size: 0.8rem;
    }

    .file-dropzone i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.88rem !important;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-actions .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.88rem;
    }

    .slide-text h2 {
        font-size: 1.3rem !important;
    }

    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .product-actions {
        width: 100%;
    }

    .btn-buy {
        flex-grow: 1;
        justify-content: center;
    }

    .quote-section {
        padding: 3rem 0;
    }

    .footer {
        padding: 2.5rem 0 1.5rem 0;
    }
}

/* ═══════════════════════════════════════════════════════
   SISTEMA DE COMENTÁRIOS & CURTIDAS
   ═══════════════════════════════════════════════════════ */

/* Seção geral (index) */
.comments-section {
    padding: 5rem 0;
    position: relative;
}

.comments-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Container de feed com scroll */
.comments-feed {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255,255,255,0.05);
}

.comments-feed::-webkit-scrollbar {
    width: 6px;
}

.comments-feed::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
}

.comments-feed::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Card de comentário individual */
.comment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    animation: commentSlideIn 0.4s ease-out;
}

.comment-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px rgba(244, 132, 95, 0.06);
}

@keyframes commentSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header do comentário */
.comment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Avatar com iniciais */
.comment-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    user-select: none;
}

/* Avatar admin */
.comment-card.is-admin .comment-avatar {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.comment-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.comment-author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.comment-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Badge admin */
.comment-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.comment-admin-badge i {
    font-size: 0.68rem;
}

/* Corpo do comentário */
.comment-body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(250, 250, 250, 0.85);
    margin-bottom: 0.75rem;
    word-break: break-word;
}

/* Ações do comentário */
.comment-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.comment-like-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.comment-like-btn.liked {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.comment-like-btn.liked i {
    animation: heartPulse 0.4s ease;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.comment-reply-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

/* Respostas aninhadas */
.comment-replies {
    margin-top: 0.75rem;
    margin-left: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
}

.comment-replies .comment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
}

.comment-replies .comment-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.8rem;
}

/* Formulário de comentário */
.comment-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.comment-form-wrapper h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.comment-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.comment-form-field.full-width {
    grid-column: 1 / -1;
}

.comment-form-field label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.comment-form-field input,
.comment-form-field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.comment-form-field textarea {
    min-height: 80px;
    resize: vertical;
}

.comment-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.comment-form-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 18px rgba(244, 132, 95, 0.35);
    transform: translateY(-1px);
}

/* Formulário de resposta inline */
.reply-form-inline {
    margin-top: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    animation: commentSlideIn 0.3s ease-out;
}

.reply-form-inline .comment-form-row {
    grid-template-columns: 1fr 1fr;
}

.reply-form-inline textarea {
    min-height: 60px;
}

.reply-form-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.reply-cancel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.reply-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

/* Mensagem de sucesso/erro */
.comment-msg {
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-msg.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.comment-msg.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Sem comentários */
.comments-empty {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-muted);
}

.comments-empty i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.3;
    display: block;
}

.comments-empty p {
    font-size: 0.95rem;
}

/* ── BOX DE COMENTÁRIOS NO PRODUTO ── */
.product-comments-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.product-comments-box .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.product-comments-box .section-header h2 {
    font-size: 1.4rem;
}

.product-comments-feed {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255,255,255,0.05);
}

.product-comments-feed::-webkit-scrollbar {
    width: 5px;
}

.product-comments-feed::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
}

.product-comments-feed::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* Contagem de comentários */
.comment-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-glow);
    border: 1px solid rgba(244, 132, 95, 0.2);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

/* ── RESPONSIVIDADE COMENTÁRIOS ── */
@media (max-width: 768px) {
    .comments-section {
        padding: 3rem 0;
    }

    .comment-form-row {
        grid-template-columns: 1fr;
    }

    .reply-form-inline .comment-form-row {
        grid-template-columns: 1fr;
    }

    .comment-card {
        padding: 1rem 1.1rem;
    }

    .comment-replies {
        margin-left: 0.75rem;
        padding-left: 0.75rem;
    }

    .product-comments-box {
        padding: 1.2rem;
        margin: 1.5rem 1rem;
        border-radius: 16px;
    }

    .product-comments-feed {
        max-height: 350px;
    }

    .comment-form-wrapper {
        padding: 1.1rem;
    }
}

/* ==========================================
   LAYOUT DO CATÁLOGO: 4 COLUNAS (DESKTOP) E 2 COLUNAS (MOBILE)
   ========================================== */
.products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    .products-grid .product-card .product-info {
        padding: 0.8rem !important;
    }
    .products-grid .product-card h3 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    .products-grid .product-card .product-desc {
        display: none !important;
    }
    .products-grid .product-card .product-price {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    .products-grid .product-card .product-meta {
        margin-top: auto !important;
        padding-top: 0.5rem !important;
    }
    .products-grid .product-card .btn {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.78rem !important;
        border-radius: 6px !important;
    }
}

/* ==========================================
   SISTEMA DE AFILIADOS — MUNDO 3D (BLOG)
   ========================================== */

/* 1. Aviso de Transparência */
.affiliate-disclosure {
    background: rgba(244, 132, 95, 0.08);
    border: 1px solid rgba(244, 132, 95, 0.25);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    margin: 1.5rem 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.affiliate-disclosure i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.affiliate-disclosure strong {
    color: #fff;
}

/* 2. Formato 1: Link Contextual */
.affiliate-inline-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(244, 132, 95, 0.5);
    text-underline-offset: 4px;
    transition: var(--transition);
}
.affiliate-inline-link:hover {
    color: #fff;
    text-decoration-color: var(--primary);
    text-shadow: 0 0 10px rgba(244, 132, 95, 0.4);
}
.affiliate-inline-link i {
    font-size: 0.75rem;
    margin-left: 2px;
}

/* 3. Formato 2: Botão CTA em Destaque */
.affiliate-cta-box {
    margin: 2rem 0;
    text-align: center;
}
.btn-affiliate-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(244, 132, 95, 0.3);
    transition: var(--transition);
    text-decoration: none;
}
.btn-affiliate-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 132, 95, 0.5);
    background: linear-gradient(135deg, #ff9472 0%, var(--primary) 100%);
}

/* ==========================================================================
   CARDS DE AFILIADOS MUNDO 3D - DIAGRAMAÇÃO HORIZONTAL EXATA DA IMAGEM
   ========================================================================== */
.affiliate-product-card,
.affiliate-single-card,
.affiliate-ml-widget,
.trexion-catalog-card {
    background: #141416 !important;
    border: 1px solid #F4845F !important;
    border-radius: 16px !important;
    padding: 1rem 1.25rem !important;
    margin: 1.8rem 0 !important;
    width: 100% !important;
    max-width: 680px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
    clear: both !important;
    display: block !important;
}

.affiliate-product-card:hover,
.affiliate-single-card:hover,
.affiliate-ml-widget:hover,
.trexion-catalog-card:hover {
    border-color: #ff9d7e !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(244, 132, 95, 0.3) !important;
}

.affiliate-single-link,
.affiliate-card-grid,
.trexion-catalog-card > a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.25rem !important;
    text-decoration: none !important;
    color: inherit !important;
    width: 100% !important;
}

.affiliate-single-img-box,
.affiliate-card-grid > div:first-child,
.ml-widget-thumb {
    width: 140px !important;
    height: 120px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    min-height: 120px !important;
    max-height: 120px !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
    box-sizing: border-box !important;
}

.affiliate-single-img,
.affiliate-card-img,
.ml-widget-thumb img,
.trexion-catalog-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    display: block !important;
    margin: 0 !important;
}

.affiliate-single-content,
.affiliate-card-info,
.ml-widget-center {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-width: 0 !important;
    height: 120px !important;
    gap: 0.5rem !important;
}

.affiliate-single-title,
.affiliate-card-info h3,
.ml-widget-title,
.trexion-catalog-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.affiliate-card-desc {
    display: none !important;
}

.affiliate-single-footer,
.affiliate-price-row,
.ml-widget-right,
.trexion-catalog-card-footer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: auto !important;
    padding-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
}

.affiliate-single-price,
.affiliate-current-price,
.ml-widget-current-price,
.trexion-catalog-price {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: #F4845F !important;
    line-height: 1 !important;
}

.affiliate-old-price,
.affiliate-discount-badge,
.ml-widget-domain,
.ml-widget-old-price {
    display: none !important;
}

.btn-affiliate-buy,
.btn-affiliate-cta,
.btn-ml-buy,
.btn-catalog-buy {
    background: linear-gradient(135deg, #F4845F 0%, #e06840 100%) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 0.65rem 1.3rem !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 14px rgba(244, 132, 95, 0.35) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-affiliate-buy:hover,
.btn-affiliate-cta:hover,
.btn-ml-buy:hover,
.btn-catalog-buy:hover {
    background: linear-gradient(135deg, #e06840 0%, #d05830 100%) !important;
    box-shadow: 0 6px 20px rgba(244, 132, 95, 0.5) !important;
    transform: scale(1.02) !important;
    color: #ffffff !important;
}

@media (max-width: 576px) {
    .affiliate-single-link,
    .affiliate-card-grid {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .affiliate-single-img-box,
    .affiliate-card-grid > div:first-child {
        width: 100% !important;
        height: 140px !important;
        max-width: 100% !important;
        max-height: 140px !important;
    }
    .affiliate-single-content,
    .affiliate-card-info {
        height: auto !important;
    }
}

@media (max-width: 576px) {
    .affiliate-single-link,
    .affiliate-card-grid {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .affiliate-single-img-box,
    .affiliate-card-grid > div:first-child {
        width: 100% !important;
        height: 140px !important;
        max-width: 100% !important;
        max-height: 140px !important;
    }
}
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(244, 132, 95, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.affiliate-single-card:hover .btn-affiliate-buy {
    background: linear-gradient(135deg, #e06840 0%, #d05830 100%);
    box-shadow: 0 6px 18px rgba(244, 132, 95, 0.5);
    transform: scale(1.02);
}

@media (max-width: 576px) {
    .affiliate-single-link {
        flex-direction: column;
        align-items: stretch;
    }
    .affiliate-single-img-box {
        width: 100%;
        height: 140px;
    }
}


