@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

:root {
    --bg-dark: #181828;
    --bg-card: #23234a;
    --primary: #ff7a00;
    --secondary: #00e6c0;
    --accent: #7c3aed;
    --success: #39ff14;
    --text: #f3f3f3;
    --muted: #bdbdbd;
    --danger: #ff3b3b;
}

/* Patinhas flutuantes */
.floating-paw {
    position: fixed !important;
    font-size: 48px !important;
    color: rgba(255, 122, 0, 0.35) !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    opacity: 0.6 !important;
    animation: float 15s ease-in-out infinite !important;
    will-change: transform, opacity;
}

.floating-paw:nth-child(1) {
    animation: float1 20s ease-in-out infinite !important;
}

.floating-paw:nth-child(2) {
    animation: float2 18s ease-in-out infinite !important;
}

.floating-paw:nth-child(3) {
    animation: float3 22s ease-in-out infinite !important;
}

.floating-paw:nth-child(4) {
    animation: float4 16s ease-in-out infinite !important;
}

.floating-paw:nth-child(5) {
    animation: float5 24s ease-in-out infinite !important;
}

.floating-paw:nth-child(6) {
    animation: float6 19s ease-in-out infinite !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    20% {
        transform: translateY(-30px) translateX(10px) rotate(8deg) scale(1.1);
        opacity: 0.8;
    }
    40% {
        transform: translateY(-15px) translateX(-15px) rotate(-5deg) scale(0.9);
        opacity: 0.7;
    }
    60% {
        transform: translateY(-25px) translateX(20px) rotate(3deg) scale(1.05);
        opacity: 0.9;
    }
    80% {
        transform: translateY(-10px) translateX(-10px) rotate(-2deg) scale(0.95);
        opacity: 0.6;
    }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-40px) translateX(25px) rotate(12deg) scale(1.2); opacity: 0.9; }
    50% { transform: translateY(-20px) translateX(-30px) rotate(-8deg) scale(0.8); opacity: 0.7; }
    75% { transform: translateY(-35px) translateX(15px) rotate(5deg) scale(1.1); opacity: 0.8; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    30% { transform: translateY(-25px) translateX(-20px) rotate(-10deg) scale(0.9); opacity: 0.8; }
    60% { transform: translateY(-45px) translateX(30px) rotate(15deg) scale(1.3); opacity: 0.9; }
    90% { transform: translateY(-15px) translateX(-10px) rotate(-3deg) scale(0.85); opacity: 0.7; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    20% { transform: translateY(-30px) translateX(15px) rotate(8deg) scale(1.1); opacity: 0.8; }
    40% { transform: translateY(-10px) translateX(-25px) rotate(-12deg) scale(0.9); opacity: 0.6; }
    60% { transform: translateY(-40px) translateX(20px) rotate(10deg) scale(1.2); opacity: 0.9; }
    80% { transform: translateY(-20px) translateX(-15px) rotate(-5deg) scale(0.95); opacity: 0.7; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-35px) translateX(-20px) rotate(-8deg) scale(0.9); opacity: 0.8; }
    50% { transform: translateY(-15px) translateX(30px) rotate(12deg) scale(1.15); opacity: 0.9; }
    75% { transform: translateY(-30px) translateX(-10px) rotate(-3deg) scale(0.85); opacity: 0.7; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    20% { transform: translateY(-25px) translateX(20px) rotate(10deg) scale(1.1); opacity: 0.8; }
    40% { transform: translateY(-40px) translateX(-15px) rotate(-8deg) scale(0.9); opacity: 0.7; }
    60% { transform: translateY(-20px) translateX(25px) rotate(5deg) scale(1.05); opacity: 0.9; }
    80% { transform: translateY(-35px) translateX(-20px) rotate(-12deg) scale(0.95); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.6; }
    30% { transform: translateY(-30px) translateX(-25px) rotate(-10deg) scale(0.9); opacity: 0.8; }
    60% { transform: translateY(-20px) translateX(20px) rotate(8deg) scale(1.1); opacity: 0.9; }
    90% { transform: translateY(-40px) translateX(-15px) rotate(-5deg) scale(0.85); opacity: 0.7; }
}

/* Efeito de flutuação adicional para dispositivos móveis */
@media (max-width: 768px) {
    .floating-paw {
        animation-duration: 12s !important;
    }
    
    .floating-paw:nth-child(1) { animation-duration: 14s !important; }
    .floating-paw:nth-child(2) { animation-duration: 16s !important; }
    .floating-paw:nth-child(3) { animation-duration: 13s !important; }
    .floating-paw:nth-child(4) { animation-duration: 15s !important; }
    .floating-paw:nth-child(5) { animation-duration: 17s !important; }
    .floating-paw:nth-child(6) { animation-duration: 11s !important; }
}

/* Efeito de hover para interatividade */
.floating-paw:hover {
    animation-play-state: paused !important;
    transform: scale(1.2) !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

/* Garantir que as patinhas não interfiram com interações */
.floating-paw {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 15px;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--bg-card);
    padding: 0;
    box-shadow: 0 2px 8px #0002;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Centralização e responsividade da logomarca no header */
/* Ajuste: logomarca à esquerda, maior, com espaçamento para o menu */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    padding: 0;
    gap: 12px;
}

.logo img {
    max-height: 90px;
    max-width: 450px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 18px 0 0;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-link {
    color: var(--text);
    margin: 0 12px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.social-icons .social-icon {
    color: var(--accent);
    margin-left: 10px;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--primary);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0 32px 0;
    background: linear-gradient(120deg, var(--bg-card) 60%, var(--accent) 100%);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--muted);
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 32px auto 0 auto;
    width: fit-content;
}

.hero-buttons .btn {
    margin-right: 0;
}

.hero-image {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-image img {
    max-width: 320px;
    border-radius: 24px;
    box-shadow: 0 4px 32px #0005;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-secondary {
    background: var(--secondary);
    color: #181828;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.section-title {
    color: var(--accent);
    font-size: 1.6rem;
    margin-bottom: 24px;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px #0003;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    min-width: 220px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #0005;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.price {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 8px;
}

.products {
    padding: 48px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Cards de Produtos */
.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 16px #0003;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px #0005;
}

.product-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid var(--primary);
    transition: transform 0.2s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    color: var(--text);
    margin: 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-card p {
    color: var(--muted);
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
}

.product-rating {
    margin: 12px 0;
    color: var(--primary);
}

.product-rating .fa-star {
    font-size: 0.9rem;
    margin: 0 1px;
}

.product-rating .fa-star.filled {
    color: var(--primary);
}

.product-rating .fa-star:not(.filled) {
    color: #444;
}

.product-card .price {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 12px 0;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
}

/* Modal de Catálogo da Landing Page */
.catalog-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.catalog-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-btn {
    background: var(--bg-dark);
    color: var(--text);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 80px;
    text-align: center;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0;
}

/* Cards do Catálogo */
.catalog-product-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 12px #0003;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.catalog-product-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px #0005;
}

.catalog-product-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 2px solid var(--primary);
    transition: transform 0.2s;
}

