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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    padding: 0;
    background: rgba(13, 17, 23, 0.96);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.brand-mark {
    height: 62px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px rgba(0, 168, 232, 0.35));
    display: block;
}

.nav-logo:hover {
    color: #00A8E8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 1.5px;
    background: #00A8E8;
    border-radius: 2px;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: white;
    background: none;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: #00A8E8;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.nav-loja {
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 168, 232, 0.35);
    border-radius: 20px;
    padding: 6px 16px;
    min-height: 38px;
    margin: 0 4px;
    transition: all 0.25s ease;
}

.nav-link.nav-loja:hover {
    color: #00A8E8;
    border-color: #00A8E8;
    background: rgba(0, 168, 232, 0.08);
}

.nav-link.nav-loja::after {
    display: none;
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, #00A8E8, #0077b6);
    color: white;
    margin-left: 6px;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
    transition: all 0.25s ease;
}

.nav-link.nav-cta:hover {
    background: linear-gradient(135deg, #00bfff, #00A8E8);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.5);
    transform: translateY(-1px);
    color: white;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
    --hero-parallax-offset: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 168, 232, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    pointer-events: none;
    transform: translate3d(0, var(--hero-parallax-offset), 0);
    will-change: transform;
    backface-visibility: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 4rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.hero-logo {
    width: min(340px, 72vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 36px rgba(0, 168, 232, 0.32));
    animation: float 3.2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-feature {
    background: rgba(0, 168, 232, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 168, 232, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-feature svg {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #00A8E8;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
    background: #0086b8;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00A8E8;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Sobre */
.content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: opacity, transform;
}

.service-card.fade-in-visible {
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.15), rgba(0, 168, 232, 0.05));
    color: #00A8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Diferenciais */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #00A8E8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: opacity, transform;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin: 0 auto 15px;
    color: #00A8E8;
    background: rgba(0, 168, 232, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Processo */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: opacity, transform;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #00A8E8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 2rem;
    color: #00A8E8;
    font-weight: bold;
}

/* Contato */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #00A8E8;
}

.contact-info p {
    font-size: 1.1rem;
}

.contact-info a {
    color: #00A8E8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0086b8;
}

.contact-info a.whatsapp-link {
    color: #25D366;
}

.contact-info a.whatsapp-link:hover {
    color: #128C7E;
}

.business-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #555;
}

.trust-message {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #00A8E8 0%, #0086b8 100%);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 8px;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A8E8;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.contact-info-container {
    padding: 20px 0;
}

.contact-info-container h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.contact-info {
    background: transparent;
    padding: 0;
    border-left: none;
    border-radius: 0;
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A8E8;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 3px;
}

.contact-item a,
.contact-item span {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #00A8E8;
}

.contact-item a.whatsapp-link {
    color: #25D366;
}

.contact-item a.whatsapp-link:hover {
    color: #128C7E;
}

.trust-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 168, 232, 0.15);
    color: #00A8E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #00A8E8;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-mark {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

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

.footer-links a:hover {
    color: #00A8E8;
}

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

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

.footer-author {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Testimonials */
/* Store Preview */
.section-store-preview {
    background: linear-gradient(160deg, rgba(236, 244, 252, 0.98) 0%, rgba(223, 236, 247, 0.97) 55%, rgba(214, 231, 244, 0.96) 100%);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    position: relative;
    overflow: hidden;
}

.section-store-preview::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(0,168,232,0.10) 0%, rgba(0,168,232,0.05) 38%, transparent 72%);
    pointer-events: none;
}

.store-preview-header {
    text-align: center;
    margin-bottom: 56px;
}

.store-preview-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00A8E8;
    background: rgba(0,168,232,0.1);
    border: 1px solid rgba(0,168,232,0.25);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 18px;
}

.section-subtitle {
    text-align: center;
    color: rgba(27, 42, 57, 0.74);
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.store-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 52px;
}

