/* === CSS extraído de index.php === */
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

body, * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

:root {
    --primary-blue: #2D3E50;
    --light-brown: #D9BBA9;
    --burgundy: #8C1A1A;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --dark-gray: #666;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

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

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    display: inline-block;
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--burgundy);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero Section Grid */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem 4rem;
    padding: 1rem;
}

.hero-media {
    text-align: center;
    position: relative;
}

.media-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.product-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    display: block;
}

.main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    display: none;
}

.main-image.active {
    display: block;
}

.thumbnail-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Thumbnail styles */
.thumbnail-button {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 60px;
    height: 80px;
}

.thumbnail-button:hover,
.thumbnail-button.active {
    transform: scale(1.05);
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thumbnail-button:hover .thumbnail,
.thumbnail-button.active .thumbnail {
    border-color: var(--primary-blue);
}

.video-thumbnail {
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail i {
    font-size: 1.5rem;
}

.video-thumbnail:hover,
.video-thumbnail.active {
    background: var(--burgundy);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Ordem dos blocos no mobile */
    .block-title { order: 1; grid-column: 1 / -1; text-align: center; }
    .hero-media { order: 2; grid-column: 1 / -1; }
    .block-price { order: 3; grid-column: 1 / -1; text-align: center; margin: 0; }
    .block-shipping { order: 4; grid-column: 1 / -1; text-align: center; }
    .block-buy-button { order: 5; grid-column: 1 / -1; }
    .block-buyers-count { order: 6; grid-column: 1 / -1; }
    .block-guarantee { order: 7; grid-column: 1 / -1; }
    .block-trust { order: 8; grid-column: 1 / -1; }
    .block-size-guide { order: 9; grid-column: 1 / -1; }
}

.block-price {
    margin: 0;
}

@media (min-width: 769px) {
    .hero-media {
        grid-column: 1;
        grid-row: 1 / span 9;
    }

    .block-title,
    .block-price,
    .block-shipping,
    .block-buy-button,
    .block-buyers-count,
    .block-guarantee,
    .block-trust,
    .block-size-guide {
        grid-column: 2;
    }
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-subtitle strong {
    color: var(--burgundy);
    font-weight: 600;
}

.stock-warning {
    background: rgba(140, 26, 26, 0.1);
    color: var(--burgundy);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.size-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover, .size-btn.active {
    background: var(--primary-blue);
    color: white;
}

.size-btn.low-stock {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.size-btn.low-stock:hover {
    background: var(--burgundy);
    color: white;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--burgundy);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.price-highlight::before {
    content: "R$ ";
    font-size: 1.8rem;
}

.installment-info {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
}

.btn-container {
    text-align: center;
    margin: 1rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 62, 80, 0.3);
}

.btn-primary:hover {
    background: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 26, 26, 0.4);
}

.btn-primary i {
    margin-left: 0.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.trust-badge i {
    color: var(--primary-blue);
}

/* Benefits Section */
.benefits {
    padding: 4rem 1rem;
    background: var(--light-gray);
}

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

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Offer Banner */
.offer-banner {
    background: var(--burgundy);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

.offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.offer-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.close-banner {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

.close-banner:hover {
    opacity: 1;
}

/* Reviews Section */
.reviews {
    padding: 4rem 1rem;
    background: white;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reviews h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: var(--primary-blue);
}

.overall-rating {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Details Section */
.details {
    padding: 4rem 1rem;
    background: var(--light-gray);
}

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

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.product-description {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-description h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.size-table th {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.size-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.size-table tr:last-child td {
    border-bottom: none;
}

.washing-instructions {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.washing-instructions h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.washing-instructions ul {
    list-style: none;
}

.washing-instructions li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.washing-instructions i {
    color: var(--burgundy);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

.return-policy {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.return-policy strong {
    color: var(--primary-blue);
}

/* FAQ Section */
.faq {
    padding: 4rem 1rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-brown);
}

.faq-question h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    color: var(--dark-gray);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Final CTA */
.final-cta {
    padding: 4rem 1rem;
    background: var(--light-brown);
    text-align: center;
}

.final-cta h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 1rem 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-brown);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--light-brown);
}

.payment-security {
    color: #ccc;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #ccc;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 0rem 4rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .price-highlight {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .details-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-content {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .price-highlight {
        font-size: 3.5rem;
    }
    
    .logo {
        height: 50px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-primary {
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    animation: none;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mb-2 {
    margin-bottom: 2rem;
}

/* Pop-up de Captura de Leads */
.popup-overlay {
    display: none; /* Mantém o popup sempre oculto */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.popup-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.popup-form button {
    background: var(--burgundy);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.buyers-count {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: 1rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 0;
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.active-users {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
}

.active-users i {
    color: #4CAF50;
}

/* Size Guide Alert */
.size-guide-alert {
    grid-column: 1 / -1;
    background: var(--burgundy);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 0.5rem auto;
    max-width: 300px;
    animation: pulse 2s infinite;
    justify-self: center;
}

.size-guide-alert a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.size-guide-alert i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        order: -1; /* Força o hero-content a aparecer antes */
    }

    /* Ordem dos blocos no responsivo */
    .block-title { order: 1; }
    .hero-media { order: 2; }
    .block-price { order: 3; }
    .block-shipping { order: 4; }
    .block-buy-button { order: 5; }
    .block-buyers-count { order: 6; }
    .block-guarantee { order: 7; }
    .block-trust { order: 8; }
    .block-size-guide { order: 9; }
}

.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    overflow-y: auto;
}

.privacy-modal-content {
    background: white;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.privacy-content {
    margin-top: 1rem;
}

.privacy-content h3 {
    color: var(--primary-blue);
    margin: 1.5rem 0 0.5rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .privacy-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}

.stock-status {
    background: rgba(140, 26, 26, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.stock-bar {
    background: rgba(255, 255, 255, 0.5);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.stock-progress {
    background: var(--burgundy);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.stock-text {
    color: var(--burgundy);
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.real-time-activity {
    margin: 1rem 0;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    justify-content: center;
}

.activity-item i {
    color: var(--primary-blue);
}

/* Indicadores de Confiança */
.block-trust {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 1rem 0;
}

.trust-indicators {
    width: 100%;
    margin: 0;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .trust-indicators {
        width: 92%;
        max-width: 350px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.trust-text span {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* Tabela de medidas */
.table-container {
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 0;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    table-layout: fixed;
    border: none;
}

.size-table th {
    padding: 0.5rem;
    text-align: center;
    width: 25%;
    background: var(--primary-blue);
    color: white;
    font-weight: normal;
    white-space: normal;
    border: none;
}

.size-table td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #eee;
    width: 25%;
}

/* Remove bordas externas */
.size-table tr:first-child th {
    border-top: none;
}

.size-table tr:last-child td {
    border-bottom: none;
}

.size-table tr td:first-child {
    border-left: none;
}

.size-table tr td:last-child {
    border-right: none;
}

/* Ajusta os cantos */
.size-table th:first-child {
    border-top-left-radius: 8px;
}

.size-table th:last-child {
    border-top-right-radius: 8px;
}

.size-table tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.size-table tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.table-info {
    text-align: center;
    font-style: italic;
    color: var(--dark-gray);
    margin: 0.5rem 0;
    padding: 0;
    width: 100%;
}

/* Ajustes mobile */
@media (max-width: 768px) {
    .table-container {
        width: 92%;
        max-width: 350px;
        margin: 0 auto 1rem auto;
    }

    .size-table th,
    .size-table td {
        font-size: 0.65rem;
        padding: 0.2rem 0.1rem;
    }

    .table-info {
        font-size: 0.6rem;
        margin: 0.5rem auto;
        padding: 0 1rem;
        max-width: 280px;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    position: relative;
    z-index: 1001;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-right: 0;
        z-index: 1100;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        width: 100%;
        z-index: 1100;
    }
    .nav-menu.active {
        display: block;
    }
    .header-container {
        position: relative;
        z-index: 1100;
    }
}

/* Notificação de Compras */
.last-purchases {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
}

.purchase-notification {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
    max-width: 300px;
    animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
    transform-origin: bottom right;
}

.purchase-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.purchase-info strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.purchase-details {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .last-purchases {
        bottom: 70px;
        right: 10px;
    }

    .purchase-notification {
        max-width: 250px;
        padding: 0.75rem;
    }
}

/* Informações de Frete */
.block-shipping {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
}

.shipping-info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shipping-note {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .shipping-note {
        font-size: 0.8rem;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  font-size: 2rem;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }
}