.catalog-product-card:hover img {
    transform: scale(1.05);
}

.catalog-product-card h3 {
    color: var(--text);
    margin: 6px 0;
    font-size: 1rem;
    font-weight: 600;
}

.catalog-product-card p {
    color: var(--muted);
    margin: 6px 0;
    font-size: 0.85rem;
    line-height: 1.3;
    flex-grow: 1;
}

.catalog-product-card .price {
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 8px 0;
}

.catalog-product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.footer {
    background: var(--bg-card);
    color: var(--muted);
    padding: 32px 0 0 0;
    margin-top: 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-section h3, .footer-section h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid #222;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.modal-content {
    background: #23234aee; /* Fundo mais sólido, menos transparente */
    border-radius: 16px;
    padding: 24px 16px; /* Menor padding para modal mais compacto */
    min-width: 260px;
    max-width: 400px; /* Modal mais estreito */
    box-shadow: 0 8px 32px #000b;
    position: relative;
}

.modal-large {
    width: 900px;
    max-width: 98vw;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.close {
    font-size: 2rem;
    color: var(--danger);
    cursor: pointer;
}

.modal-form .form-group {
    margin-bottom: 16px;
}

.modal-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-weight: 600;
}

.modal-form input, .modal-form select, .modal-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #23234a;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 4px;
}

.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
    outline: 2px solid var(--primary);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.produto-modal-content {
    background: #23234a;
    border-radius: 20px;
    box-shadow: 0 8px 40px #000b, 0 1.5px 0 #ff7a00 inset;
    padding: 40px 32px 32px 32px;
    min-width: 380px;
    max-width: 90vw;
    max-height: 90vh;
    color: var(--text);
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalPop 0.25s cubic-bezier(.4,1.6,.6,1) 1;
    overflow-y: auto;
}

.produto-modal-content .close {
    position: absolute;
    top: 18px;
    right: 24px;
    color: var(--danger);
    font-size: 2.1rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s;
    z-index: 10;
}

.produto-modal-content .close:hover {
    color: #fff;
    opacity: 1;
}

.produto-modal-img-wrap {
    width: 280px;
    height: 280px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181828;
    border-radius: 20px;
    box-shadow: 0 4px 20px #0008;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.produto-modal-img-wrap:hover {
    transform: scale(1.02);
}

.produto-modal-img-wrap {
    position: relative;
}

.ampliar-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.produto-modal-img-wrap:hover .ampliar-indicator {
    opacity: 1;
}

/* Modal de imagem ampliada */
.imagem-ampliada-content {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 16px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.imagem-ampliada-wrap {
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.imagem-ampliada {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.imagem-ampliada-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
}

.produto-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--primary);
}

.produto-modal-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 3rem;
}

.produto-modal-nome {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.3;
}