.store-preview-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(27, 42, 57, 0.55);
    padding: 60px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.store-preview-card {
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 168, 232, 0.12);
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.store-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(10, 35, 55, 0.14), 0 0 0 1px rgba(0,168,232,0.18);
    border-color: rgba(0,168,232,0.22);
}

.store-preview-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, rgba(0,168,232,0.14), rgba(255,255,255,0.82));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,168,232,0.55);
    position: relative;
    overflow: hidden;
}

.store-preview-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.58) 0%, transparent 55%);
    pointer-events: none;
}

.store-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 12px;
    transition: transform 0.5s ease;
}

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

.store-preview-info {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-preview-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #13263a;
    letter-spacing: 0.01em;
}

.store-preview-desc {
    font-size: 0.83rem;
    color: rgba(19, 38, 58, 0.78);
    flex: 1;
    line-height: 1.5;
}

.store-preview-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #008ecb;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

.store-preview-cta {
    text-align: center;
    margin-top: 4px;
}

.btn-store-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(0, 168, 232, 0.55);
    color: #0f2f49;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-store-cta svg {
    transition: transform 0.3s ease;
}

.btn-store-cta:hover {
    background: rgba(0, 168, 232, 0.18);
    border-color: #00A8E8;
    color: #06243a;
    box-shadow: 0 10px 26px rgba(0, 122, 178, 0.24);
}

.btn-store-cta:hover svg {
    transform: translateX(4px);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: opacity, transform;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #00A8E8;
}

.faq-icon {
    font-size: 1.5rem;
    color: #00A8E8;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: #666;
    line-height: 1.7;
}

/* Floating Store Button */
.store-float {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #00A8E8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 168, 232, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.store-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 168, 232, 0.5);
}

.store-float:hover .store-tooltip {
    opacity: 1;
    transform: translateX(-10px);
    visibility: visible;
}

