/* Reset e configurações básicas - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF9500;
    --dark-orange: #E6850E;
    --light-orange: #FFB84D;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --mobile-padding: 16px;
    --desktop-padding: 20px;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

/* Top Banner - Mobile First */
.top-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    font-size: 14px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    padding: 0 var(--mobile-padding);
}

.confetti {
    font-size: 14px;
    animation: bounce 2s infinite;
}

.banner-text {
    font-weight: 600;
    color: var(--black);
    font-size: 12px;
    flex: 1;
    text-align: center;
}

.close-banner {
    position: absolute;
    right: var(--mobile-padding);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--black);
    font-weight: bold;
    padding: 4px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner:hover {
    background: rgba(0, 0, 0, 0.1);
}

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

/* Header - Mobile First */
.header {
    background: rgb(238, 238, 238);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-left {
    display: none; /* Hidden on mobile */
}

.logo {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.partner-text {
    color: #666;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.action-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
    padding: 6px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.action-btn:hover {
    color: var(--primary-orange);
    background: var(--light-gray);
}

.cart-btn::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.cart-btn.has-items::after {
    opacity: 1;
}

/* Hero Section - Mobile First */
.hero {
    background: var(--primary-orange);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.3), rgba(230, 133, 14, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 40px var(--mobile-padding);
}

.hero-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
    background: var(--white);
    color: var(--primary-orange);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 24px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Explanation Section - Mobile First */
.explanation {
    padding: 60px 0;
    background: var(--white);
}

.explanation-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.explanation-image {
    width: 100%;
    max-width: 100%;
}

.explanation-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.explanation-text {
    text-align: center;
}

.explanation-text h2 {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
    font-weight: 700;
}

.explanation-text h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-weight: 600;
}

.explanation-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray);
}

.learn-more-btn {
    background: #007BFF;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.learn-more-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Mystery Boxes Section - Mobile First */
.mystery-boxes {
    padding: 60px 0;
    background: var(--light-gray);
}

.boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.box-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.box-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.box-content {
    padding: 24px;
}

.box-content h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 600;
}

.box-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.buy-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

/* Warehouse Section - Mobile First */
.warehouse {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://via.placeholder.com/1920x1080/333333/FFFFFF?text=Warehouse+Background') center/cover;
    padding: 60px 0;
}

.warehouse-content {
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

.warehouse-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.warehouse-content p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 8px;
    text-align: center;
    transition: var(--transition);
    max-width: 100%;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    margin-bottom: 6px;
}

.product-buy-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.product-buy-btn:hover {
    background: var(--dark-orange);
}

/* Footer - Mobile First */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 16px 0 12px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 16px;
    font-size: 14px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.email-input {
    flex: 1;
    padding: 12px 12px;
    border: 1px solid #555;
    border-radius: var(--border-radius);
    background: #444;
    color: var(--white);
    font-size: 14px;
}

.email-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    min-width: 50px;
}

.subscribe-btn:hover {
    background: var(--dark-orange);
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 24px;
    border-radius: 4px;
}

.payment-security-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #555;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.copyright {
    color: #CCCCCC;
    font-size: 12px;
}

