/* ==== Menu Compacto de Categorias Loja ==== */
.category-mini {
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem 1rem 1.2rem;
    font-size: .85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    position: sticky;
    top: 90px;
    height: fit-content;
}

.category-mini-title {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: var(--secondary-color);
}

.category-mini-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.category-mini-list li { margin: 0; }

.category-mini .divider-label {
    margin: .75rem 0 .35rem;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-light);
}

.category-mini .category-btn {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    padding: .4rem .5rem;
    font-size: .8rem;
    font-weight: 500;
    color: #222;
    border-radius: 4px;
    transition: background .2s ease, color .2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-mini .category-btn i {
    margin-right: .5rem;
    font-size: .85rem;
    opacity: .7;
}

.category-mini .category-btn .count {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    font-size: .7rem;
    font-weight: 600;
    padding: .15rem .4rem;
    border-radius: 10px;
    margin-left: auto;
    min-width: 24px;
    text-align: center;
}

.category-mini .category-btn.active .count {
    background: rgba(255, 255, 255, .3);
    color: #fff;
}

.category-mini .divider-label i {
    margin-right: .35rem;
    font-size: .65rem;
}

.category-mini .category-btn:hover { background: var(--bg-light); }
.category-mini .category-btn.active { background: var(--primary-color); color: #fff; }

@media (max-width: 992px) {
    .shop-layout { flex-direction: column; }
    .category-mini { width: 100%; position: relative; top: 0; display: flex; flex-wrap: wrap; }
    .category-mini-title { width: 100%; }
    .category-mini-list { flex-direction: row; flex-wrap: wrap; }
    .category-mini-list li { flex: 1 1 140px; }
    .category-mini .category-btn { font-size: .75rem; }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffc107;
    --secondary-color: #1a1a1a;
    --accent-color: #d32f2f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --yellow: #ffc107;
    --red: #d32f2f;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

/* Mídia fluida: evita estouro em telas pequenas */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}
picture { display: inline-block; }

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 180px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    background: rgba(255, 193, 7, 0.2);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.btn-whatsapp-header {
    background: #25d366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header i {
    font-size: 1.1rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* === Formulário Contato Erros & WhatsApp === */
.contact-form .form-group input.field-error,
.contact-form .form-group textarea.field-error {
        border: 2px solid #d60000 !important;
        background: #fff5f5;
        animation: shake 0.28s linear;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
 100% { transform: translateX(0); }
}

#contactErrors {
    display:none;
    color:#d60000;
    margin-bottom:12px;
    font-size:.85rem;
    line-height:1.3;
    border-left:4px solid #d60000;
    padding:6px 10px;
    background:#fff5f5;
    border-radius:4px;
}

.form-actions { display:flex; gap:.75rem; flex-wrap:wrap; }

.btn.btn-secondary {
    background:#25d366;
    color:#fff;
    border:none;
    padding:12px 20px;
    font-size:.9rem;
    font-weight:600;
    border-radius:8px;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,.15);
    transition:background .25s ease, transform .25s ease;
    display:flex;
    align-items:center;
    gap:6px;
}
.btn.btn-secondary:disabled { background:#9fdab8; cursor:not-allowed; box-shadow:none; }
.btn.btn-secondary:not(:disabled):hover { background:#20ba5a; transform:translateY(-2px); }

#whatsStatus { font-size:.7rem; font-weight:600; }
#whatsStatus.ok { color:#0a7d24; }
#whatsStatus.warn { color:#c47f00; }

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;            /* fallback */
    height: 100dvh;           /* navegadores modernos */
    min-height: 100svh;       /* viewport seguro em mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    background-image: url('imagens/home.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Corrige parallax em mobile (evita corte e tremor) */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    /* Usa clamp para tipografia; expande conteúdo no mobile */
    .hero-content { max-width: 100%; padding: 0 20px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.6rem, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary i {
    font-size: 1rem;
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: clamp(1.8rem, 2.4vw + 0.8rem, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Home Services Carousel */
.services-carousel { position: relative; }
.services-carousel .svc-viewport { overflow: hidden; }
.services-carousel .svc-track { display: flex; gap: 2rem; transition: transform .6s ease; will-change: transform; flex-wrap: nowrap; }
.services-carousel .service-card { flex: 0 0 33.333%; }
.svc-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: 1px solid #ddd; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); color: var(--secondary-color); font-size: 1.1rem; transition: background .3s ease, color .3s ease; z-index: 5; }
.svc-btn:hover { background: var(--primary-color); color: #000; }
.svc-prev { left: -18px; }
.svc-next { right: -18px; }
.svc-btn:disabled { opacity: .35; cursor: not-allowed; }
.svc-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.25rem; }
.svc-dot { width: 12px; height: 12px; border-radius: 50%; background: #d0d0d0; border: none; padding:0; cursor: pointer; transition: background .3s ease, transform .3s ease; }
.svc-dot.active { background: var(--primary-color); transform: scale(1.35); }
@media (max-width: 900px) { .services-carousel .service-card { flex: 0 0 50%; } .svc-prev { left: 4px; } .svc-next { right: 4px; } }
@media (max-width: 600px) { .services-carousel .service-card { flex: 0 0 100%; } .svc-btn { width: 36px; height: 36px; } }

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card .service-image {
    width: calc(100% + 5rem);
    height: 180px;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    box-shadow: var(--shadow-hover);
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

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

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Shop Section */
.shop {
    background: var(--white);
    padding: 40px 0 80px 0;
}

/* Shop Page Header */
.shop-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.shop-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.shop-page-title.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #667eea);
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  letter-spacing: 1px;
}

.shop-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.shop-search-inline {
    position: relative;
    flex: 1;
    max-width: 500px;
}

.search-input-inline {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-input-inline:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.search-icon-inline {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
    pointer-events: none;
}

.btn-view-all-inline {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-view-all-inline:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}

.products-carousel {
    overflow: hidden;
    position: relative;
}

.products-carousel-track, .services-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.products-carousel-track .product-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
}
.services-carousel-track .service-card.mini {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
}

/* Services Carousel Wrapper */
.services-carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}

/* Service Card Mini variant for carousel */
.service-card.mini {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card.mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card.mini .service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.mini .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card.mini:hover .service-image img {
    transform: scale(1.05);
}

.service-card.mini .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.service-card.mini .service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-card.mini .service-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .services-carousel-track .service-card.mini { flex: 0 0 calc(33.333% - 1rem); }
}
@media (max-width: 768px) {
    .services-carousel-track .service-card.mini { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 520px) {
    .services-carousel-track .service-card.mini { flex: 0 0 100%; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

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

.shop-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.shop-sidebar {
    flex: 0 0 280px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.shop-content {
    flex: 1;
    min-width: 0;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.shop-search {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    pointer-events: none;
}

.btn-view-all {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-view-all:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.shop-categories {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.categories-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    width: 100%;
}

.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.shop-section-title {
    margin-bottom: 2rem;
}

.shop-section-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Category Menu */
.category-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    justify-content: center;
}

.category-btn {
    padding: 0.65rem 1.5rem;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* ===== Sidebar Layout Loja ===== */
.shop-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.category-sidebar {
    width: 240px;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: .75rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.category-sidebar .category-btn {
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.9rem;
    font-size: .85rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    color: #333;
    box-shadow: none;
}

.category-sidebar .category-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: none;
    box-shadow: 0 3px 10px rgba(255,193,7,.35);
}

.category-sidebar .category-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-area { flex: 1; }

@media (max-width: 992px) {
    .shop-layout { flex-direction: column; }
    .category-sidebar { width: 100%; position: relative; top: 0; max-height: unset; }
    .category-list { flex-wrap: wrap; flex-direction: row; }
    .category-sidebar .category-btn { flex: 1 1 calc(50% - .5rem); }
}

@media (max-width: 600px) {
    .category-sidebar .category-btn { flex: 1 1 100%; }
}

/* Box de seleção de Aros */
.aro-box {
    margin-top: 1.5rem;
    background: var(--bg-light);
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 1rem 1rem 1.2rem;
}

.aro-title {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: .75rem;
    color: var(--secondary-color);
}

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

.aro-btn {
    font-weight: 600;
    padding: .55rem .5rem;
    text-align: center;
    border-radius: 8px;
    font-size: .8rem;
}

.aro-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .aro-grid { grid-template-columns: repeat(auto-fill,minmax(60px,1fr)); }
    .aro-btn { flex: 1 1 60px; }
}

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

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
}

.product-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.product-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    background-size: 30px 30px;
    opacity: 0.4;
}

.product-placeholder i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    margin-bottom: 0.5rem;
}

.product-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-brand {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

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

.product-code {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: none;
    letter-spacing: normal;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    margin: 0.5rem 0 1rem 0;
}

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

.btn-small {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
    border-radius: 5px;
    font-weight: 600;
}

/* Club Section */
.club {
    background: var(--bg-light);
}

.club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.club-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.club-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.club-cta {
    margin-top: 2rem;
}

.club-image {
    position: relative;
}

.club-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow-hover);
}

.club-placeholder p {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Blog Section */
.blog {
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero {
    margin: 12px 0 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.blog-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Expandir/colapsar posts do blog */
.blog-full {
    display: none;
    color: var(--text-color, #333);
    line-height: 1.7;
    margin-top: 0.5rem;
}
.blog-card.expanded .blog-full {
    display: block;
}
.blog-card.expanded .blog-excerpt {
    display: none;
}
.blog-link.toggle-less i {
    transition: transform 0.2s ease;
}
.blog-card.expanded .blog-link.toggle-less i {
    transform: rotate(90deg);
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 10px;
}

/* Brands Section - Carousel */
.brands {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    padding: 40px 0;
}

.brands .section-header {
    margin-bottom: 30px;
}

.brands .section-title {
    color: #1a1a1a;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.brands .section-subtitle {
    color: #333;
    font-size: 1.05em;
    font-weight: 500;
}

.brands-grid {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brands-carousel-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    animation: scrollCarousel 45s linear infinite;
    gap: 0;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-carousel-wrapper:hover {
    animation-play-state: paused;
}

.brands-carousel-wrapper-double {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    width: calc(100% / 8 - 2.5px);
    flex-shrink: 0;
    height: 100%;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: var(--text-dark);
    font-weight: 600;
    height: 100%;
    justify-content: center;
}

.brand-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.brand-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.brand-item:hover .brand-image {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.brand-logo span {
    font-size: 0.7rem;
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
    color: #ffc107;
}

.testimonial-rating i {
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Locations Section */
.locations {
    background: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.location-info {
    text-align: left;
    margin-bottom: 1.5rem;
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Location Details Layout (with Map) */
.location-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.location-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.location-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.detail-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-actions .btn {
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.location-map-section {
    position: sticky;
    top: 100px;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

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

.map-hint i {
    color: var(--primary-color);
}

/* Responsive for Location Details */
@media (max-width: 992px) {
    .location-details-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-map-section {
        position: relative;
        top: 0;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .location-info-section {
        padding: 1.5rem;
    }
    
    .location-main-title {
        font-size: 1.5rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .map-container {
        height: 350px;
    }
}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite, whatsappBounce 3s infinite;
    text-decoration: none;
    overflow: visible;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.7;
    animation: whatsappRipple 2s infinite;
    z-index: -1;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    animation: whatsappRipple 2s infinite 0.5s;
    z-index: -1;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
    animation: whatsappPulse 1s infinite, whatsappBounce 1.5s infinite;
}

.whatsapp-float i {
    animation: whatsappIcon 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
}

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

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes whatsappIcon {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-10deg);
    }
    20% {
        transform: rotate(10deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .btn-whatsapp-header {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .header-actions {
        display: none;
    }

    .nav-wrapper {
        gap: 1rem;
    }

    .logo {
        min-width: auto;
    }

    .nav-menu {
        padding: 0;
        gap: 1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Tipografia controlada por clamp() fora dos breakpoints */

    .about-content,
    .contact-content,
    .club-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .blog-grid,
    .locations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .shop-wrapper {
        flex-direction: column;
    }

    .shop-sidebar {
        flex: 1;
        position: static;
        max-height: none;
        margin-bottom: 2rem;
    }

    .shop-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-header-actions {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .shop-search-inline {
        max-width: 100%;
        width: 100%;
    }

    .products-carousel-track .product-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    /* Tablet Carousel */
    .brands-grid {
        height: 130px;
    }

    .brand-item {
        width: calc(100% / 6 - 3.33px);
        padding: 10px 15px;
    }

    .brand-image {
        max-height: 300px;
    }

    .brand-image {
        max-height: 70px;
    }

    .brands .section-title {
        font-size: 2em;
    }

    .brand-logo span {
        font-size: 0.65rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    /* Tipografia controlada por clamp() fora dos breakpoints */

    .service-card,
    .contact-form-wrapper,
    .product-card,
    .blog-card,
    .location-card {
        padding: 1.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .club-placeholder {
        height: 300px;
        font-size: 3rem;
    }

    .club-placeholder p {
        font-size: 1.2rem;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .shop-wrapper {
        flex-direction: column;
    }

    .shop-sidebar {
        flex: 1;
        position: static;
        max-height: none;
        margin-bottom: 2rem;
    }

    .shop-header {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-search {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .categories-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .category-btn {
        width: auto;
        flex: 1;
        min-width: 120px;
    }

    .shop-page-title {
        font-size: 2rem;
    }

    .products-carousel-track .product-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }

    .btn-view-all {
        width: 100%;
        text-align: center;
    }

    /* Responsive Carousel */
    .brands-grid {
        height: 100px;
    }

    .brand-item {
        width: calc(100% / 6 - 3.33px);
        padding: 8px 12px;
    }

    .brand-image {
        max-height: 250px;
    }

    .brand-image {
        max-height: 55px;
    }

    .brands .section-title {
        font-size: 1.8em;
    }

    .brands .section-subtitle {
        font-size: 0.9em;
    }

    .brand-logo span {
        font-size: 0.6rem;
        margin-top: 2px;
    }

    .carousel-indicators {
        bottom: 5px;
        gap: 5px;
    }

    .indicator {
        width: 7px;
        height: 7px;
    }

    .indicator.active {
        width: 20px;
    }
}

/* Ajustes extras para telas muito pequenas (≤360px) */
@media (max-width: 360px) {
    .hero-content { padding: 0 12px; }
    /* Tipografia controlada por clamp(); mantemos apenas espaçamentos */
    .hero-subtitle { margin-bottom: 1rem; }
    .hero-buttons { gap: 0.5rem; }
    .btn { padding: 10px 20px; max-width: 260px; }
}

/* ==== VIP Card Modal ==== */
.vip-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vip-modal.show {
    display: flex;
    opacity: 1;
}

.vip-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vip-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
    line-height: 1;
}

.vip-modal-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.vip-banner-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.vip-cta-btn {
    display: block;
    margin: 0 auto;
    padding: 14px 28px;
    background: var(--accent-color, #d32f2f);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-cta-btn:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .vip-modal-content {
        max-width: 95%;
    }
    
    .vip-banner-img {
        max-height: 60vh;
    }
    
    .vip-cta-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}