.store-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.store-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-10px);
    visibility: visible;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

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

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

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 12px 15px;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 10px;
    }

    .section {
        padding: 60px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .content p {
        text-align: left;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .store-preview-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .store-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .store-tooltip {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Responsivo - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.theme-toggle svg {
    display: block;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.theme-icon-dark {
    display: none;
}

body.dark-mode .theme-icon-light {
    display: none;
}

body.dark-mode .theme-icon-dark {
    display: inline;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.dark-mode .section {
    background: #1a1a1a;
}

body.dark-mode .section.section-store-preview {
    background: linear-gradient(160deg, #121821 0%, #14293a 55%, #17344a 100%);
}

body.dark-mode .section.section-store-preview::before {
    background: radial-gradient(ellipse, rgba(0,168,232,0.20) 0%, rgba(0,168,232,0.08) 38%, transparent 72%);
}

body.dark-mode .section.section-store-preview .section-title {
    color: #f2f8ff;
}

body.dark-mode .section.section-store-preview .section-subtitle,
body.dark-mode .section.section-store-preview .store-preview-loading {
    color: rgba(223, 236, 248, 0.82);
}

body.dark-mode .section.section-store-preview .store-preview-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 168, 232, 0.22);
}

body.dark-mode .section.section-store-preview .btn-store-cta {
    background: rgba(255, 255, 255, 0.88);
    color: #0b2a41;
    border-color: rgba(0, 168, 232, 0.6);
}

body.dark-mode .section.section-store-preview .btn-store-cta:hover {
    background: rgba(0, 168, 232, 0.22);
    color: #e8f6ff;
}

body.dark-mode .section-alt {
    background: #242424;
}

body.dark-mode .section-title {
    color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .benefit-card,
body.dark-mode .testimonial-card,
body.dark-mode .process-step,
body.dark-mode .faq-item,
body.dark-mode .contact-form-container {
    background: #2d2d2d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-card h3,
body.dark-mode .benefit-card h3,
body.dark-mode .process-step h3,
body.dark-mode .faq-question,
body.dark-mode .contact-form-container h3 {
    color: #e0e0e0;
}

body.dark-mode .service-card p,
body.dark-mode .benefit-card p,
body.dark-mode .process-step p,
body.dark-mode .testimonial-text,
body.dark-mode .faq-answer p {
    color: #aaa;
}

body.dark-mode .content p {
    color: #ccc;
}

body.dark-mode .contact-info {
    background: transparent;
}

body.dark-mode .contact-icon {
    background: #3d3d3d;
}

body.dark-mode .contact-item strong {
    color: #e0e0e0;
}

body.dark-mode .contact-item span {
    color: #aaa;
}

body.dark-mode .trust-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

body.dark-mode .trust-box p {
    color: #ccc;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #3d3d3d;
    border-color: #4d4d4d;
    color: #e0e0e0;
}

body.dark-mode .form-group label {
    color: #e0e0e0;
}

body.dark-mode .form-subtitle {
    color: #aaa;
}

/* Typewriter Effect */
.typewriter-cursor {
    animation: blink 1s infinite;
    color: #00A8E8;
    font-weight: 100;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Brands Section */
.brands-section {
    background: #f8f9fa;
    padding: 40px 20px;
}

body.dark-mode .brands-section {
    background: #242424;
}

.brands-title {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

body.dark-mode .brands-title {
    color: #888;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-item {
    padding: 12px 25px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-mode .brand-item {
    background: #2d2d2d;
    color: #aaa;
}

.brand-item:hover {
    transform: scale(1.05);
    color: #00A8E8;
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.2);
}

/* Price Calculator */
.calculator-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

body.dark-mode .calculator-subtitle {
    color: #aaa;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calc-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

body.dark-mode .calc-group label {
    color: #e0e0e0;
}

.calc-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calc-option {
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

body.dark-mode .calc-option {
    background: #3d3d3d;
    border-color: #4d4d4d;
    color: #e0e0e0;
}

.calc-option:hover {
    border-color: #00A8E8;
    background: rgba(0, 168, 232, 0.1);
}

.calc-option.selected {
    border-color: #00A8E8;
    background: #00A8E8;
    color: white;
}

.calc-option:disabled,
.calc-option.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calc-option:disabled:hover,
.calc-option.is-disabled:hover {
    border-color: #e0e0e0;
    background: #f5f5f5;
}

body.dark-mode .calc-option:disabled:hover,
body.dark-mode .calc-option.is-disabled:hover {
    border-color: #4d4d4d;
    background: #3d3d3d;
}

.calc-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 20px;
}

body.dark-mode .result-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

.result-label {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

body.dark-mode .result-label {
    color: #aaa;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00A8E8;
    margin-bottom: 15px;
}

.result-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.result-cta {
    display: block;
    text-align: center;
    background: #00A8E8;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.result-cta:hover {
    background: #0086b8;
    transform: translateY(-2px);
}

/* Store */
.store-toolbar {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 12px;
    margin-bottom: 24px;
}

.store-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    color: #2c3e50;
}

.store-input:focus {
    outline: none;
    border-color: #00A8E8;
}

.store-admin-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    background: #00A8E8;
    color: white;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.store-admin-btn:hover {
    background: #0086b8;
}

.store-admin-btn-secondary {
    background: #e9ecef;
    color: #2c3e50;
}

.store-admin-btn-secondary:hover {
    background: #d9dfe4;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.store-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.store-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.store-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    background: #f5f7f9;
}

.store-card-content {
    padding: 16px;
}

.store-card-category {
    color: #00A8E8;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.store-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 6px;
}

.store-card-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    min-height: 40px;
}

.store-card-price {
    color: #00A8E8;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.store-price-old {
    color: #888;
    font-size: 0.95rem;
    text-decoration: line-through;
    margin-right: 6px;
}

.store-price-new {
    color: #e74c3c;
}

.store-card-stock {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.store-buy-btn {
    width: 100%;
    border: none;
    border-radius: 9px;
    padding: 10px 12px;
    background: #00A8E8;
    color: white;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

.store-buy-btn:hover {
    background: #0086b8;
}

.store-sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 5px 10px;
}

.store-empty {
    text-align: center;
    color: #777;
    margin-top: 14px;
}

.store-admin-panel {
    margin-top: 28px;
    border: 2px solid #dce4ea;
    border-radius: 14px;
    padding: 18px;
    background: #f9fbfd;
}

.store-admin-panel h3 {
    color: #2c3e50;
    margin-bottom: 6px;
}

.store-admin-note {
    color: #666;
    margin-bottom: 14px;
}

.store-login-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.store-product-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.store-form-flags {
    display: flex;
    gap: 16px;
    color: #444;
}

.store-form-actions {
    display: flex;
    gap: 10px;
}

.store-admin-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    background: white;
    border: 1px solid #e2e8ef;
}

.store-admin-item p {
    color: #666;
    font-size: 0.88rem;
}

.store-admin-item-actions {
    display: flex;
    gap: 8px;
}

.store-mini-btn {
    border: 1px solid #ccd7e0;
    border-radius: 8px;
    background: white;
    color: #2c3e50;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 0.84rem;
    font-family: inherit;
}

.store-mini-btn:hover {
    border-color: #00A8E8;
}

.store-mini-btn-danger {
    border-color: #f1b0b0;
    color: #b70000;
}

body.dark-mode .store-input,
body.dark-mode .store-admin-item,
body.dark-mode .store-card,
body.dark-mode .store-admin-panel,
body.dark-mode .store-card-image-placeholder,
body.dark-mode .store-mini-btn {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: #4a4a4a;
}

body.dark-mode .store-admin-btn-secondary {
    background: #3b3b3b;
    color: #e0e0e0;
}

body.dark-mode .store-card-description,
body.dark-mode .store-card-stock,
body.dark-mode .store-admin-note,
body.dark-mode .store-empty,
body.dark-mode .store-admin-item p,
body.dark-mode .store-form-flags {
    color: #b5b5b5;
}

body.dark-mode .store-card h3,
body.dark-mode .store-admin-panel h3 {
    color: #f0f0f0;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.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: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00A8E8;
    transform: translateY(-3px);
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

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

.location-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.14), rgba(0, 168, 232, 0.06));
    color: #00A8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

body.dark-mode .location-info h3 {
    color: #e0e0e0;
}

.location-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

body.dark-mode .location-info > p {
    color: #aaa;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.location-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.dark-mode .location-feature {
    background: #2d2d2d;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00A8E8;
}

.benefit-icon svg,
.service-icon svg,
.contact-icon svg,
.trust-icon svg,
.location-icon svg,
.feature-icon svg,
.calc-option-icon svg {
    display: block;
}

.location-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #00A8E8;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept {
    background: #00A8E8;
    color: white;
}

.cookie-accept:hover {
    background: #0086b8;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Dark mode for calculator result CTA */
body.dark-mode .result-cta {
    background: #00A8E8;
    color: white;
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .theme-toggle {
        margin-right: 10px;
        padding: 6px 10px;
    }

    .brands-grid {
        gap: 20px;
    }

    .brand-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calc-option {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .store-toolbar {
        grid-template-columns: 1fr;
    }

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

    .store-form-grid {
        grid-template-columns: 1fr;
    }

    .store-login-form,
    .store-form-actions,
    .store-form-flags,
    .store-admin-item,
    .store-admin-item-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .store-admin-item-actions {
        width: 100%;
    }

    .result-value {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .location-map iframe {
        height: 250px;
    }
}

/* Performance - Reduce motion para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero::before,
    .hero .container {
        transform: none !important;
        will-change: auto;
    }
}
