/* Import AOS Animations */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

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

:root {
    --primary-color: #8B7355;
    --secondary-color: #A68B5B;
    --accent-color: #D4AF37;
    --background-color: #FEFCF7;
    --text-color: #5D4E37;
    --light-gray: #F7F3E9;
    --border-color: #E8DCC0;
    --shadow: 0 2px 15px rgba(139, 115, 85, 0.15);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --light-gold: #F4E4BC;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

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

/* Header */
.header {
    background: var(--background-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-content > a {
    display: inline-block;
    text-decoration: none;
}

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

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    position: absolute;
    right: 0;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/fundo3.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(139, 115, 85, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-brand {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    letter-spacing: 3px;
    opacity: 0.95;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-catalog {
    display: inline-block;
    background: var(--gold-gradient);
    color: white;
    padding: 20px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-catalog:hover::before {
    left: 100%;
}

.btn-catalog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

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

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: white;
}

.brand-showcase {
    margin-bottom: 80px;
    padding: 0 20px 40px 20px;
    border-bottom: 2px solid var(--border-color);
}

.brand-showcase:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.brand-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brand-info {
    flex: 1;
}

.brand-showcase-name {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.brand-showcase-description {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.btn-brand-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-brand-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    gap: 15px;
}

/* Carrossel de Produtos */
.brand-carousel-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.brand-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--light-gray);
}

.brand-carousel::-webkit-scrollbar {
    height: 8px;
}

.brand-carousel::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.brand-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.brand-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.brand-carousel:active {
    cursor: grabbing;
}

.carousel-loading {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

.carousel-loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: var(--accent-color);
}

.carousel-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-style: italic;
}

.carousel-product-card {
    min-width: 200px;
    max-width: 200px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.2);
}

.carousel-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carousel-product-card:hover .carousel-product-image img {
    transform: scale(1.15);
}

.carousel-product-info {
    padding: 20px;
}

.carousel-product-name {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.carousel-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin: 0;
}

/* Botões de navegação do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--gold-gradient);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

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

/* Trending Section */
.trending {
    padding: 100px 20px;
    background: var(--light-gray);
}

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

.trending-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Otimizado - apenas propriedades necessárias */
    display: block;
    text-decoration: none;
    color: inherit;
    will-change: transform; /* Otimização para GPU */
}

.trending-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.25);
    text-decoration: none;
    color: inherit;
}

.trending-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Reduzido de 0.5s para 0.3s */
    will-change: transform; /* Otimização para GPU */
}

.trending-card:hover .trending-image img {
    transform: scale(1.15);
}

.trending-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trending-badge.hot {
    background: #ff6b6b;
}

.trending-badge.bestseller {
    background: #51cf66;
}

.trending-content {
    padding: 30px;
}

.trending-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.trending-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.trending-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    cursor: pointer;
}

.trending-card:hover .trending-link {
    gap: 15px;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.about-image-overlay i {
    font-size: 3rem;
    color: white;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-gold);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--light-gold);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.15);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 20px;
    background: var(--gold-gradient);
    color: white;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-submit:hover {
    background: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Social CTA Section */
.social-cta {
    padding: 100px 20px;
    background: white;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: var(--light-gray);
    padding: 80px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
}

.footer-list {
    list-style: none;
}

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

.footer-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    color: #666;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-love {
    font-size: 0.95rem;
}