.bottom-banner {
    background: #1A1F71;
    padding: 12px 0;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

/* Floating Chat - Mobile Optimized */
.floating-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-btn {
    width: 56px;
    height: 56px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-btn:hover {
    background: var(--dark-orange);
    transform: scale(1.1);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: white;
    padding: 20px;
    overflow-y: auto;
}

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

.mobile-menu-header span {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-gray);
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-mobile-menu:hover {
    background: var(--light-gray);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--desktop-padding);
    }
    
    .banner-text {
        font-size: 14px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .nav-left {
        display: flex;
        gap: 24px;
    }
    
    .nav-link {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 500;
        font-size: 14px;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-link:hover {
        color: var(--primary-orange);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-orange);
        transition: var(--transition);
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .header-actions {
        gap: 16px;
    }
    
    .action-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }
    
    .cta-button {
        padding: 18px 36px;
        font-size: 16px;
        min-width: 220px;
    }
    
    .hero-features {
        gap: 32px;
    }
    
    .hero-content {
        padding: 60px var(--desktop-padding);
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .explanation {
        padding: 80px 0;
    }
    
    .explanation-content {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
    
    .explanation-image {
        flex: 1.2;
        max-width: 60%;
    }
    
    .explanation-img {
        height: 450px;
        object-position: center;
    }
    
    .explanation-text {
        text-align: left;
        flex: 0.8;
        max-width: 40%;
    }
    
    .explanation-text h2 {
        font-size: 2.2rem;
    }
    
    .explanation-text h3 {
        font-size: 1.8rem;
    }
    
    .explanation-text p {
        font-size: 1.1rem;
    }
    
    .mystery-boxes {
        padding: 80px 0;
    }
    
    .boxes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .box-image img {
        height: 250px;
        object-position: center;
    }
    
    .box-content {
        padding: 32px;
    }
    
    .box-content h3 {
        font-size: 1.4rem;
    }
    
    .box-content p {
        font-size: 15px;
    }
    
    .buy-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .warehouse {
        padding: 80px 0;
    }
    
    .warehouse-content {
        padding: 0 var(--desktop-padding);
    }
    
    .warehouse-content h2 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    }
    
    .warehouse-content p {
        font-size: 1.1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card img {
        height: 120px;
        object-position: center;
    }
    
    .product-buy-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section p {
        font-size: 15px;
    }
    
    .footer-links a {
        font-size: 15px;
    }
    
    .payment-methods img {
        height: 28px;
    }
    
    .payment-security-img {
        max-width: 250px;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .copyright {
        font-size: 14px;
    }
    
    .bottom-banner {
        font-size: 16px;
    }
    
    .chat-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 18px;
        min-width: 250px;
    }
    
    .explanation-text h2 {
        font-size: 2.5rem;
    }
    
    .explanation-text h3 {
        font-size: 2rem;
    }
    
    .explanation-img {
        height: 500px;
        object-position: center;
    }
    
    .warehouse-content h2 {
        font-size: 3rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    }
    
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
        max-width: 1000px;
    }
    
    .product-card img {
        height: 150px;
        object-position: center;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .explanation-content {
        gap: 60px;
    }
    
    .explanation-image {
        flex: 1.3;
        max-width: 65%;
    }
    
    .explanation-text {
        flex: 0.7;
        max-width: 35%;
    }
    
    .explanation-img {
        height: 650px;
    }
}

/* Animações e efeitos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box-card {
    animation: fadeInUp 0.6s ease-out;
}

.box-card:nth-child(2) {
    animation-delay: 0.2s;
}

.box-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para acessibilidade */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-orange);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .header {
        padding: 8px 0;
    }
    
    .header-content {
        gap: 4px;
    }
    
    .logo {
        gap: 3px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 130px;
    }
    
    .ismili-logo {
        height: 45px !important;
        max-width: 150px !important;
    }
    
    .partner-text {
        font-size: 10px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
        padding: 4px;
    }
}

/* Touch optimizations for mobile */
@media (hover: none) and (pointer: coarse) {
    .action-btn,
    .cta-button,
    .buy-btn,
    .product-buy-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link,
    .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .hero-bg-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Banner de Teste */
.test-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.test-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-banner .banner-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

.test-banner .banner-text {
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    text-align: center;
    line-height: 1.4;
}

.test-banner .close-banner {
    position: absolute;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.test-banner .close-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Banner alternativo - dentro do hero */
.hero-banner {
    background: rgba(255, 107, 53, 0.95);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.hero-banner .banner-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.hero-banner .banner-text {
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    text-align: center;
}

.hero-banner .close-banner {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-banner .close-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* Banner Compacto e Persuasivo */
.hero-compact {
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.compact-banner {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px 12px;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.urgency-badge {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 2.5rem;
    margin-top: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding: 0 4px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.proof-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 1;
    box-sizing: border-box;
    max-width: calc(33.333% - 8px);
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    max-width: calc(100% - 32px);
    width: auto;
    display: block;
    box-sizing: border-box;
    word-wrap: break-word;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.guarantee-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
    max-width: calc(100% - 20px);
    width: auto;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.social-proof-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 8px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cta-guarantee {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
}


/* Products Showcase */
.products-showcase {
    background: white;
    padding: 30px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile scroll horizontal para produtos */
@media (max-width: 768px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(80px, 1fr));
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .products-grid::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(75px, 1fr));
        gap: 8px;
    }
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 12px 8px;
}

.product-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ff6b35;
}

.final-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 250px;
}

.final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* New Hero Section Styles */
.hero-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-images-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

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


.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a202c;
}

.title-highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    max-width: 280px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.125rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    animation-delay: 1s;
}

.floating-card:nth-child(4) {
    animation-delay: 1.5s;
}

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

.card-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Floating Cards Positioning */
.card-1 {
    top: 5%;
    left: -10%;
}

.card-2 {
    top: 15%;
    right: -15%;
}

.card-3 {
    bottom: 25%;
    left: -20%;
}

.card-4 {
    bottom: 5%;
    right: -10%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-new {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 40px;
    }
    
    .hero-content-section {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .cta-primary {
        max-width: 100%;
    }
    
    .cta-features {
        justify-content: center;
        gap: 16px;
    }
    
    .hero-image-container {
        height: 350px;
        max-width: 400px;
    }
    
    .hero-main-image {
        width: 180px;
        height: 220px;
    }
    
    .floating-card {
        padding: 4px;
        width: 90px;
        height: 90px;
    }
    
    .card-1 {
        top: 10%;
        left: 5%;
    }
    
    .card-2 {
        top: 20%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 30%;
        left: 5%;
    }
    
    .card-4 {
        bottom: 10%;
        right: 5%;
    }
}

/* Warehouse Section Styles */
.warehouse-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

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

.warehouse-header {
    text-align: center;
    margin-bottom: 60px;
}

.warehouse-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.warehouse-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.warehouse-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warehouse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: transparent;
}

.card-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
    background: transparent;
    display: block !important;
    opacity: 1 !important;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.warehouse-card:hover .card-gallery-nav {
    opacity: 1;
}

/* Uvek prikaži navigaciju za test */
.card-gallery-nav {
    opacity: 1 !important;
}

.card-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
}

.card-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.card-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.warehouse-card:hover .card-gallery-dots {
    opacity: 1;
}

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

.card-dot.active {
    background: white;
}

.card-dot:hover {
    background: white;
    transform: scale(1.2);
}

.card-content {
    padding: 0 4px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.card-description {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.price-original {
    font-size: 1rem;
    color: #718096;
    text-decoration: line-through;
}

.card-buy-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-text {
    font-size: 0.9rem;
}

.btn-icon {
    font-size: 1rem;
}

/* Mobile Responsive for Warehouse */
@media (max-width: 768px) {
    .warehouse-new {
        padding: 40px 0;
    }
    
    .warehouse-container {
        padding: 0 16px;
    }
    
    .warehouse-title {
        font-size: 2rem;
    }
    
    .warehouse-subtitle {
        font-size: 1.1rem;
    }
    
    .warehouse-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .warehouse-card {
        padding: 20px;
    }
    
    .card-gallery-nav {
        opacity: 1 !important;
    }
    
    .card-gallery-dots {
        opacity: 1 !important;
    }
    
    .card-image-container {
        height: 180px;
    }
}

/* Responsividade para Banner Compacto - Mobile Otimizado */
@media (max-width: 768px) {
    .hero-compact {
        min-height: 100vh;
    }
    
    .compact-banner {
        height: 60vh;
        padding: 0;
        overflow: visible;
    }
    
    .banner-content {
        padding: 20px 10px;
        max-width: 100vw;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .urgency-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .main-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 12px;
        padding: 0 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        width: 100%;
    }
    
    .highlight {
        font-size: 1.6rem;
        margin-top: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .social-proof {
        gap: 8px;
        margin-bottom: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .proof-item {
        font-size: 0.7rem;
        padding: 4px 6px;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(33.333% - 6px);
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 14px;
        min-width: 180px;
        max-width: calc(100% - 32px);
        width: auto;
        margin-bottom: 16px;
        box-sizing: border-box;
    }
    
    .products-showcase {
        padding: 20px 16px;
    }
    
    .products-grid {
        margin-bottom: 20px;
    }
    
    .product-item {
        border-radius: 8px;
        min-width: 0;
        width: 100%;
        flex-shrink: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-img {
        height: 50px;
    }
    
    .product-info {
        padding: 6px 4px;
    }
    
    .product-name {
        font-size: 0.65rem;
        line-height: 1.1;
        margin-bottom: 4px;
    }
    
    .product-price {
        font-size: 0.7rem;
    }
    
    .final-cta {
        padding: 14px 24px;
        font-size: 14px;
        min-width: 180px;
    }
    
    .guarantee-text {
        font-size: 12px;
        padding: 6px 8px;
        margin-bottom: 12px;
        max-width: calc(100% - 16px);
    }
    
    .social-proof-text {
        font-size: 0.75rem;
        padding: 6px 6px;
        margin-bottom: 12px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        line-height: 1.4;
    }
    
    .cta-guarantee {
        font-size: 0.7rem;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .compact-banner {
        height: 50vh;
        padding: 0;
        overflow: visible;
    }
    
    .banner-content {
        padding: 16px 8px;
        max-width: 100vw;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .urgency-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .main-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 10px;
        padding: 0 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        width: 100%;
    }
    
    .highlight {
        font-size: 1.4rem;
        margin-top: 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 14px;
    }
    
    .proof-item {
        font-size: 0.7rem;
        padding: 3px 6px;
        text-align: center;
    }
    
    .cta-button {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 160px;
        max-width: calc(100% - 24px);
        width: auto;
        margin-bottom: 12px;
        box-sizing: border-box;
    }
    
    .products-showcase {
        padding: 16px 12px;
    }
    
    .products-grid {
        margin-bottom: 16px;
        padding: 0 4px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-item {
        border-radius: 6px;
        min-width: 0;
        width: 100%;
        flex-shrink: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-price {
        font-size: 0.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-img {
        height: 45px;
    }
    
    .product-info {
        padding: 4px 2px;
    }
    
    .product-name {
        font-size: 0.6rem;
        line-height: 1.1;
        margin-bottom: 2px;
    }
    
    .product-price {
        font-size: 0.65rem;
    }
    
    .final-cta {
        padding: 12px 20px;
        font-size: 13px;
        min-width: 160px;
    }
    
    .guarantee-text {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .social-proof-text {
        font-size: 0.7rem;
        padding: 6px 4px;
        margin-bottom: 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        line-height: 1.3;
    }
    
    .cta-guarantee {
        font-size: 0.65rem;
        margin-top: 4px;
    }
}

/* Touch optimizations for mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .final-cta {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }
    
    .product-item {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .proof-item {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .urgency-badge {
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .hero-banner-overlay {
        padding: 15px 20px;
        max-width: 95%;
    }
    
    .hero-banner-overlay .banner-title {
        font-size: 1.4rem;
    }
    
    .hero-banner-overlay .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-banner-overlay .banner-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Estilos para o formulário de login */
.login-form-container {
    position: relative;
    display: inline-block;
}

.login-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 250px;
    margin-top: 5px;
}

.login-form-content {
    padding: 20px;
}

.login-form-content h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.login-form-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.login-form-content button {
    width: 100%;
    padding: 10px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
}

.login-form-content button:hover {
    background: #e55a2b;
}

.login-form-content p {
    margin: 0;
    text-align: center;
}

.login-form-content a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 12px;
}

.login-form-content a:hover {
    text-decoration: underline;
}

