/* RESET E ESTILIZAÇÃO GLOBAL */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
            background-size: 400% 400%;
            animation: fadeIn 1s ease-in, gradientShift 15s ease infinite;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="10" y="50" font-size="12" opacity="0.03" fill="black">📚</text></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="50" font-size="12" opacity="0.03" fill="black">🌍</text></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="80" y="50" font-size="12" opacity="0.03" fill="black">👨‍🎓</text></svg>');
            background-size: 300px 300px, 350px 350px, 400px 400px;
            background-position: 0 0, 40px 60px, 130px 270px;
            animation: slide 20s linear infinite;
            pointer-events: none;
            z-index: -1;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes slide {
            0% { background-position: 0 0, 40px 60px, 130px 270px; }
            100% { background-position: 300px 300px, 340px 360px, 430px 570px; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* HEADER E MENU */
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            border-bottom: 3px solid rgba(255, 255, 255, 0.2);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding: 0 15px;
            font-weight: bold;
            gap: 20px;
        }

        .logo-official {
            max-height: 90px;
            width: 100px;
            border-radius: 10%;
            flex-shrink: 0;
        }

        .store-name {
            font-size: 24px;
            font-weight: bold;
            color: white;
            flex-shrink: 0;
        }

        nav {
            margin-left: auto;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 15px;
            border-radius: 5px;
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        /* RESPONSIVO - TABLETS E CELULARES */
        @media screen and (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .store-name {
                font-size: 18px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            nav a {
                font-size: 14px;
                padding: 6px 10px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .product-image-img {
                height: 200px;
            }

            .product-image {
                height: 200px;
            }

            .section-title {
                font-size: 32px;
            }

            .banner-slide {
                font-size: 32px;
            }

            .dashboard {
                margin: 30px auto;
                padding: 0 15px;
            }

            .banner {
                height: 350px;
            }
        }

        @media screen and (max-width: 480px) {
            .header-container {
                padding: 0 10px;
                gap: 8px;
            }

            .logo-official {
                max-height: 60px;
                width: 70px;
            }

            .store-name {
                font-size: 14px;
            }

            nav ul {
                gap: 10px;
                flex-wrap: wrap;
            }

            nav a {
                font-size: 12px;
                padding: 5px 8px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .product-image-img {
                height: 180px;
            }

            .product-image {
                height: 180px;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .banner-slide {
                font-size: 20px;
            }

            .banner {
                height: 250px;
            }

            .dashboard {
                margin: 20px auto;
                padding: 0 10px;
            }

            .terms-container {
                padding: 20px;
            }

            .terms-container h2 {
                font-size: 22px;
            }

            .terms-content h3 {
                font-size: 16px;
            }

            .terms-content p {
                font-size: 14px;
            }
        }

/* Sidebar */
.sidebar3 {
    font-family: "Lato", sans-serif;
    right: 0;
    top: 0;
  }
.sidenav {
  height: 500%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 105%;
  right: 1%;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
  /* Estilos adicionais para o menu lateral */
  .terms-privacy {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 40px 20px;
            margin: 40px 0;
            height: 800px;
        }
        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .terms-container h2 {
            color: #667eea;
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #667eea;
            padding-bottom: 15px;
        }
        .terms-content h3 {
            color: #333;
            font-size: 18px;
            margin-top: 25px;
            margin-bottom: 12px;
            border-left: 4px solid #667eea;
            padding-left: 15px;
        }
        .terms-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .terms-content ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }

        .terms-content li {
            color: #666;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .terms-content strong {
            color: #667eea;
            font-weight: 600;
        }
        /* BANNER */
        .banner {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            background: #f5f5f5;
        }

        .banner-slider {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            font-size: 48px;
            font-weight: bold;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: none;
            z-index: 1;
        }

        .banner-slide > div {
            position: relative;
            z-index: 2;
        }

        .banner-slide:nth-child(1) > div {
            display: none;
        }

        .banner-slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1200&h=500&fit=crop');
        }

        .banner-slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1200&h=500&fit=crop');
        }

        .banner-slide:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1200&h=500&fit=crop');
        }

        .banner-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: white;
        }

        /* DASHBOARD */
        .dashboard {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: titlePulse 2s ease-in-out infinite;
        }
        
        @keyframes titlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid rgba(102, 126, 234, 0.1);
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.4s;
            z-index: -1;
        }

        .product-card:hover {
            transform: translateY(-15px) rotate(2deg);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.3);
        }
        
        .product-card:hover::before {
            top: 0;
            right: 0;
            opacity: 0.1;
        }

        .product-image-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .product-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
            background-size: 400% 400%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            color: white;
            font-size: 14px;
            position: relative;
            animation: productGradient 6s ease infinite;
            overflow: hidden;
        }
        
        @keyframes productGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .product-image-text {
            background: rgba(0, 0, 0, 0.6);
            padding: 12px 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            text-align: center;
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .product-price {
            font-size: 24px;
            color: #667eea;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .product-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        .buy-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .buy-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
        }
        
        .buy-button:hover::before {
            left: 100%;
        }

        .buy-button:hover {
            background-position: 100% 0;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
            transform: translateY(-3px);
            animation: buttonPulse 0.6s;
        }

        @keyframes buttonPulse {
            0%, 100% { transform: translateY(-3px); }
            50% { transform: translateY(-8px); }
        }

        .order-toggle-btn {
            display: block;
            margin: 40px auto;
            padding: 18px 50px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #00a884 100%);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .order-toggle-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .order-toggle-btn:hover::after {
            width: 300px;
            height: 300px;
        }

        .order-toggle-btn:hover {
            background-position: 100% 0;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            transform: translateY(-3px) scale(1.05);
        }

        #agendamento {
            display: none;
        }

        #agendamento.show {
            display: block;
        }

        /* FORMULÁRIO WHATSAPP */
        .whatsapp-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            margin: 40px auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .whatsapp-section h2 {
            margin-bottom: 20px;
            color: #333;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
        }

        .whatsapp-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #00a884 100%);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
            position: relative;
        }

        .whatsapp-button:hover {
            background-position: 100% 0;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
            transform: translateY(-3px);
        }

        /* GALERIA */
        .gallery {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid rgba(102, 126, 234, 0.1);
        }

        .gallery-item:hover {
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        .gallery-image {
            width: 110%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.3);
            color: white;
            padding: 15px;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            margin: 0;
            font-size: 18px;
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #333 0%, #1a1a1a 50%, #0d0d0d 100%);
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 50px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        }

        .social-media {
            margin-top: 10px;
        }

        .social-media a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 18px;
            transition: color 0.3s;
        }

        .social-media a:hover {
            color: #f093fb;
            transform: scale(1.3);
            transition: all 0.3s ease;
        }

        @media (max-width: 1024px) {
            .header-container {
                padding: 0 10px;
                gap: 10px;
            }

            .store-name {
                font-size: 20px;
            }

            nav ul {
                gap: 20px;
            }

            nav a {
                font-size: 14px;
                padding: 6px 12px;
            }

            .banner {
                height: 400px;
            }

            .banner-slide {
                font-size: 36px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }

            .header-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
            }

            .logo-official {
                max-height: 60px;
                width: 80px;
            }

            .store-name {
                font-size: 18px;
            }

            nav {
                margin-left: 0;
                width: 100%;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            nav a {
                font-size: 14px;
                padding: 8px 12px;
            }

            .banner {
                height: 250px;
            }

            .banner-slide {
                font-size: 24px;
            }

            .products-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 20px;
                margin-bottom: 30px;
            }

            .product-image {
                height: 200px;
            }

            .product-image-img {
                height: 200px;
            }

            .product-name {
                font-size: 16px;
            }

            .product-price {
                font-size: 20px;
            }

            .product-description {
                font-size: 13px;
            }

            .buy-button {
                padding: 12px;
                font-size: 14px;
            }

            .section-title {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .gallery-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 15px;
            }

            .gallery-image {
                height: 300px;
            }

            .order-toggle-btn {
                padding: 15px 30px;
                font-size: 16px;
                margin: 30px auto;
            }

            .whatsapp-section {
                padding: 25px;
                margin: 30px 15px;
                max-width: 100%;
            }

            .whatsapp-section h2 {
                font-size: 20px;
            }

            .form-group label {
                font-size: 14px;
            }

            .form-group input {
                padding: 10px;
                font-size: 14px;
            }

            .whatsapp-button {
                padding: 12px;
                font-size: 16px;
            }

            .terms-container {
                padding: 20px;
            }

            .terms-container h2 {
                font-size: 22px;
            }

            .terms-content h3 {
                font-size: 16px;
            }

            .terms-content p {
                font-size: 14px;
            }

            #google_translate_element {
                width: 120px !important;
                height: 18px !important;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 10px 0;
            }

            .header-container {
                padding: 0 8px;
                gap: 8px;
            }

            .logo-official {
                max-height: 50px;
                width: 60px;
            }

            .store-name {
                font-size: 14px;
            }

            nav ul {
                gap: 5px;
            }

            nav a {
                font-size: 12px;
                padding: 5px 8px;
            }

            .banner {
                height: 180px;
            }

            .banner-slide {
                font-size: 18px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }

            .banner-dots {
                bottom: 10px;
                gap: 5px;
            }

            .dashboard {
                margin: 20px auto;
                padding: 0 10px;
            }

            .section-title {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .products-grid {
                gap: 15px;
                margin-bottom: 20px;
            }

            .product-card {
                border-radius: 10px;
            }

            .product-image {
                height: 150px;
            }

            .product-image-img {
                height: 150px;
            }

            .product-info {
                padding: 15px;
            }

            .product-name {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .product-price {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .product-description {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .buy-button {
                padding: 10px;
                font-size: 13px;
            }

            .gallery-grid {
                gap: 10px;
            }

            .gallery-image {
                height: 200px;
            }

            .gallery-overlay h3 {
                font-size: 14px;
            }

            .order-toggle-btn {
                padding: 12px 20px;
                font-size: 14px;
                margin: 20px 10px;
            }

            .whatsapp-section {
                padding: 20px;
                margin: 20px 10px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .whatsapp-section h2 {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .form-group {
                margin-bottom: 15px;
            }

            .form-group label {
                font-size: 12px;
                margin-bottom: 6px;
            }

            .form-group input {
                padding: 8px;
                font-size: 13px;
            }

            .whatsapp-button {
                padding: 10px;
                font-size: 14px;
            }

            .sidenav {
                width: 70%;
            }

            .sidenav a {
                padding: 8px 8px 8px 20px;
                font-size: 16px;
            }

            .sidenav .closebtn {
                font-size: 28px;
                right: 15px;
            }

            .terms-privacy {
                padding: 20px 10px;
                margin: 20px 0;
                height: auto;
            }

            .terms-container {
                padding: 15px;
                margin: 0 auto;
            }

            .terms-container h2 {
                font-size: 18px;
                margin-bottom: 20px;
            }

            .terms-content h3 {
                font-size: 14px;
                margin-top: 15px;
                margin-bottom: 10px;
            }

            .terms-content p {
                font-size: 12px;
                line-height: 1.6;
                margin-bottom: 10px;
            }

            .terms-content ul {
                margin-left: 15px;
                margin-bottom: 15px;
            }

            .terms-content li {
                font-size: 12px;
                margin-bottom: 8px;
            }

            footer {
                padding: 25px 15px;
                margin-top: 30px;
            }

            footer p {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .social-media {
                margin-top: 10px;
            }

            .social-media a {
                margin: 0 8px;
                font-size: 16px;
            }

            #google_translate_element {
                width: 100px !important;
                height: 16px !important;
            }

            .goog-te-gadget {
                font-size: 8px !important;
            }
        }

        @media (max-width: 360px) {
            .banner {
                height: 150px;
            }

            .banner-slide {
                font-size: 16px;
            }

            .section-title {
                font-size: 18px;
            }

            .product-image {
                height: 120px;
            }

            .gallery-image {
                height: 150px;
            }
        }
         #google_translate_element {
            width: 160px !important;
            height: 20px !important;
            border-radius: 20% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            overflow: hidden !important;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        }
        #google_translate_element .skiptranslate {
            width: 100% !important;
            height: 100% !important;
        }
        #google_translate_element .skiptranslate > div {
            width: 100% !important;
        }
        .goog-te-gadget {
            font-size: 10px !important;
        }
        .goog-te-gadget img {
            display: none !important;
        }

        
        * {
            box-sizing: border-box;
        }
        
        @keyframes rotateParceiros {
            0% {
                transform: rotateY(0deg);
            }
            100% {
                transform: rotateY(360deg);
            }
        }
        .parceiro-item:nth-child(3n+1) {
            animation: rotateParceiros 2s infinite;
        }
        .parceiro-item:nth-child(3n+2) {
            animation: rotateParceiros 2s infinite 0.67s;
        }
        .parceiro-item:nth-child(3n) {
            animation: rotateParceiros 2s infinite 1.33s;
        }

        /* RESPONSIVE DESIGN */
        /* Mobile First - Extra Small (xs) */
        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .store-name {
                font-size: 16px !important;
                margin: 10px 0;
            }
            
            .logo-official {
                width: 40px !important;
                height: 40px !important;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            nav li {
                width: 100%;
            }
            
            nav a {
                font-size: 14px;
                display: block;
                padding: 10px;
            }
            
            .banner-slide h1 {
                font-size: 18px !important;
            }
            
            .banner-slide p {
                font-size: 14px !important;
            }
            
            .section-title {
                font-size: 22px !important;
            }
            
            .products-grid {
                grid-template-columns: 1fr !important;
            }
            
            .product-card {
                margin: 10px 0;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr !important;
            }
            
            .parceiros-gallery {
                flex-direction: column;
                gap: 20px !important;
            }
            
            .parceiro-item {
                width: 120px !important;
                height: 120px !important;
            }
            
            .parceiro-logo {
                width: 90px !important;
                height: 90px !important;
            }
            
            #agendamento .form-group label {
                font-size: 14px;
            }
            
            button {
                min-width: 100%;
                font-size: 14px;
            }
        }

        /* Small devices (sm) */
        @media (min-width: 481px) and (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 10px;
            }
            
            .store-name {
                font-size: 18px !important;
                margin: 10px 0;
            }
            
            .logo-official {
                width: 50px !important;
                height: 50px !important;
            }
            
            nav ul {
                flex-direction: column;
                gap: 5px;
            }
            
            nav li {
                width: 100%;
            }
            
            nav a {
                font-size: 14px;
                padding: 8px 5px;
            }
            
            .banner-slide h1 {
                font-size: 24px !important;
            }
            
            .banner-slide p {
                font-size: 16px !important;
            }
            
            .section-title {
                font-size: 26px !important;
            }
            
            .products-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 15px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 15px;
            }
            
            .parceiros-gallery {
                gap: 20px !important;
            }
            
            .parceiro-item {
                width: 130px !important;
                height: 130px !important;
                border-width: 3px;
            }
            
            .parceiro-logo {
                width: 100px !important;
                height: 100px !important;
            }
            
            .payment-container {
                padding: 20px !important;
            }
            
            #agendamento .form-group {
                margin-bottom: 12px;
            }
        }

        /* Medium devices (md) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .parceiros-gallery {
                gap: 25px !important;
            }
        }

        /* Large devices (lg) and up */
        @media (min-width: 1025px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        /* Touch-friendly adjustments for small screens */
        @media (max-width: 768px) {
            button {
                padding: 12px 16px !important;
                min-height: 44px;
            }
            
            input, select, textarea {
                font-size: 16px !important;
                padding: 12px !important;
            }
            
            .form-group {
                margin-bottom: 15px !important;
            }
        }