.footer-love i {
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content .section-title {
        text-align: center;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .brand-showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-brand-more {
        align-self: flex-end;
    }

    .brand-carousel-container {
        padding: 0 30px;
        max-width: 1400px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        margin-top: 70px;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-brand {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .btn-catalog {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .brand-showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .brand-showcase-name {
        font-size: 1.8rem;
    }
    
    .brand-showcase-description {
        font-size: 1rem;
    }
    
    .btn-brand-more {
        align-self: flex-end;
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .brand-carousel-container {
        padding: 0 25px;
        max-width: 100%;
    }
    
    .carousel-product-card {
        min-width: 180px;
        max-width: 180px;
    }
    
    .carousel-product-image {
        height: 180px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .trending-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .trending-image {
        height: 300px;
    }
    
    .trending-content {
        padding: 25px;
    }
    
    .trending-content h3 {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .about-content {
        padding: 0;
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .btn-outline {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .newsletter-content {
        padding: 0 20px;
    }
    
    .newsletter-text h2 {
        font-size: 2.2rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group input {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .social-btn {
        justify-content: center;
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 60px;
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .hero-brand {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .btn-catalog {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
    }

    .trending-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trending-card {
        max-width: 100%;
    }
    
    .trending-image {
        height: 250px;
    }
    
    .trending-content {
        padding: 20px;
    }
    
    .trending-content h3 {
        font-size: 1.3rem;
    }
    
    .trending-content p {
        font-size: 0.9rem;
    }

    .brand-showcase-name {
        font-size: 1.6rem;
    }
    
    .brand-showcase-description {
        font-size: 0.9rem;
    }
    
    .btn-brand-more {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .brand-carousel-container {
        padding: 0 20px;
        max-width: 100%;
    }

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

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

    .carousel-product-info {
        padding: 15px;
    }

    .carousel-product-name {
        font-size: 0.95rem;
    }

    .carousel-product-price {
        font-size: 1.2rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn i {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .btn-outline {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-text p {
        font-size: 0.95rem;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .social-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .social-btn i {
        font-size: 1.5rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Telas muito pequenas (menos de 400px) */
@media (max-width: 400px) {
    .hero {
        margin-top: 55px;
        padding: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .hero-brand {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .btn-catalog {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .trending-image {
        height: 220px;
    }
    
    .trending-content {
        padding: 15px;
    }
    
    .trending-content h3 {
        font-size: 1.2rem;
    }
    
    .trending-content p {
        font-size: 0.85rem;
    }
    
    .brand-showcase-name {
        font-size: 1.4rem;
    }
    
    .brand-showcase-description {
        font-size: 0.85rem;
    }
    
    .btn-brand-more {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .brand-carousel-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .carousel-product-card {
        min-width: 140px;
        max-width: 140px;
    }
    
    .carousel-product-image {
        height: 140px;
    }
    
    .carousel-product-info {
        padding: 12px;
    }
    
    .carousel-product-name {
        font-size: 0.9rem;
    }
    
    .carousel-product-price {
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .carousel-btn i {
        font-size: 0.9rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item h4 {
        font-size: 0.95rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .btn-outline {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .testimonial-card {
        padding: 20px 12px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-text p {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .btn-submit {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .social-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .social-btn i {
        font-size: 1.3rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ==================== */
/* MODAIS DE CARRINHO E PRODUTO */
/* ==================== */

/* Botões Gerais */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.25);
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* Modal do Carrinho */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.cart-header h3 {
    font-size: 1.3rem;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.cart-item-options {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 600;
    color: #28a745;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    margin-left: auto;
}

.remove-item:hover {
    color: #666;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

/* Modal de Detalhes do Produto */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

.product-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-product-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-product-modal:hover {
    color: var(--text-color);
    background: var(--light-gray);
    transform: rotate(90deg);
}

.product-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.product-detail-image {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-detail-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-detail-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-detail-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 30px;
}

.product-detail-options {
    margin-bottom: 30px;
}

.product-detail-options h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-detail-sizes, .product-detail-colors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-detail-size, .product-detail-color {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: white;
}

.product-detail-size:hover, .product-detail-color:hover {
    border-color: var(--accent-color);
    background: var(--light-gold);
}

.product-detail-size.selected, .product-detail-color.selected {
    background: var(--gold-gradient);
    color: white;
    border-color: var(--accent-color);
}

.product-detail-add-cart {
    width: 100%;
    background: var(--gold-gradient);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-detail-add-cart:hover {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.product-detail-add-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive para modais */
@media (max-width: 862px) {
    .cart-modal-content {
        width: 95%;
        max-width: none;
        margin: 10px;
        max-height: 85vh;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .quantity-controls {
        justify-content: center;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .product-detail-image {
        min-height: 300px;
        max-height: 400px;
    }
    
    .product-detail-info {
        padding: 30px 20px;
    }
}

/* Estilos dos Modais de Suporte */
.support-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
}

.support-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

.support-modal-header {
    background: #333;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.close-support-modal:hover {
    background: rgba(255,255,255,0.1);
}

.support-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

/* Estilos para Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    color: #333;
    margin-top: 5px;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0 0 15px 0;
    color: #666;
}

.contact-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Estilos para Política */
.policy-content h4 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.policy-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
}

.policy-section h5 {
    color: #333;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.policy-section p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.policy-section ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.policy-section li {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Estilos para FAQ */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #f8f8f8;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Estilos para conteúdo legal */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.legal-section {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    border-left: 4px solid #333;
}

.legal-section h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.legal-section p {
    margin: 0 0 10px 0;
    color: #666;
    line-height: 1.6;
}

.legal-section ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.legal-section li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-section li strong {
    color: #333;
    font-weight: 600;
}

/* Responsivo para modais de suporte */
@media (max-width: 862px) {
    .support-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .support-modal-header {
        padding: 15px 20px;
    }
    
    .support-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .support-modal-body {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
}

/* Responsivo para conteúdo legal */
@media (max-width: 862px) {
    .legal-section {
        padding: 15px;
    }
    
    .legal-section h4 {
        font-size: 1.1rem;
    }
}

/* Balão de Ajuda */
.help-tooltip,
.help-tooltip * {
    box-sizing: border-box;
}

.help-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 4000;
    max-width: 500px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    border: none !important;
    outline: none !important;
    overflow: hidden;
}

.help-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.help-tooltip-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

.help-tooltip-header {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    border: none;
    box-shadow: none;
}

.help-tooltip-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-tooltip-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

.help-tooltip-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    border: none;
    box-shadow: none;
}

.help-tooltip-close:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.help-tooltip-body {
    padding: 30px 25px;
}

.help-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
    transition: transform 0.3s ease;
}

.help-step:hover {
    transform: translateX(5px);
}

.help-step:last-child {
    margin-bottom: 0;
}

.help-step-number {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.help-step-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-step-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.help-tooltip-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 20px 20px;
    text-align: center;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

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

.help-tooltip-dismiss:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    border: none;
    outline: none;
}

.help-tooltip-dismiss:focus {
    outline: none;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Botão Flutuante de Ajuda */
.help-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    backdrop-filter: blur(10px);
}

.help-floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

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

.help-floating-text {
    white-space: nowrap;
}

/* Overlay para o balão de ajuda */
.help-tooltip::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-tooltip.active::before {
    opacity: 1;
}

/* Responsivo para balão de ajuda */
@media (max-width: 768px) {
    .help-tooltip {
        width: 95%;
        max-width: none;
        margin: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
    }
    
    .help-tooltip.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .help-tooltip-header {
        padding: 15px 20px;
    }
    
    .help-tooltip-header h3 {
        font-size: 1.2rem;
    }
    
    .help-tooltip-body {
        padding: 20px 15px;
    }
    
    .help-step {
        padding: 15px;
        gap: 15px;
    }
    
    .help-step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .help-step-content h4 {
        font-size: 1rem;
    }
    
    .help-step-content p {
        font-size: 0.9rem;
    }
    
    .help-tooltip-footer {
        padding: 15px 20px;
    }
    
    .help-floating-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .help-floating-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .help-tooltip {
        width: 98%;
        margin: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .help-tooltip.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .help-tooltip-header {
        padding: 12px 15px;
    }
    
    .help-tooltip-header h3 {
        font-size: 1.1rem;
    }
    
    .help-tooltip-body {
        padding: 15px 12px;
    }
    
    .help-step {
        padding: 12px;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .help-step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .help-step-content h4 {
        font-size: 0.95rem;
    }
    
    .help-step-content p {
        font-size: 0.85rem;
    }
    
    .help-tooltip-footer {
        padding: 12px 15px;
    }
    
    .help-tooltip-dismiss {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .help-tooltip {
        width: 96%;
        margin: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: fixed;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .help-tooltip.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .help-tooltip-header {
        padding: 10px 12px;
    }
    
    .help-tooltip-header h3 {
        font-size: 1rem;
    }
    
    .help-tooltip-body {
        padding: 12px 10px;
    }
    
    .help-step {
        padding: 10px;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .help-step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .help-step-content h4 {
        font-size: 0.9rem;
    }
    
    .help-step-content p {
        font-size: 0.8rem;
    }
    
    .help-tooltip-footer {
        padding: 10px 12px;
    }
    
    .help-tooltip-dismiss {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