.produto-modal-preco {
    color: var(--success);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(57, 255, 20, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.produto-modal-categoria {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 16px;
    background: rgba(255, 122, 0, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.produto-modal-desc {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.6;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVIDADE MELHORADA */
/* Desktop grande */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
}

/* Desktop médio */
@media (min-width: 901px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Tablet */
@media (min-width: 701px) and (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
    }
    
    .service-card {
        min-width: 200px;
        padding: 24px 16px;
    }
}

/* Mobile grande */
@media (min-width: 481px) and (max-width: 700px) {
    .container {
        padding: 0 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .service-card {
        min-width: 100%;
        padding: 20px 16px;
    }
    
    .services-grid {
        gap: 16px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 12px;
    }
    
    .service-card {
        min-width: 100%;
        padding: 16px 12px;
    }
    
    .services-grid {
        gap: 12px;
    }
    
    .product-card {
        padding: 16px 12px;
    }
    
    .product-card img {
        width: 100px;
        height: 100px;
    }
    
    .modal-content {
        min-width: 95vw;
        padding: 20px 16px;
    }
    
    .produto-modal-content {
        min-width: 95vw;
        padding: 24px 16px;
        max-width: 95vw;
    }
    
    .produto-modal-img-wrap {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .produto-modal-nome {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .produto-modal-preco {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
    
    .produto-modal-categoria {
        font-size: 1rem;
        padding: 4px 8px;
    }
    
    .produto-modal-desc {
        font-size: 1rem;
        padding: 12px;
        max-width: 100%;
    }
    
    /* Modal de imagem ampliada responsivo */
    .imagem-ampliada-content {
        padding: 16px;
        max-width: 95vw;
    }
    
    .imagem-ampliada-wrap {
        max-height: 60vh;
    }
    
    .imagem-ampliada-title {
        font-size: 1rem;
    }
}

/* Menu mobile */
@media (max-width: 700px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        gap: 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .logo img {
        height: 36px;
        width: auto;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        margin: 0;
        white-space: nowrap;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--primary);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.2s;
        min-width: 44px;
        min-height: 44px;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-toggle:hover,
    .menu-toggle:focus {
        background: rgba(255, 122, 0, 0.1);
        transform: scale(1.05);
    }
    
    .menu-toggle:active {
        transform: scale(0.95);
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-radius: 0 0 16px 16px;
        z-index: 999;
        padding: 16px 0;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav.open {
        display: flex;
    }
    
    .nav-link {
        margin: 0;
        padding: 16px 24px;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 122, 0, 0.1);
        color: var(--primary);
        outline: none;
    }
}

@media (min-width: 701px) {
    .menu-toggle {
        display: none;
    }
    
    .nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        border-radius: 0;
        width: auto;
        padding: 0;
    }
    
    .nav-link {
        margin: 0 16px;
        padding: 8px 12px;
        font-size: 1rem;
        border-radius: 6px;
        transition: all 0.2s;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 122, 0, 0.1);
        transform: translateY(-2px);
        outline: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer responsivo */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
    }
}

/* Responsividade do Modal de Catálogo */
@media (max-width: 768px) {
    .catalog-content {
        max-height: 80vh;
        gap: 16px;
    }
    
    .catalog-categories {
        gap: 8px;
        padding: 12px 0;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .catalog-product-card {
        padding: 16px 12px;
    }
    
    .catalog-product-card img {
        width: 80px;
        height: 80px;
    }
    
    .catalog-product-card h3 {
        font-size: 0.9rem;
    }
    
    .catalog-product-card p {
        font-size: 0.8rem;
    }
    
    .catalog-product-card .price {
        font-size: 1rem;
    }
    
    .catalog-product-card .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .catalog-categories {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .catalog-product-card {
        max-width: 100%;
        padding: 12px 8px;
    }
    
    .catalog-product-card img {
        width: 70px;
        height: 70px;
    }
    
    .modal-large {
        width: 95vw;
        max-width: 95vw;
    }
}

/* Animações */
.btn, .service-card, .modal-content {
    transition: all 0.2s;
}

.loading {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 6px solid #23234a;
    border-top: 6px solid var(--primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--bg-card);
    color: var(--text);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 16px #0005;
    z-index: 3000;
    font-size: 1rem;
    margin-bottom: 8px;
}

.notification.info { border-left: 6px solid var(--primary); }
.notification.success { border-left: 6px solid var(--success); }
.notification.error { border-left: 6px solid var(--danger); } 

@keyframes blink {
    0%, 100% { filter: brightness(1); box-shadow: 0 0 0 #ff7a00; }
    50% { filter: brightness(1.5); box-shadow: 0 0 16px #ff7a00; }
}

.btn-primary.blink {
    animation: blink 1s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #25d366;
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 24px 8px #25d36655;
        filter: brightness(1.3);
    }
}

.whatsapp-float-btn {
    animation: pulse-whatsapp 1.2s infinite;
}

@media (max-width: 700px) {
    .logo img {
        max-height: 105px;
        max-width: 240px;
        margin-right: 10px;
    }
} 